
* { margin: 0; padding: 0; box-sizing: border-box; }
html,body { height: 100%; }
body {
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;
  background: #ffffff;
  color: #1a1a1a;
  line-height: 1.6;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}


/* ---------- PREMIUM NAVBAR (GOLFAI FINAL VERSION) ---------- */

nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1100;

    /* Luxury Glass Look */
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(22px) saturate(180%);

    padding: 1.6rem 6%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);

    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
}

/* Scrolled Navbar */
nav.scrolled {
    padding: 1rem 6%;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(28px) saturate(220%);

    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.14);
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO IMAGE */
.logo {
    display: flex;
    align-items: center;
    height: 54px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo img {
    height: 100%;
    width: auto;

    filter: drop-shadow(0px 3px 7px rgba(0, 0, 0, 0.15));
    transition: all 0.35s ease;
}

/* Logo Hover = Luxury Glow */
.logo:hover img {
    transform: translateY(-2px) scale(1.04);
    filter: drop-shadow(0px 0px 12px rgba(0, 255, 120, 0.35));
}

/* NAV LINKS */
.nav-links {
    display: flex;
    gap: 1.9rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    position: relative;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #1a1a1a;

    transition: all 0.3s ease;
    padding: 6px 2px;
}

/* Underline Hover Animation */
.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    height: 2px;
    width: 0%;
    background: #1a5632;
    transition: width 0.32s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: #144126;
    transform: translateY(-2px);
}

