/* ========= Golden Social — Modern Black Theme ========= */
:root {
  --bg: #0b0b0b;
  --ink: #ffffff;
  --muted: #b7b7b7;
  --lime: #B9F463;
  --lime2: #8FD84A;
  --ring: rgba(185,244,99,.35);
  --radius: 22px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Stickers background (global) */
.stickers-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(60vw 60vw at 20% 10%, rgba(185,244,99,.09), transparent 60%),
    radial-gradient(50vw 50vw at 80% 90%, rgba(185,244,99,.06), transparent 60%),
    url('../assets/stickers.PNG') center/cover repeat;
  opacity: .3;
  animation: bg-drift 40s linear infinite;
}
@keyframes bg-drift {
  0% { background-position: 0 0, 0 0, 0 0; }
  50% { background-position: 10vw 2vh, -6vw -4vh, 0 -120px; }
  100% { background-position: 0 0, 0 0, 0 0; }
}

/* ========== HEADER ========== */
.site-header {
  position: fixed;
  top: 0; left: 0; width: 100%;
  height: 70px;
  background: rgba(0,0,0,.4);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 20px;
  z-index: 100;
}

/* Brand (unused text brand kept for flexibility) */
.brand {
  display: flex; align-items: center; gap: 10px;
  color: var(--ink); font-weight: 900; text-decoration: none;
  font-family: 'Poppins', sans-serif;
}
.brand-dot {
  width: 14px; height: 14px; border-radius: 50%;
  background: linear-gradient(135deg, var(--lime), var(--lime2));
  box-shadow: 0 0 0 4px rgba(185,244,99,.2);
}

/* Navbar image logo (left) */
.nav-logo {
  display: flex;
  align-items: center;
  height: 100%;
  text-decoration: none;
  position: relative;
  z-index: 200; /* ensures it stays above everything */
}

.nav-logo img {
  height: 200px; width: auto; object-fit: contain;
  transition: transform .3s ease, filter .3s ease, height .3s ease;
}
.nav-logo img:hover { transform: scale(1.05); filter: brightness(1.2); }
.site-header.scrolled .nav-logo img { height: 45px; opacity: .9; }

/* Hamburger */
.hamburger {
  width: 44px; height: 44px; border: none; background: transparent;
  display: flex; flex-direction: column; justify-content: center; cursor: pointer; z-index: 101;
}
.hamburger span {
  height: 2px; width: 24px; background: #fff; margin: 4px auto; transition: all .3s ease;
}
.hamburger.active span:nth-child(1){ transform: translateY(6px) rotate(45deg); }
.hamburger.active span:nth-child(2){ opacity: 0; }
.hamburger.active span:nth-child(3){ transform: translateY(-6px) rotate(-45deg); }

/* Menu (mobile overlay) */
.menu {
  position: fixed; top: 70px; left: 0; width: 100%; height: 100vh;
  background: rgba(0,0,0,.95);
  transform: translateY(-100%); transition: transform .3s ease;
  display: grid; place-items: center; z-index: 99;
}
.menu.open { transform: translateY(0); }
.menu ul { list-style: none; display: grid; gap: 20px; text-align: center; }
.menu a {
  color: var(--ink); text-decoration: none; font-size: 1.4rem; font-weight: 700;
  border: 1px solid rgba(255,255,255,.1); border-radius: 999px; padding: 10px 18px; transition: .3s;
}
.menu a:hover { border-color: var(--lime); color: var(--lime); }

/* ========== SECTION BASE ========== */
.section {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: flex-start;
  position: relative; padding: 0 10%; overflow: hidden; background-color: var(--bg);
}

/* ========== HERO ========== */
.hero { position: relative; 
padding-top: 100px;}
.hero-inner {
  position: relative; z-index: 4; max-width: 700px; text-align: left;
}
.hero-title {
  font-family: 'Poppins', sans-serif; font-weight: 900;
  font-size: clamp(4.5rem, 9vw, 11rem); line-height: .95;
  margin: 0 0 24px; text-transform: uppercase; color: #fff;
}
.hero-title .lime { color: var(--lime); }

/* Louder per-word animation */
.hero-title .word {
  display: inline-block; transform: translateY(150%); opacity: 0;
  animation: slamUp .8s cubic-bezier(.2,.9,.3,1.3) forwards;
}
.hero-title .word:nth-child(1){ animation-delay: 0s; }
.hero-title .word:nth-child(2){ animation-delay: .3s; }
.hero-title .word:nth-child(3){ animation-delay: .6s; }
@keyframes slamUp {
  0% { transform: translateY(150%) scale(.9); opacity: 0; }
  70%{ transform: translateY(-10%) scale(1.1); opacity: 1; }
  100%{ transform: translateY(0) scale(1); opacity: 1; }
}

