/* ============================================
   ADRIEN BONNET — GOLFEUR PROFESSIONNEL
   Main Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600&family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,wght@0,200;0,300;0,400;0,500;1,300;1,400&display=swap');

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-deepest: #050e08;
  --green-deep: #0a1a0f;
  --green-dark: #0f2416;
  --green-mid: #1a3d24;
  --green-accent: #2d6b3f;
  --green-light: #4a9c5e;
  --gold: #c9a84c;
  --gold-light: #e6c96e;
  --gold-pale: #f0dfa0;
  --cream: #f5f0e8;
  --cream-dark: #e0d8c8;
  --white: #fefdfb;
  --text-body: rgba(245, 240, 232, 0.72);
  --text-muted: rgba(245, 240, 232, 0.4);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--green-deep);
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--cream);
  background: var(--green-deepest);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--green-deep); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* === CURSOR GOLF BALL === */
.cursor-dot {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transition: transform 0.15s ease;
}
.cursor-dot.hover { transform: scale(3); }

/* === LOADER === */
.loader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--green-deepest);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-golf-ball {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff 0%, #e8e8e8 50%, #ccc 100%);
  box-shadow: inset -3px -3px 8px rgba(0,0,0,.15), 0 4px 20px rgba(0,0,0,.3);
  animation: ballBounce 1s ease-in-out infinite;
}
.loader-text {
  margin-top: 2rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  letter-spacing: .15em;
  color: var(--gold);
  opacity: 0;
  animation: fadeIn .5s ease forwards .3s;
}
@keyframes ballBounce {
  0%, 100% { transform: translateY(0) scale(1, 1); }
  30% { transform: translateY(-50px) scale(0.9, 1.1); }
  50% { transform: translateY(0) scale(1.1, 0.9); }
  65% { transform: translateY(-20px) scale(0.95, 1.05); }
  80% { transform: translateY(0) scale(1.05, 0.95); }
}

/* === NAVIGATION === */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 4vw;
  background: transparent;
  transition: padding 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s ease;
}
#nav.scrolled {
  background: #050e08;
  padding: 0.8rem 4vw;
  box-shadow: 0 1px 0 rgba(201, 168, 76, 0.08);
}

/* — Logo — */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1002;
}
.nav-logo-img {
  height: 36px;
  width: auto;
  opacity: 0.9;
  transition: all 0.3s ease;
}
.nav-logo:hover .nav-logo-img {
  opacity: 1;
  filter: drop-shadow(0 0 8px rgba(201,168,76,0.4));
}

/* Hero logo */
.hero-logo {
  display: block;
  height: 80px; width: auto;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards 0.1s;
}
/* Footer logo */
.footer-logo-img {
  height: 50px; width: auto;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  margin-bottom: 0.5rem;
}
.footer-logo-img:hover { opacity: 1; }

/* — Desktop links — */
.nav-links {
  display: flex;
  gap: clamp(1.2rem, 2.5vw, 3rem);
  list-style: none;
  align-items: center;
  margin: 0;
  padding: 0;
}
.nav-links li {
  flex-shrink: 0;
}
.nav-links a {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.6);
  position: relative;
  transition: color 0.3s;
  padding: 0.5rem 0;
  white-space: nowrap;
}
.nav-links a::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::before { width: 100%; }

/* — CTA button — */
.nav-cta {
  padding: 0.55rem 1.8rem !important;
  border: 1px solid rgba(201, 168, 76, 0.4) !important;
  border-radius: 30px;
  color: var(--gold) !important;
  letter-spacing: 0.12em !important;
  transition: all 0.3s ease !important;
}
.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--green-deep) !important;
}

/* — Hamburger (hidden on desktop) — */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
  z-index: 1002;
}
.hamburger span {
  display: block;
  width: 28px; height: 1.5px;
  background: var(--cream);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* — Mobile overlay (≤1024px) — */
@media (max-width: 1024px) {
  #nav { padding: 1rem 1.5rem; }
  #nav.scrolled { padding: 0.7rem 1.5rem; }

  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #050e08;
    gap: 2.5rem;
    z-index: 1001;
    padding: 5rem 2rem;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    font-size: 1.1rem;
    letter-spacing: 0.15em;
    color: rgba(245, 240, 232, 0.7);
  }
  .nav-cta {
    padding: 0.8rem 2.5rem !important;
    font-size: 1rem !important;
  }
  .hamburger {
    display: flex;
  }
}