/* CTA BUTTON */
.nav-cta {
    background: linear-gradient(180deg, #1a5632, #134428);
    color: white;
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;

    box-shadow: 0 6px 20px rgba(26, 86, 50, 0.28);
    transition: all 0.35s ease;
}

.nav-cta:hover {
    background: linear-gradient(180deg, #15482b, #0e331d);
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(26, 86, 50, 0.35);
}

/* MOBILE */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
}


.hero {
  height: 100vh; position: relative; display: flex; align-items: center; overflow: hidden;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}
.hero-background {
  position: absolute; inset:0;
  background-image:
    linear-gradient(to bottom, rgba(255,255,255,0.02), rgba(255,255,255,0.02)),
    url('/background_2.jpeg');
  background-size: 100% 100%; background-position: center;
  filter: saturate(1.05) brightness(0.76);
  transform: scale(1.03);
  z-index:1;
  transition: transform .8s ease;
}
.hero-pattern {
  position: absolute; top:0; right:0; width:60%; height:100%;
  background: linear-gradient(135deg, transparent 0%, rgba(26,86,50,0.03) 100%);
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
  z-index:2;
}
.hero-content {
  position: relative; z-index:3; max-width:1600px; margin: 0 auto; padding: 0 6%; width:100%;
}
.hero-subtitle {
  font-size: 1rem; letter-spacing: 3px; text-transform: uppercase; color: #1a5632;
  font-weight: 600; margin-bottom: 1.2rem; opacity: 0; animation: fadeInUp .8s ease-out .2s forwards;
}
@keyframes fadeInUp { from { opacity:0; transform: translateY(30px); } to { opacity:1; transform:none; } }
.hero h1 {
  font-family: 'Cormorant Garamond', serif; font-size: 4.4rem; font-weight: 600; line-height: 1.06;
  margin-bottom: 1.6rem; color:#0f1720; max-width:900px; opacity:0; animation: fadeInUp .8s ease-out .4s forwards;
}
.hero-description {
  font-size: 1.15rem; color: #4a4a4a; max-width:650px; margin-bottom:2.4rem; line-height:1.8; opacity:0;
  animation: fadeInUp .8s ease-out .6s forwards; font-weight:400;
}
.hero-buttons { display:flex; gap: 1.6rem; opacity:0; animation: fadeInUp .8s ease-out .8s forwards; }
.btn-primary, .btn-secondary { display:inline-block; text-decoration:none; padding: 1rem 2.6rem; border-radius:10px; font-weight:600; letter-spacing:0.8px; text-transform:uppercase; transition:all .28s ease;}
.btn-primary {
  background: #5ea37d; color:#fff; border: none;
}
.btn-primary:hover { background:#1a5632; transform:translateY(-3px); box-shadow:0 12px 35px rgba(0, 0, 0, 0); }
.btn-secondary {
  background:transparent; color:#dce4df; border:2px solid #dce4df;
}
.btn-secondary:hover { background:#1a5632; border:2px solid #1a5632; color:#fff; transform:translateY(-3px); }


/* =====================================================
   COACHES – GLASS PREMIUM GRID (FINAL & WP-SAFE)
===================================================== */

.coaches-section {
  padding: 7rem 6%;
  background: linear-gradient(180deg, #f8f9fa, #ffffff);
}

/* FORCE GRID (WP override safe) */
.coaches-grid {
  max-width: 1600px;
  margin: 4rem auto 0;

  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 2.8rem;

  align-items: stretch;

 
}

.coaches-grid img  {
  cursor: pointer;
}

.coach-name {
  cursor: pointer;
}

/* 🔥 CRITICAL FIX: Neutralise WordPress grid wrappers */
.coaches-grid > .hp-grid__item {
  width: auto !important;
  max-width: none !important;
  float: none !important;
  display: block !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Ensure card fills grid cell */
.coaches-grid .glass-card,
.coaches-grid .hp-vendor {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* ================= GLASS CARD ================= */

.glass-card,
.hp-vendor {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);

  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.4);

  box-shadow:
    0 20px 45px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);

  padding: 3.5rem 2.5rem 2.8rem;
  text-align: center;

  transition: all 0.45s ease;
}

.glass-card:hover,
.hp-vendor:hover {
  transform: translateY(-14px);
  box-shadow:
    0 40px 90px rgba(0, 0, 0, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

/* ================= AVATAR ================= */

.coach-avatar,
.hp-vendor__image {
  width: 130px;
  height: 130px;
  margin: 0 auto 1.8rem;
  border-radius: 50%;
  padding: 6px;

  background: linear-gradient(
    135deg,
    rgba(26, 86, 50, 0.35),
    rgba(26, 86, 50, 0.15)
  );

  display: flex;
  align-items: center;
  justify-content: center;
}

.coach-avatar img,
.hp-vendor__image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: #ffffff;
  padding: 4px;
}

/* ================= CONTENT ================= */

.coach-name,
.hp-vendor__name a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: #0f1720;
  text-decoration: none;
  margin-bottom: 0.3rem;
}

.coach-role {
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #1a5632;
  font-weight: 600;
}

.coach-meta,
.hp-vendor__attributes {
  margin: 1.4rem 0 2rem;
  font-size: 0.95rem;
  color: #555;

  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

/* ================= FOOTER / CTA ================= */

.coach-footer,
.hp-vendor__footer {
  margin-top: auto;
  padding-top: 1.4rem;
}

.coach-cta {
  display: inline-block;
  padding: 0.75rem 2.6rem;
  border-radius: 999px;

  background: linear-gradient(
    180deg,
    rgba(26, 86, 50, 0.95),
    rgba(20, 68, 40, 0.95)
  );

  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;

  box-shadow:
    0 10px 28px rgba(26, 86, 50, 0.35),
    inset 0 1px 0 rgba(255,255,255,0.35);

  transition: all 0.35s ease;
}

.coach-cta:hover {
  transform: translateY(-3px);
  box-shadow:
    0 18px 42px rgba(26, 86, 50, 0.45),
    inset 0 1px 0 rgba(255,255,255,0.45);
}



/* =====================================================
   MOBILE NAV TOGGLE (HAMBURGER)
===================================================== */

/* =====================================================
   PREMIUM HAMBURGER BUTTON (GOLFAI)
===================================================== */

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;

  width: 46px;
  height: 46px;

  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);

  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);

  cursor: pointer;
  padding: 0;

  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);

  transition: all 0.35s ease;
}

/* Hover / Active */
.nav-toggle:hover {
  transform: translateY(-2px);
  box-shadow:
    0 14px 36px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

/* Bars container */
.nav-toggle span {
  position: absolute;
  width: 22px;
  height: 2px;
  background: linear-gradient(90deg, #1a5632, #134428);
  border-radius: 2px;
  transition: all 0.35s ease;
}

/* Positioning bars */
.nav-toggle span:nth-child(1) {
  transform: translateY(-7px);
}
.nav-toggle span:nth-child(2) {
  opacity: 1;
}
.nav-toggle span:nth-child(3) {
  transform: translateY(7px);
}

/* =====================================================
   ACTIVE STATE (OPTIONAL – JS READY)
===================================================== */

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg);
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 992px) {
  .nav-toggle {
    display: flex;
    position: relative;
  }
}

