/* =============================================================
   DJ VAIDE — CONTACT
   Token system (shared with home page)
   ============================================================= */
:root{
  --c-bg-deep:      #0a0e1a;   /* near-black navy base */
  --c-bg-panel:     #141b30;   /* hero panel navy */
  --c-bg-light:     #f5f4f0;   /* off-white panel */
  --c-accent-fire:  #ff5a36;   /* graffiti orange-red */
  --c-accent-gold:  #ffb340;   /* graffiti gold */
  --c-accent-mint:  #36f2b0;   /* electric mint/green */
  --c-accent-cyan:  #2fd9ff;   /* cyan glow */
  --c-accent-green: #00ff12;   /* brand bright green */
  --c-ink:          #f5f4f0;   /* light text on dark */
  --c-ink-dim:      #aab2c8;   /* muted text on dark */
  --c-ink-dark:     #14181f;   /* dark text on light */
  --c-ink-mid:      #3a3f47;   /* secondary text on light */

  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font-body: "Space Grotesk", system-ui, sans-serif;

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --radius-pill: 999px;

  --container: 1280px;
  --gap-section: 28px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

body{
  margin: 0;
  background: var(--c-bg-deep);
  color: var(--c-ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img{ max-width: 100%; display: block; }

/* =============================================================
   NAVIGATION
   ============================================================= */
.nav{
  background: var(--c-bg-deep);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav__inner{
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
}
.nav__logo-img{
  height: 56px;
  width: auto;
  transition: transform .35s ease, filter .35s ease;
}
.nav__logo:hover .nav__logo-img{
  transform: rotate(-6deg) scale(1.06);
  filter: drop-shadow(0 0 12px var(--c-accent-mint));
}
.nav__links{
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__icon-link{ display: block; }
.nav__icon{
  height: 64px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.92;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), opacity .3s ease, filter .3s ease;
}
.nav__icon-link:hover .nav__icon{
  transform: translateY(-4px) scale(1.08);
  opacity: 1;
  filter: brightness(0) invert(1) drop-shadow(0 4px 12px var(--c-accent-cyan));
}

/* =============================================================
   SHARED SECTION SHELL — rounded corners + reveal animation
   ============================================================= */
.section{
  max-width: var(--container);
  margin: var(--gap-section) auto;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

/* Reveal-on-scroll: fade + slide up */
.reveal{
  opacity: 0;
  transform: translateY(48px);
  transition: opacity .9s cubic-bezier(.22,.61,.36,1), transform .9s cubic-bezier(.22,.61,.36,1);
  will-change: opacity, transform;
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}
.nav.reveal{ transform: translateY(-24px); }
.nav.reveal.is-visible{ transform: translateY(0); }

@media (prefers-reduced-motion: reduce){
  .reveal{ opacity: 1; transform: none; transition: none; }
  *{ animation: none !important; transition: none !important; }
}

/* =============================================================
   CONTACT SECTION
   ============================================================= */
.section--contact{
  background: var(--c-bg-light);
  color: var(--c-ink-dark);
  padding: 64px 56px;
}
.contact__grid{
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.contact__title{
  font-family: "Archivo", sans-serif;
  font-size: 60px;
  text-transform: uppercase;
  color: #029e09;
  margin: 0 0 28px;
}

.contact__block{
  margin-bottom: 32px;
}
.contact__heading{
  font-family: "Akt", sans-serif;
  font-size: clamp(24px, 2.8vw, 32px);
  color: #04b208;
  margin: 0 0 10px;
  text-shadow: 0 0 1px rgba(0,0,0,0.15);
}
.contact__text{
  font-size: 18px;
  line-height: 1.65;
  color: var(--c-ink-mid);
  margin: 0;
  font-family: "Poppins Light", sans-serif;
}
.contact__link{
  color: var(--c-ink-mid);
  text-decoration: none;
  transition: color .25s ease;
}
.contact__link:hover{
  color: var(--c-accent-fire);
}

/* =============================================================
   CONTACT FORM
   ============================================================= */
.contact__form{
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.contact__input,
.contact__textarea{
  width: 100%;
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--c-ink-dark);
  background: #fff;
  border: 1.5px solid #d8d6cf;
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  outline: none;
  transition: border-color .25s ease, box-shadow .25s ease, transform .15s ease;
}
.contact__input::placeholder,
.contact__textarea::placeholder{
  color: #9a9d9f;
}
.contact__textarea{
  min-height: 220px;
  resize: vertical;
  line-height: 1.6;
}
.contact__input:focus,
.contact__textarea:focus{
  border-color: var(--c-accent-mint);
  box-shadow: 0 0 0 4px rgba(54,242,176,0.18);
}
.contact__input:hover,
.contact__textarea:hover{
  border-color: #b9b6ac;
}

.contact__submit{
  align-self: flex-start;
  background: linear-gradient(100deg, var(--c-accent-mint) 0%, var(--c-accent-cyan) 100%);
  color: var(--c-ink-dark);
  box-shadow: 0 8px 24px rgba(54,242,176,0.3);
}
.contact__submit:hover{
  box-shadow: 0 12px 32px rgba(47,217,255,0.45);
}

/* =============================================================
   BUTTONS (shared)
   ============================================================= */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-family: "Archivo Expanded SemiBold", sans-serif;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 18px 38px;
  font-size: 15px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .3s ease;
  width: fit-content;
}
.btn::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.35) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .6s ease;
}
.btn:hover::after{ transform: translateX(120%); }
.btn:hover{
  transform: translateY(-3px) scale(1.02);
}
.btn:active{ transform: translateY(0) scale(0.98); }

.btn--primary{
  background: linear-gradient(100deg, var(--c-accent-fire) 0%, #ff7a3d 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(255,90,54,0.35);
}
.btn--primary:hover{
  box-shadow: 0 12px 32px rgba(255,90,54,0.5);
}

/* If using a custom PNG button, drop the img inside .btn and hide the label:
   .btn img { display:block; height: 56px; }
   .btn__label { display:none; }                                     */

/* =============================================================
   FOOTER
   ============================================================= */
.footer{
  max-width: var(--container);
  margin: var(--gap-section) auto 40px;
  text-align: center;
  padding: 48px 24px;
}
.footer__follow{
  font-family: "Archivo Expanded ExtraBold", sans-serif;
  font-size: 18px;
  color: #00ff12;
  margin: 0 0 24px;
}
.footer__socials{
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-bottom: 28px;
}
.footer__social-link{ display: block; }
.footer__social-icon{
  width: 56px;
  height: 56px;
  border-radius: 50%;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s ease;
}
.footer__social-link:hover .footer__social-icon{
  transform: translateY(-6px) rotate(8deg);
  box-shadow: 0 8px 22px rgba(54,242,176,0.45);
}
.footer__copyright{
  font-size: 13px;
  color: var(--c-ink-dim);
  margin: 0;
  font-family: "Poppins Light", sans-serif;
}

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 900px){
  .contact__grid{
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .nav__inner{ flex-direction: column; gap: 14px; padding: 16px; }
  .nav__links{ gap: 18px; flex-wrap: wrap; justify-content: center; }
  .nav__icon{ height: 46px; }
}

@media (max-width: 520px){
  .section--contact{ padding: 40px 22px; }
  .contact__title{ font-size: 38px; }
  .contact__heading{ font-size: 24px; }
  .contact__text{ font-size: 16px; }
  .footer__social-icon{ width: 46px; height: 46px; }
}