/* === HERO === */
.hero {
  height: 100vh; min-height: 800px;
  position: relative; display: flex; align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  will-change: transform;
}
.hero-bg-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(160deg, rgba(5,14,8,0.7) 0%, transparent 50%),
    linear-gradient(to top, var(--green-deepest) 0%, rgba(5,14,8,0.4) 35%, transparent 70%);
}
/* Animated grain texture */
.hero-grain {
  position: absolute; inset: -50%;
  width: 200%; height: 200%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.5;
  animation: grain 8s steps(10) infinite;
  pointer-events: none;
}
@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  10% { transform: translate(-5%, -10%); }
  20% { transform: translate(-15%, 5%); }
  30% { transform: translate(7%, -25%); }
  40% { transform: translate(-5%, 25%); }
  50% { transform: translate(-15%, 10%); }
  60% { transform: translate(15%, 0%); }
  70% { transform: translate(0%, 15%); }
  80% { transform: translate(3%, 20%); }
  90% { transform: translate(-10%, 10%); }
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 6vw 4vh;
  width: 100%;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 1rem;
  font-size: 0.7rem; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 2rem;
}
.hero-tag::before {
  content: ''; display: block;
  width: 40px; height: 1px; background: var(--gold);
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  font-weight: 300; line-height: 0.95;
  letter-spacing: -0.03em;
}
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line-inner {
  display: block;
  transform: translateY(110%);
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero.loaded .hero h1 .line-inner,
.hero h1 .line-inner.visible { transform: translateY(0); }
.hero h1 strong {
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.05rem; font-weight: 300; line-height: 1.8;
  max-width: 500px; color: var(--text-body);
  margin-top: 2rem;
}
.hero-stats {
  display: flex; gap: 4rem; margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(201, 168, 76, 0.12);
}
.hero-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem; font-weight: 300;
  color: var(--gold);
  display: flex; align-items: baseline; gap: 0.2rem;
}
.hero-stat-number span { font-size: 1rem; }
.hero-stat-label {
  font-size: 0.7rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--text-muted);
  margin-top: 0.3rem;
}

/* Hero golf ball animation */
.hero-ball-track {
  position: absolute; right: 8vw; top: 50%;
  transform: translateY(-50%);
  z-index: 2; pointer-events: none;
}
.golf-ball-anim {
  width: 20px; height: 20px;
  background: radial-gradient(circle at 35% 35%, #fff, #ddd);
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  animation: golfFly 4s ease-in-out infinite;
  opacity: 0.6;
}
@keyframes golfFly {
  0% { transform: translate(0, 0) scale(1); opacity: 0.6; }
  20% { transform: translate(-80px, -120px) scale(0.8); opacity: 0.8; }
  50% { transform: translate(-200px, -180px) scale(0.5); opacity: 0.4; }
  100% { transform: translate(-400px, -60px) scale(0.2); opacity: 0; }
}

/* Scroll indicator */
.hero-scroll {
  position: absolute; bottom: 1.2rem; left: 50%;
  transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.8rem;
}
.hero-scroll span {
  font-size: 0.6rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--text-muted);
}
.scroll-indicator {
  width: 20px; height: 32px;
  border: 1.5px solid rgba(201, 168, 76, 0.3);
  border-radius: 10px;
  position: relative;
}
.scroll-indicator::after {
  content: ''; position: absolute;
  top: 6px; left: 50%; transform: translateX(-50%);
  width: 2px; height: 6px;
  background: var(--gold); border-radius: 2px;
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
  0% { transform: translateX(-50%) translateY(0); opacity: 1; }
  100% { transform: translateX(-50%) translateY(12px); opacity: 0; }
}