.hero-sub {
  max-width: 500px; color: #d9dfd2; font-size: 1.3rem; line-height: 1.5; margin-bottom: 20px;
}
.hero-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  border: 1px solid rgba(255,255,255,.15); border-radius: 999px; padding: 8px 14px;
  font-weight: 600; color: #dfe6d6;
}

/* Background image element inside hero (parallax via JS) */
.hero-bg-img{
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center; z-index: 0; opacity: .28; filter: brightness(.9); pointer-events: none;
}

/* Stacked collage */
.hero-collage { position: absolute; inset: 0; z-index: 3; overflow: hidden; }
.collage-img {
  position: absolute; width: 280px; height: auto; opacity: 0;
  transform: translateY(40px) scale(.9); animation: stackUp .7s ease-out forwards;
  filter: drop-shadow(0 10px 25px rgba(0,0,0,.4));
}
@keyframes stackUp {
  0% { opacity: 0; transform: translateY(40px) scale(.9); }
  100%{ opacity: 1; transform: translateY(0) scale(1); }
}
/* Example scattered positions (you already set these in HTML) */
.i1{ top:10%; left:60%; animation-delay:.3s }
.i2{ top:25%; left:45%; animation-delay:.5s }
.i3{ top:40%; left:70%; animation-delay:.7s }
.i4{ top:55%; left:52%; animation-delay:.9s }
.i5{ top:65%; left:62%; animation-delay:1.1s }
.i6{ top:30%; left:80%; animation-delay:1.3s }
.i7{ top:75%; left:55%; animation-delay:1.5s }
.i8{ top:50%; left:40%; animation-delay:1.7s }
.i9{ top:15%; left:75%; animation-delay:1.9s }
.i10{ top:60%; left:70%; animation-delay:2.1s }
.i11{ top:45%; left:50%; animation-delay:2.3s }

/* Hero glowing line */
.hero-line {
  position: absolute; top: 80%; left: 0; width: 100%; height: 120px; overflow: hidden; z-index: 2;
}
.hero-line::before{
  content:''; position:absolute; left:-20%; width:140%; height:100%;
  background: radial-gradient(circle at 50% 50%, var(--lime), transparent 60%);
  opacity:.5; filter: blur(10px); animation: waveMove 6s ease-in-out infinite;
}
.hero-line::after{
  content:''; position:absolute; top:50%; left:-20%; width:140%; height:8px;
  background: linear-gradient(90deg, transparent, var(--lime), var(--lime2), transparent);
  border-radius: 50%; filter: blur(2px) brightness(1.2); animation: curveMotion 5s ease-in-out infinite;
}
@keyframes waveMove {
  0% { transform: translateX(-10%) scaleY(1); opacity: .6; }
  50%{ transform: translateX(10%) scaleY(1.1); opacity: 1; }
  100%{ transform: translateX(-10%) scaleY(1); opacity: .6; }
}
@keyframes curveMotion {
  0% { transform: translateX(-10%) translateY(0) rotate(0deg); }
  25%{ transform: translateX(10%) translateY(-10px) rotate(1deg); }
  50%{ transform: translateX(20%) translateY(10px) rotate(-1deg); }
  75%{ transform: translateX(10%) translateY(-6px) rotate(1deg); }
  100%{ transform: translateX(100%) translateY(0) rotate(0deg); }
}