/* =====================================================
   MOBILE SLIDE MENU – GLASS PREMIUM
===================================================== */

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 360px;
  height: 100%;
  z-index: 2000;

  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);

  box-shadow: -25px 0 70px rgba(0, 0, 0, 0.18);

  padding: 3.5rem 2.4rem;
  transition: right 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active {
  right: 0;
}

/* Close Button */
.close-menu {
  position: absolute;
  top: 18px;
  right: 20px;

  background: none;
  border: none;
  font-size: 2.2rem;
  font-weight: 300;
  cursor: pointer;
  color: #0f1720;
}

/* =====================================================
   MOBILE MENU LINKS
===================================================== */

.mobile-links {
  list-style: none;
  margin-top: 4rem;
  padding: 0;
}

.mobile-links li {
  margin-bottom: 1.8rem;
}

.mobile-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  color: #0f1720;

  transition: color 0.3s ease, transform 0.3s ease;
}

.mobile-links a:hover {
  color: #1a5632;
  transform: translateX(6px);
}

/* =====================================================
   MOBILE CTA BUTTON
===================================================== */

.mobile-cta {
  display: block;
  margin-top: 3.2rem;
  padding: 1rem 1.2rem;

  text-align: center;
  text-decoration: none;
  text-transform: uppercase;

  background: linear-gradient(180deg, #1a5632, #134428);
  color: #ffffff;

  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;

  border-radius: 14px;

  box-shadow:
    0 10px 28px rgba(26, 86, 50, 0.35),
    inset 0 1px 0 rgba(255,255,255,0.35);

  transition: all 0.35s ease;
}

.mobile-cta:hover {
  transform: translateY(-3px);
  box-shadow:
    0 18px 42px rgba(26, 86, 50, 0.45),
    inset 0 1px 0 rgba(255,255,255,0.45);
}

/* =====================================================
   RESPONSIVE RULES
===================================================== */

@media (max-width: 992px) {

  /* Hide desktop items */
  .nav-links,
  .nav-cta {
    display: none;
  }

  /* Show hamburger */
  .nav-toggle {
    display: flex;
  }
}






.stats-bar { background:#1a5632; color:#fff; padding: 3.2rem 6%; }
.stats-container { max-width:1600px; margin:0 auto; display:grid; grid-template-columns: repeat(4,1fr); gap:2.4rem; align-items:center; }
.stat-item { text-align:center; border-right:1px solid rgba(255,255,255,0.14); padding:0 1.2rem; }
.stat-item:last-child { border-right:none; }
.stat-number { font-family:'Cormorant Garamond', serif; font-size:3rem; font-weight:700; margin-bottom:.4rem; }
.stat-label { font-size:.95rem; letter-spacing: .8px; text-transform:uppercase; color:rgba(255,255,255,0.92); }


.featured-section { padding:6rem 6%; background:#fff; }
.section-title { text-align:center; margin-bottom:4rem; }
.section-title h2 { font-family:'Cormorant Garamond', serif; font-size:2.8rem; font-weight:600; color:#1a1a1a; margin-bottom:1rem; }
.section-title p { font-size:1.05rem; color:#6a6a6a; max-width:700px; margin:0 auto; line-height:1.7; }
.features-grid { max-width:1600px; margin:0 auto; display:grid; grid-template-columns: repeat(3,1fr); gap:1.6rem; }
.feature-box { background:#fff; padding:2.4rem 1.8rem; border:1px solid rgba(0,0,0,0.06); transition:all .45s cubic-bezier(.2,.9,.2,1); position:relative; }
.feature-box::before { content:''; position:absolute; top:0; left:0; width:0; height:3px; background:#1a5632; transition:width .45s ease; }
.feature-box:hover { transform:translateY(-10px); box-shadow:0 25px 60px rgba(0,0,0,0.06); border-color:#1a5632; cursor:pointer;}
.feature-box:hover::before { width:100%; }
.feature-number { font-family:'Cormorant Garamond', serif; font-size:2.2rem; color:#e9ecef; font-weight:700; margin-bottom:1rem; opacity:.9; }
.feature-box h3 { font-size:1.15rem; margin-bottom:.8rem; color:#1a1a1a; }
.feature-box p { color:#6a6a6a; line-height:1.7; font-size:1rem; }


.tournament-showcase { padding:6rem 6%; background:linear-gradient(135deg,#f8f9fa 0%,#ffffff 100%); }
.tournament-grid { max-width:1600px; margin:0 auto; display:grid; grid-template-columns: repeat(2,1fr); gap:2.4rem; }
.tournament-item { background:#fff; overflow:hidden; border:1px solid rgba(0,0,0,0.06); transition: all .45s ease; display:flex; flex-direction:column; }
.tournament-item:hover { transform:translateY(-8px); box-shadow:0 30px 70px rgba(0,0,0,0.08); cursor: pointer;}
.tournament-image-box { width:100%; height:380px; background: url('https://images.unsplash.com/photo-1508672019048-805c876b67e2?auto=format&fit=crop&w=1500&q=80') center/cover no-repeat; position:relative; }
.tournament-image-box::before { content:''; position:absolute; inset:0; background: linear-gradient(180deg, rgba(0,0,0,0.22), transparent 40%); }
.tournament-icon { position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); font-size:5.2rem; opacity:0.12; }
.tournament-details { padding:2.4rem; }
.tournament-date { font-size:.9rem; letter-spacing:2px; text-transform:uppercase; color:#1a5632; font-weight:600; margin-bottom:1rem; }
.tournament-details h3 { font-family:'Cormorant Garamond', serif; font-size:1.6rem; margin-bottom:.6rem; color:#1a1a1a; }
.tournament-details p { color:#6a6a6a; line-height:1.7; margin-bottom:1.2rem; font-size:1rem; }
.tournament-meta { display:flex; gap:1.2rem; padding-top:1rem; border-top:1px solid rgba(0,0,0,0.05); }
.meta-item { font-size:.95rem; color:#4a4a4a; }


.experience-section { padding:8rem 6%; background:#1a5632; color:#fff; position:relative; overflow:hidden; }
.experience-content { max-width:1600px; margin:0 auto; display:grid; grid-template-columns: 1fr 1fr; gap:3.2rem; align-items:center; }
.experience-text h2 { font-family:'Cormorant Garamond', serif; font-size:2.8rem; font-weight:600; margin-bottom:1rem; color:#fff; }
.experience-text p { font-size:1.05rem; line-height:1.7; margin-bottom:1.8rem; color:rgba(255,255,255,0.95); }
.experience-features { display:grid; gap:1.2rem; }
.exp-feature { display:flex; align-items:flex-start; gap:1rem; padding:1.2rem; background: rgba(255,255,255,0.03); border:1px solid rgba(255,255,255,0.05); transition:all .28s ease; }
.exp-feature:hover { transform:translateX(8px); background:rgba(255,255,255,0.05); }
.exp-icon { font-size:1.8rem; min-width:48px; }


.cta-section { padding:6rem 6%; background:#fff; text-align:center; }
.cta-content h2 { font-family:'Cormorant Garamond', serif; font-size:2.6rem; margin-bottom:1rem; color:#1a1a1a; }
.cta-content p { font-size:1.05rem; color:#6a6a6a; margin-bottom:1.6rem; }


footer { background:#0a0a0a; color:#fff; padding:4rem 6% 2rem; }
.footer-grid { max-width:1600px; margin:0 auto; display:grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap:2rem; margin-bottom:2rem; padding-bottom:2rem; border-bottom:1px solid rgba(255,255,255,0.06); }
.footer-brand h3 { font-family:'Cormorant Garamond', serif; font-size:1.6rem; margin-bottom:0.6rem; color:#1a5632; }
.footer-brand p { color:#9a9a9a; line-height:1.6; }
.footer-column h4 { font-size:1rem; margin-bottom:0.8rem; font-weight:600; letter-spacing:1px; text-transform:uppercase; }
.footer-column a { color:#9a9a9a; text-decoration:none; transition:color .2s ease; }
.footer-column a:hover { color:#1a5632; }
.footer-bottom { max-width:1600px; margin:0 auto; text-align:center; color:#6a6a6a; font-size:0.9rem; margin-top:1.2rem; }


@media (max-width:1200px) {
  .hero h1 { font-size:3.2rem; }
  .features-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width:768px) {
  .nav-links { display:none; }
  .hero h1 { font-size:2.4rem; }
  .stats-container { grid-template-columns: repeat(2,1fr); gap:1.4rem; }
  .features-grid { grid-template-columns: 1fr; }
  .tournament-grid { grid-template-columns:1fr; }
  .experience-content { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr; }
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .coaches-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 768px) {
  .coaches-grid {
    grid-template-columns: 1fr !important;
  }
}