/* === MARQUEE === */
.marquee-section {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(201, 168, 76, 0.06);
  border-bottom: 1px solid rgba(201, 168, 76, 0.06);
  background: rgba(201, 168, 76, 0.02);
  overflow: hidden;
}
.marquee-track {
  display: flex; width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-item {
  display: flex; align-items: center; gap: 2rem;
  padding: 0 2rem;
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 400; font-style: italic;
  color: var(--text-muted); white-space: nowrap;
}
.marquee-dot {
  width: 4px; height: 4px;
  background: var(--gold); border-radius: 50%;
  flex-shrink: 0;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* === SECTIONS COMMON === */
section { padding: 8rem 6vw; position: relative; }
.section-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.65rem; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
  display: flex; align-items: center; gap: 1rem;
}
.section-label::before {
  content: ''; width: 24px; height: 1px; background: var(--gold);
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 300; line-height: 1.15;
  margin-bottom: 1rem;
}
.section-title em {
  font-style: italic;
  color: var(--gold-light);
}
.section-desc {
  font-size: 0.95rem; font-weight: 300;
  line-height: 1.8; color: var(--text-body);
  max-width: 550px;
}

/* === ABOUT === */
.about { background: var(--green-deepest); }
.about-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem; align-items: start;
  max-width: 1300px; margin: 0 auto;
}
.about-images-col { position: relative; }
.about-img-main {
  width: 100%; height: 450px;
  border-radius: var(--radius-md);
  overflow: hidden; position: relative;
}
.about-img-main img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.about-img-main:hover img { transform: scale(1.05); }
.about-img-float {
  position: absolute; bottom: -3rem; right: -2rem;
  width: 220px; height: 280px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 3px solid var(--green-deepest);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.about-img-float img {
  width: 100%; height: 100%; object-fit: cover;
}
.about-text-col { padding-top: 1rem; }
.about-text-col p {
  font-size: 0.95rem; font-weight: 300;
  line-height: 1.9; color: var(--text-body);
  margin-bottom: 1.5rem;
}
.about-text-col p:first-of-type::first-letter {
  font-family: 'Playfair Display', serif;
  font-size: 4rem; float: left; line-height: 0.8;
  margin-right: 0.6rem; margin-top: 0.2rem;
  color: var(--gold); font-weight: 500;
}
.about-quote {
  margin: 2.5rem 0;
  padding: 2rem 2.5rem;
  border-left: 2px solid var(--gold);
  background: rgba(201, 168, 76, 0.03);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.about-quote p {
  font-family: 'Playfair Display', serif !important;
  font-size: 1.15rem !important; font-style: italic;
  color: var(--cream) !important; font-weight: 400;
  line-height: 1.7 !important;
}

/* Timeline / Milestones */
.milestones {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem; margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
}
.milestone { position: relative; padding-left: 0; }
.milestone::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
}
.milestone-year {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 600;
  color: var(--gold); padding-top: 1rem;
}
.milestone-desc {
  font-size: 0.78rem; font-weight: 300;
  color: var(--text-muted); margin-top: 0.4rem;
  line-height: 1.5;
}

/* === DIPLOMAS === */
.diplomas {
  background: var(--green-deep);
  border-top: 1px solid rgba(201, 168, 76, 0.05);
  border-bottom: 1px solid rgba(201, 168, 76, 0.05);
}
.diplomas-container { max-width: 1300px; margin: 0 auto; }
.diplomas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem; margin-top: 2rem;
}
.diploma-card {
  padding: 2rem 1.8rem;
  background: rgba(201, 168, 76, 0.02);
  border: 1px solid rgba(201, 168, 76, 0.08);
  border-radius: var(--radius-md);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative; overflow: hidden;
}
.diploma-card::after {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 0;
  background: linear-gradient(180deg, rgba(201,168,76,0.06), transparent);
  transition: height 0.5s ease;
}
.diploma-card:hover::after { height: 100%; }
.diploma-card:hover {
  border-color: rgba(201, 168, 76, 0.2);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}
.diploma-icon {
  font-size: 1.5rem; margin-bottom: 1rem;
  position: relative; z-index: 1;
}
.diploma-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem; font-weight: 600;
  margin-bottom: 0.5rem;
  position: relative; z-index: 1;
}
.diploma-card p {
  font-size: 0.82rem; font-weight: 300;
  color: var(--text-muted); line-height: 1.6;
  position: relative; z-index: 1;
}

/* === COACHING === */
.coaching { background: var(--green-deepest); }
.coaching-container { max-width: 1300px; margin: 0 auto; }
.coaching-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: end;
  margin-bottom: 4rem;
}
.coaching-visual {
  position: relative; height: 500px;
  border-radius: var(--radius-lg); overflow: hidden;
}
.coaching-visual img {
  width: 100%; height: 100%; object-fit: cover;
}
.coaching-visual-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(5,14,8,0.8) 0%, rgba(5,14,8,0.2) 60%);
  display: flex; align-items: flex-end; padding: 3rem;
}
.coaching-visual-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; font-weight: 300; line-height: 1.3;
}
.coaching-visual-text em { color: var(--gold-light); }
.coaching-cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.coaching-card {
  padding: 2.5rem 2rem;
  border: 1px solid rgba(201, 168, 76, 0.08);
  border-radius: var(--radius-md);
  background: linear-gradient(170deg, rgba(15,36,22,0.5), transparent);
  position: relative; overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
}
.coaching-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.coaching-card:hover::before { transform: scaleX(1); }
.coaching-card:hover {
  border-color: rgba(201, 168, 76, 0.2);
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}
.coaching-number {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem; font-weight: 300;
  color: rgba(201, 168, 76, 0.12);
  line-height: 1; margin-bottom: 1.5rem;
}
.coaching-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem; font-weight: 600;
  margin-bottom: 1rem; letter-spacing: 0.02em;
}
.coaching-card p {
  font-size: 0.85rem; font-weight: 300;
  line-height: 1.8; color: var(--text-body);
}