/* ========== SOCIAL PLATFORM MARQUEE ========== */
.platforms {
  width: 100%; overflow: hidden; background: rgba(0,0,0,.4);
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 18px 0; backdrop-filter: blur(8px);
}
.marquee { display: flex; overflow: hidden; white-space: nowrap; position: relative; }
.track {
  display: flex; align-items: center; gap: 35px;
  animation: scrollLoop 30s linear infinite; will-change: transform;
}
.item {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1.2rem;
  letter-spacing: .05em; color: var(--lime); text-transform: uppercase;
}
/* circular logo badges */
.icon {
  width: 55px; height: 55px; border-radius: 50%;
  background: var(--lime); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 15px rgba(185,244,99,.4); flex-shrink: 0;
}
.icon img{
  width: 40px; height: 40px; object-fit: cover; border-radius: 50%;
  filter: grayscale(100%) contrast(120%) brightness(1.05) drop-shadow(0 0 6px rgba(0,0,0,.4));
  transition: filter .4s ease, transform .4s ease;
}
.icon:hover img{ filter: grayscale(0%) contrast(130%) brightness(1.2) drop-shadow(0 0 12px rgba(185,244,99,.8)); transform: scale(1.08); }
/* arrow button between items */
.arrow-btn{
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(185,244,99,.15); border:2px solid var(--lime);
  color: var(--lime); font-size: 1.1rem; font-weight: 700;
  display:flex; align-items:center; justify-content:center; transition: all .3s ease; flex-shrink:0; text-decoration: none;
}
.arrow-btn:hover{ background: var(--lime); color:#000; transform: scale(1.08); box-shadow:0 0 12px rgba(185,244,99,.6); }
@keyframes scrollLoop { from{ transform: translateX(0); } to{ transform: translateX(-50%); } }
.platforms:hover .track{ animation-play-state: paused; }

/* ================== WHO WE ARE ================== */
.who-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 180px 10vw;
  background: rgba(0, 0, 0, 0.9);
  overflow: hidden;
}

.who-section .stickers-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60vw 60vw at 20% 10%, rgba(185,244,99,.09), transparent 60%),
    radial-gradient(50vw 50vw at 80% 90%, rgba(185,244,99,.06), transparent 60%),
    url('../assets/stickers.PNG') center/cover repeat;
  opacity: 0.25;
  animation: bgFloat 60s linear infinite;
  z-index: 0;
}

.who-inner {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
  width: 100%;
}

/* Left side */
.who-left {
  flex: 1;
  text-align: left;
  color: white;
}

.who-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: clamp(6rem, 12vw, 14rem);
  line-height: 0.9;
  text-transform: uppercase;
  overflow: hidden;
  margin-bottom: 40px;
}

.who-title .word {
  display: inline-block;
  opacity: 0;
  transform: scale(0) rotate(10deg);
}

.who-title .lime {
  color: var(--lime);
  text-shadow: 0 0 40px rgba(185,244,99,0.6);
}

/* Offer list */
.who-list {
  list-style: none;
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
  text-transform: uppercase;
  color: #dfe6d6;
  margin-left: 10px;
  opacity: 0;
  transform: translateY(30px);
}

.who-list li {
  margin: 4px 0;
}

/* Right side — reels carousel (FADE VERSION, RESPONSIVE) */
.who-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.reel-carousel {
  position: relative;
  width: 100%;
  max-width: 340px; /* keeps desktop proportion */
  aspect-ratio: 9 / 16; /* auto-resize height */
  overflow: hidden;
  border-radius: 25px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.7);
}

.reel {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 25px;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.reel.active {
  opacity: 1;
  z-index: 2;
}

/* Optional: subtle floating motion */
@keyframes slowFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.reel-carousel video {
  animation: slowFloat 8s ease-in-out infinite;
}

/* 📱 Mobile adjustments */
@media (max-width: 900px) {
  .who-inner {
    flex-direction: column;
    gap: 60px;
    text-align: center;
  }

  .who-right {
    width: 100%;
    order: -1;
  }

  .reel-carousel {
    max-width: 85vw;
    aspect-ratio: 9 / 16;
    border-radius: 18px;
  }

  .reel {
    border-radius: 18px;
  }
}


/* ==== PORTFOLIO SECTION ==== */
.portfolio-section {
  position: relative;
  min-height: 100vh;
  background: #0b0b0b;
  padding: 160px 0 120px;
  overflow: hidden;
  text-align: center;
}

/* Stickers background */
.portfolio-section .stickers-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60vw 60vw at 20% 10%, rgba(185,244,99,.08), transparent 60%),
    radial-gradient(50vw 50vw at 80% 90%, rgba(185,244,99,.06), transparent 60%),
    url('../assets/stickers.PNG') center/cover repeat;
  opacity: 0.35;
  animation: bgDrift 50s linear infinite;
  z-index: 0;
}
@keyframes bgDrift {
  0%,100% { background-position: 0 0; }
  50% { background-position: 20px -40px; }
}

/* Title */


.portfolio-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: clamp(5rem, 12vw, 13rem);
  text-transform: uppercase;
  color: #fff;
  line-height: 0.9;
  margin: 0 auto;
  display: inline-block;
  letter-spacing: -2px;
  position: relative;
  top: 0;
}