/* === GALLERY === */
.gallery {
  background: var(--green-deep);
  padding: 6rem 0;
  overflow: hidden;
}
.gallery-header { padding: 0 6vw; margin-bottom: 3rem; }
.gallery-track-wrapper { position: relative; }
.gallery-track {
  display: flex; gap: 1.5rem;
  padding: 0 6vw;
  cursor: grab;
}
.gallery-track.dragging { cursor: grabbing; }
.gallery-item {
  flex: 0 0 auto;
  width: 380px; height: 480px;
  border-radius: var(--radius-md);
  overflow: hidden; position: relative;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  filter: saturate(0.85);
}
.gallery-item:hover img {
  transform: scale(1.08);
  filter: saturate(1);
}
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5,14,8,0.6) 0%, transparent 40%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex; align-items: flex-end; padding: 2rem;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-caption {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-style: italic; color: var(--cream);
}

/* === INSTAGRAM === */
.instagram {
  background: var(--green-deepest);
  overflow: hidden;
}
.instagram-container { max-width: 1300px; margin: 0 auto; }
.instagram-header {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 3rem;
  flex-wrap: wrap; gap: 1.5rem;
}
.instagram-follow {
  display: inline-flex; align-items: center; gap: 0.8rem;
  padding: 0.7rem 2rem;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 30px;
  font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--cream);
  transition: all 0.3s ease;
}
.instagram-follow:hover {
  background: var(--gold); color: var(--green-deep);
  border-color: var(--gold);
}
.instagram-follow svg { width: 18px; height: 18px; }
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.insta-card {
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden; position: relative;
  cursor: pointer;
  border: 1px solid rgba(201, 168, 76, 0.06);
  transition: all 0.4s ease;
}
.insta-card:hover {
  border-color: rgba(201, 168, 76, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}
.insta-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.insta-card:hover img { transform: scale(1.1); }
.insta-card-overlay {
  position: absolute; inset: 0;
  background: rgba(5, 14, 8, 0.7);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s ease;
}
.insta-card:hover .insta-card-overlay { opacity: 1; }
.insta-card-overlay svg {
  width: 32px; height: 32px; color: var(--cream);
}
/* Text-based Instagram cards */
.insta-text-card {
  background: linear-gradient(135deg, var(--green-mid), var(--green-dark));
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 2rem;
}
.insta-text-card .insta-handle {
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem; font-weight: 600;
  color: var(--gold); margin-bottom: 0.5rem;
}
.insta-text-card .insta-bio {
  font-size: 0.78rem; color: var(--text-muted);
  line-height: 1.5;
}

/* === SPONSORS === */
.sponsors { background: var(--green-deepest); }
.sponsors-container {
  max-width: 1000px; margin: 0 auto;
  text-align: center;
}
.sponsors-intro {
  font-size: 1rem; font-weight: 300; line-height: 1.8;
  color: var(--text-body); max-width: 600px;
  margin: 0 auto 3rem;
}
.sponsors-tier-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 2.5rem;
}
.sponsors-tier-label--minor {
  margin-top: 3rem; color: var(--text-muted);
}
.sponsors-bubbles {
  display: flex; flex-wrap: wrap;
  justify-content: center; align-items: center;
  gap: 1.8rem;
  margin-bottom: 1rem;
}

/* --- Major bubbles --- */
.sponsor-bubble {
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  position: relative; overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.sponsor-bubble--major {
  width: 160px; height: 160px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  background: radial-gradient(circle at 40% 35%, rgba(201,168,76,0.08), rgba(15,36,22,0.4) 70%);
  box-shadow: 0 4px 30px rgba(0,0,0,0.15), inset 0 1px 0 rgba(201,168,76,0.08);
}
.sponsor-bubble--major:hover {
  border-color: rgba(201, 168, 76, 0.5);
  transform: translateY(-8px) scale(1.06);
  box-shadow: 0 20px 50px rgba(0,0,0,0.25), 0 0 40px rgba(201,168,76,0.08), inset 0 1px 0 rgba(201,168,76,0.15);
  background: radial-gradient(circle at 40% 35%, rgba(201,168,76,0.15), rgba(15,36,22,0.5) 70%);
}

/* --- Minor bubbles --- */
.sponsor-bubble--minor {
  width: 115px; height: 115px;
  border: 1px solid rgba(201, 168, 76, 0.1);
  background: radial-gradient(circle at 40% 35%, rgba(201,168,76,0.04), rgba(15,36,22,0.3) 70%);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1), inset 0 1px 0 rgba(201,168,76,0.05);
}
.sponsor-bubble--minor:hover {
  border-color: rgba(201, 168, 76, 0.35);
  transform: translateY(-6px) scale(1.06);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2), 0 0 30px rgba(201,168,76,0.06), inset 0 1px 0 rgba(201,168,76,0.1);
  background: radial-gradient(circle at 40% 35%, rgba(201,168,76,0.1), rgba(15,36,22,0.4) 70%);
}

.sponsor-bubble-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700; text-align: center;
  letter-spacing: 0.06em; line-height: 1.2;
  color: var(--gold);
  padding: 0.5rem;
  transition: color 0.3s;
}
.sponsor-bubble--major .sponsor-bubble-name {
  font-size: 0.82rem;
}
.sponsor-bubble--minor .sponsor-bubble-name {
  font-size: 0.65rem;
}
.sponsor-bubble:hover .sponsor-bubble-name {
  color: var(--gold-light);
}

.sponsoring-cta {
  margin-top: 4rem; padding-top: 3rem;
  border-top: 1px solid rgba(201, 168, 76, 0.08);
}
.sponsoring-cta p {
  font-size: 0.95rem; font-weight: 300;
  color: var(--text-muted); margin-bottom: 1.5rem;
}
.cta-btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 1rem 3rem;
  background: var(--gold); color: var(--green-deep);
  font-family: 'Syne', sans-serif;
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  border: none; border-radius: 40px; cursor: pointer;
  transition: all 0.4s ease;
}
.cta-btn:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(201, 168, 76, 0.25);
}
.cta-btn svg { width: 16px; height: 16px; }

/* === FOOTER === */
footer {
  background: var(--green-deep);
  padding: 5rem 6vw 2rem;
  border-top: 1px solid rgba(201, 168, 76, 0.05);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1300px; margin: 0 auto;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.05);
}
.footer-brand p {
  font-size: 0.82rem; color: var(--text-muted);
  margin-top: 0.8rem; line-height: 1.7; font-weight: 300;
}
.footer-col h4 {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem;
}
.footer-col a {
  display: block; font-size: 0.85rem; font-weight: 300;
  color: var(--text-muted); margin-bottom: 0.8rem;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--cream); }
.footer-social {
  display: flex; gap: 1rem; margin-top: 1.5rem;
}
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease;
  margin: 0;
}
.footer-social a:hover {
  background: var(--gold); border-color: var(--gold);
  color: var(--green-deep);
}
.footer-social svg { width: 16px; height: 16px; }
.footer-bottom {
  max-width: 1300px; margin: 0 auto;
  padding-top: 2rem;
  display: flex; justify-content: space-between;
  font-size: 0.72rem; color: rgba(245, 240, 232, 0.2);
  font-weight: 300;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .about-layout { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-float { right: 1rem; bottom: -2rem; width: 180px; height: 220px; }
  .coaching-header { grid-template-columns: 1fr; }
  .coaching-visual { height: 350px; }
  .coaching-event-grid { grid-template-columns: 1fr !important; }
  .milestones { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  section { padding: 5rem 1.5rem; }
  .hero-content { padding: 0 1.5rem 3vh; }
  .hero-stats { gap: 2rem; flex-wrap: wrap; }
  .hero-ball-track { display: none; }
  .coaching-cards { grid-template-columns: 1fr; }
  .gallery-item { width: 280px; height: 360px; }
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
  .sponsor-bubble--major { width: 135px; height: 135px; }
  .sponsor-bubble--minor { width: 100px; height: 100px; }
  .sponsor-bubble--major .sponsor-bubble-name { font-size: 0.72rem; }
  .sponsor-bubble--minor .sponsor-bubble-name { font-size: 0.6rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; }
  .cursor-dot { display: none; }
}
@media (max-width: 480px) {
  .milestones { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(2.5rem, 12vw, 4rem); }
  .hero-stats { flex-direction: column; gap: 1.5rem; }
}