.portfolio-section {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.portfolio-title {
  position: relative;
  top: -180px;           /* 👈 adjust this number until it looks right */
  margin-bottom: 60px;
  text-align: center;
}


@media (max-width: 900px) {
  .portfolio-title {
    margin-bottom: 60px;
  }
  .portfolio-heading {
    font-size: clamp(3.5rem, 14vw, 8rem);
  }
}


/* Carousel base */
.portfolio-carousel {
  position: relative;
  overflow: visible; /* ✅ fix: allows tall phone mockups to show */
  z-index: 2;
}
.carousel-track {
  display: flex;
  align-items: center;
  gap: 120px;
  animation: scrollBrands 50s linear infinite;
}
@keyframes scrollBrands {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.portfolio-carousel:hover .carousel-track {
  animation-play-state: paused;
}

/* Brand Card */
.brand-card {
  position: relative;
  width: 300px;
  height: 300px;
  flex: 0 0 auto;
  perspective: 1000px;
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  overflow: visible; /* ✅ prevents mockup cutoff */
}

.brand-card:hover {
  width: 260px;
  height: 480px;
  transform: scale(1.05);
  z-index: 10;
}

/* Logo Frame */
.brand-logo-frame {
  position: absolute;
  inset: 0;
  border: 6px solid var(--lime);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.02);
  transition: opacity 0.5s ease;
  z-index: 2;
}
.brand-logo-frame img {
  width: 75%;
  height: auto;
  object-fit: contain;
  filter: brightness(1.2);
}

/* ✅ Fix: fade out + disable hitbox */
.brand-card:hover .brand-logo-frame {
  opacity: 0;
  pointer-events: none;
}

/* Phone Mockup */
.phone-mockup {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.9) translateY(10px);
  transition: all 0.6s ease;
  z-index: 3;
}
.phone-frame {
  position: relative;
  width: 260px;
  height: 480px;
  background: #000;
  border: 5px solid var(--lime);
  box-shadow: 0 0 40px rgba(0,0,0,0.8);
  border-radius: 40px;
  overflow: hidden;
}
.phone-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 40px;
}
.phone-frame::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,0.15);
}
.insta-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lime), var(--lime2));
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.4s ease;
  text-decoration: none;
  box-shadow: 0 0 10px rgba(185,244,99,0.4);
}

/* Hover Logic */
.brand-card:hover .phone-mockup {
  opacity: 1;
  transform: scale(1) translateY(0);
}
.phone-frame:hover .insta-btn {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 0 20px rgba(185,244,99,0.5);
}

/* Mobile Responsive Tweaks */
@media (max-width: 900px) {
  .carousel-track { gap: 60px; animation-duration: 40s; }
  .brand-card { width: 220px; height: 220px; }
  .brand-card:hover { width: 220px; height: 420px; }
  .phone-frame { width: 220px; height: 420px; }
}
@media (max-width: 600px) {
  .portfolio-heading { font-size: clamp(3rem, 16vw, 7rem); }
  .brand-card { width: 180px; height: 180px; }
  .brand-card:hover { width: 180px; height: 360px; }
  .phone-frame { width: 180px; height: 360px; }
  .insta-btn { width: 48px; height: 48px; font-size: 0.9rem; }
}

/* ==== CONTACT SECTION (final aligned version) ==== */
.contact-section {
  position: relative;
  min-height: 120vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--bg);
  color: var(--ink);
  overflow: visible;
}

/* Stickers background behind everything */
.contact-section .stickers-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60vw 60vw at 20% 10%, rgba(185,244,99,.08), transparent 60%),
    radial-gradient(50vw 50vw at 80% 90%, rgba(185,244,99,.06), transparent 60%),
    url('../assets/stickers.PNG') center/cover repeat;
  opacity: 0.25;
  z-index: 0;
  animation: bgDriftContact 60s linear infinite;
}
@keyframes bgDriftContact {
  0%,100% { background-position: 0 0; }
  50% { background-position: 20px -40px; }
}

/* Title centered above the circle */
.contact-title {
  position: absolute;
  top: .2%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
}

.contact-title h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: clamp(5rem, 12vw, 13rem);
  line-height: 0.9;
  letter-spacing: -3px;
  text-transform: uppercase;
}
.contact-title span {
  display: inline-block;
  opacity: 0;
  transform: translateY(120%);
}
.contact-title span:nth-child(odd) { color: var(--lime); }
.contact-title span:nth-child(even) { color: #fff; }

/* Spinning Circle button */
.contact-circle {
  position: relative;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: slowSpin 12s linear infinite;
  box-shadow: 0 0 40px rgba(185,244,99,0.3);
  cursor: pointer;
  z-index: 2;
  transition: transform 0.3s ease;
}
.contact-circle:hover {
  transform: scale(1.05);
  box-shadow: 0 0 60px rgba(185,244,99,0.5);
}

.circle-text {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: spinReverse 12s linear infinite;
}
.circle-center {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 25px rgba(255,255,255,0.6);
}

/* Keyframes for smooth infinite spin */
@keyframes slowSpin   { from {transform:rotate(0deg);} to {transform:rotate(360deg);} }
@keyframes spinReverse{ from {transform:rotate(360deg);} to {transform:rotate(0deg);} }

/* Responsive adjustments */
@media (max-width: 900px) {
  .contact-title h2 {
    font-size: clamp(3.5rem, 14vw, 8rem);
  }
  .contact-title {
    margin-bottom: 70px;
  }
  .contact-circle {
    width: 180px;
    height: 180px;
  }
  .circle-center {
    width: 50px;
    height: 50px;
  }
}


/* ==== CONTACT FORM MODAL ==== */
.contact-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  z-index: 200;
}
.contact-modal[hidden] { display: none; }

.contact-form-card {
  width: min(500px, 90%);
  background: rgba(15,15,15,0.95);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 30px;
  color: #fff;
  position: relative;
  box-shadow: 0 0 40px rgba(185,244,99,0.3);
  animation: formFadeIn 0.5s ease forwards;
}
@keyframes formFadeIn {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  border: none;
  color: var(--lime);
  font-size: 1.5rem;
  cursor: pointer;
}
.contact-form-card h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  margin-bottom: 20px;
}
.contact-form-card form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-form-card label {
  font-weight: 600;
  font-size: 0.95rem;
}
.contact-form-card input,
.contact-form-card textarea {
  width: 100%;
  background: #0f0f0f;
  color: #fff;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 10px;
  padding: 12px;
  font-family: 'Inter', sans-serif;
}
.contact-form-card textarea { min-height: 100px; resize: vertical; }

.submit-btn {
  border: none;
  background: linear-gradient(135deg, var(--lime), var(--lime2));
  color: #000;
  font-weight: 800;
  font-size: 1rem;
  border-radius: 999px;
  padding: 12px 22px;
  cursor: pointer;
  align-self: flex-start;
  transition: all 0.3s ease;
}
.submit-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(185,244,99,0.5);
}

/* ==== RESPONSIVE ==== */
@media (max-width: 900px) {
  .contact-inner {
    flex-direction: column;
    text-align: center;
    gap: 60px;
  }
  .contact-title h2 {
    text-align: center;
    font-size: clamp(3.5rem, 14vw, 8rem);
  }
  .contact-circle {
    width: 180px;
    height: 180px;
  }
  .circle-center {
    width: 50px;
    height: 50px;
  }
}



/* ========== FOOTER ========== */
.footer{ padding:40px 20px; text-align:center; color:#bfcab8; font-size:.9rem; }

/* ========== RESPONSIVE ========== */
@media (max-width: 920px){
  .site-header.scrolled .nav-logo img{ height:40px; }
  .carousel-item img{ width: 80%; }
  .carousel-btn{ width:36px; height:36px; font-size:16px; }
}
@media (max-width: 720px){
  .hero-title{ font-size: clamp(3.2rem, 12vw, 6rem); }
  .hero-sub{ font-size: 1.05rem; }
  .hero-collage .collage-img{ width: 200px; }
  .who-intro-text{ font-size: clamp(3.6rem, 18vw, 12rem); }
  .about-title{ font-size: clamp(3.2rem, 14vw, 8rem); }
}
@media (max-width: 600px){
  .flip-card{ width:130px; height:130px; }
  .flip-front{ font-size:2rem; }
  .flip-back{ font-size:.85rem; }
}


/* ---- Animation base states ---- */
.portfolio-heading .word,
.contact-title span {
  opacity: 0;
  transform: translateY(120%);
  display: inline-block;
}

.contact-title-text {
  display: block;
  position: relative;
  z-index: 3;
  color: #fff;
}

@media (max-width: 768px) {
  .contact-title {
    top: 5%; /* slightly higher on small screens */
  }

  .contact-title h2 {
    font-size: clamp(2.8rem, 12vw, 6rem);
    line-height: 1;
  }

  .contact-circle {
    width: 160px;
    height: 160px;
    margin-top: 60px; /* creates good spacing */
  }

  .circle-center {
    width: 45px;
    height: 45px;
  }
}
.contact-word {
  white-space: nowrap;      /* ✅ keeps all spans in one line */
  display: inline-block;
}
