.hero-video {
    position: relative;
    height: 90vh;
    min-height: 650px;
    overflow: hidden;
    background: #000;
}

/* Background video */
.hero-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Dark overlay for readability */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 2;
}

/* Content */
.hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 0 1rem;
}

/* Eyebrow text */
.hero-eyebrow {
    color: #d4af37;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

/* Headline */
.hero-content h1 {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

.hero-content h1 span {
    display: block;
    margin-top: 0.5rem;
}

/* Description */
.hero-content p {
    max-width: 820px;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2.2rem;
    opacity: 0.95;
}

/* Buttons */
.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-primary-hero,
.btn-secondary-hero {
    padding: 14px 26px;
    border-radius: 30px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    text-decoration: none;
}

/* Green primary */
.btn-primary-hero {
    background: #0b5d1e;
    color: #fff;
    border: 1px solid #0b5d1e;
}

.btn-primary-hero:hover {
    background: #0f7a2b;
}

/* Secondary */
.btn-secondary-hero {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.btn-secondary-hero:hover {
    background: #fff;
    color: #000;
}

/* Mobile tuning */
@media (max-width: 768px) {
    .hero-video {
        min-height: 550px;
    }

    .hero-content p {
        font-size: 0.95rem;
    }
}

/* ================================
   START: Home Page – Simulators Section
   ================================ */

.feature-simulators {
    background: #000;
    padding: 90px 0;
    overflow: hidden;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 3rem;
}

.feature-left h2 {
    color: #fff;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.06em;
    line-height: 1.1;
    font-size: clamp(2rem, 3vw, 3rem);
    margin: 0 0 1.2rem 0;
}

.feature-left h2 span {
    display: inline-block;
    margin-top: 0.6rem;
}

.feature-desc {
    color: rgba(255,255,255,0.9);
    max-width: 620px;
    line-height: 1.7;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin: 0 0 2rem 0;
}

/* Green info card */
.feature-card {
    background: #0b5d1e;
    border-radius: 28px;
    padding: 26px;
    max-width: 520px;
    box-shadow: 0 18px 50px rgba(0,0,0,0.45);
}

.feature-card h3 {
    color: #fff;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.06em;
    font-size: 1.25rem;
    margin: 0 0 0.9rem 0;
}

.feature-card p {
    color: rgba(255,255,255,0.92);
    margin: 0;
    line-height: 1.7;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

/* Right side image */
.feature-right {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Subtle vignette glow */
.feature-right::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(255,255,255,0.08), rgba(0,0,0,0) 65%);
    filter: blur(2px);
    z-index: 0;
}

.feature-image {
    position: relative;
    z-index: 1;
    max-width: 520px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Responsive */
@media (max-width: 992px) {
    .feature-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .feature-desc,
    .feature-card {
        margin-left: auto;
        margin-right: auto;
    }

    .feature-right::before {
        width: 420px;
        height: 420px;
    }

    .feature-image {
        max-width: 420px;
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    .feature-simulators {
        padding: 70px 0;
    }

    .feature-card {
        padding: 22px;
        border-radius: 22px;
    }
}

/* ================================
   END: Home
 */

/* ================================
   START: Home Page – World Class Courses Section
   ================================ */

.world-class-courses {
    position: relative;
    padding: 110px 0 120px;
    background-image: url("https://golf-envy.sfo3.cdn.digitaloceanspaces.com/greenbgimg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.courses-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.world-class-courses .container {
    position: relative;
    z-index: 2;
}

.courses-title {
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.08em;
    margin-bottom: 3.5rem;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
}

/* Course cards grid */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.2rem;
}

/* Individual card */
.course-card {
    text-align: center;
    color: #fff;
}

.course-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.course-card img:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.75);
}

.course-card span {
    display: block;
    margin-top: 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* Responsive */
@media (max-width: 1200px) {
    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 576px) {
    .world-class-courses {
        padding: 80px 0 90px;
    }

    .courses-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .course-card img {
        border-radius: 22px;
    }
}

/* ================================
   END: Home Page – World Class Courses Section
   ================================ */

/* ================================
   START: Home Page – Game Improvement Section
   ================================ */

.game-improvement {
    background: #000;
    padding: 110px 0;
    overflow: hidden;
}

.game-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3.5rem;
}

/* Image */
.game-left {
    display: flex;
    justify-content: center;
    align-items: center;
}

.game-image {
    width: 100%;
    max-width: 680px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 18px 40px rgba(0,0,0,0.7));
}

/* Text */
.game-right h2 {
    color: #fff;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1.15;
    font-size: clamp(2rem, 3vw, 3rem);
    margin: 0 0 1.4rem 0;
}

.game-right h2 span {
    display: inline-block;
    margin-top: 0.6rem;
}

.game-right p {
    color: rgba(255,255,255,0.9);
    max-width: 560px;
    line-height: 1.8;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .game-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .game-right p {
        margin-left: auto;
        margin-right: auto;
    }

    .game-image {
        max-width: 520px;
    }
}

@media (max-width: 576px) {
    .game-improvement {
        padding: 80px 0;
    }
}

/* ================================
   END: Home Page – Game Improvement Section
   ================================ */

/* ================================
   START: Home Page – Membership Feel Section
   ================================ */

.membership-feel {
    background: #000;
    padding: 120px 0;
}

.membership-pill {
    background: #0b5d1e;
    border-radius: 60px;
    padding: 46px 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.55);
}

/* Text */
.membership-text h2 {
    color: #fff;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.08em;
    margin: 0 0 1rem 0;
    font-size: clamp(1.4rem, 2.5vw, 2.1rem);
}

.membership-text p {
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.85rem;
    line-height: 1.7;
    max-width: 720px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin: 0;
}

/* Golf ball */
.membership-ball img {
    width: 140px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.6));
}

/* Responsive */
@media (max-width: 992px) {
    .membership-pill {
        flex-direction: column;
        text-align: center;
        padding: 42px 36px;
        border-radius: 48px;
    }

    .membership-ball img {
        width: 120px;
    }
}

@media (max-width: 576px) {
    .membership-feel {
        padding: 90px 0;
    }

    .membership-pill {
        padding: 36px 28px;
        border-radius: 40px;
    }
}

/* ================================
   END: Home Page – Membership Feel Section
   ================================ */

/* ================================
   START: Home Page – Special Events Section
   ================================ */

.special-events {
    background: #000;
    padding: 120px 0;
    overflow: hidden;
}

.events-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 4rem;
}

/* Left image */
.events-left {
    display: flex;
    justify-content: center;
}

.events-image {
    width: 100%;
    max-width: 420px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 18px 45px rgba(0,0,0,0.7));
}

/* Right content */
.events-right h2 {
    color: #fff;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.08em;
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    margin: 0 0 1.2rem 0;
}

.events-intro {
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 620px;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

/* Green card */
.events-card {
    background: #0b5d1e;
    border-radius: 32px;
    padding: 30px 34px;
    max-width: 720px;
    box-shadow: 0 22px 55px rgba(0,0,0,0.55);
}

.events-card h3 {
    color: #fff;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.06em;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.events-card ul {
    padding-left: 1.1rem;
    margin: 0;
}

.events-card li {
    color: rgba(255,255,255,0.95);
    font-size: 0.82rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

/* Responsive */
@media (max-width: 992px) {
    .events-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .events-image {
        max-width: 360px;
        margin-bottom: 2rem;
    }

    .events-intro,
    .events-card {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 576px) {
    .special-events {
        padding: 90px 0;
    }

    .events-card {
        padding: 26px 24px;
        border-radius: 26px;
    }
}

/* ================================
   END: Home Page – Special Events Section
   ================================ */

/* ================================
   START: Home Page – CTA Pre-Footer Section
   ================================ */

.cta-prefooter {
    position: relative;
    height: 85vh;
    min-height: 700px;
    background-image: url("https://golf-envy.sfo3.cdn.digitaloceanspaces.com/66b266f4ea44fc74e1af93ca.jpg");
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    overflow: hidden;
}

/* Top-down fade mask */
.cta-prefooter::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,1) 0%,
        rgba(0,0,0,0.85) 15%,
        rgba(0,0,0,0.55) 30%,
        rgba(0,0,0,0.25) 45%,
        rgba(0,0,0,0) 65%
    );
    z-index: 1;
}

/* Extra darkening for contrast */
.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    z-index: 2;
}

.cta-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 0 1rem;
}

/* Logo */
.cta-logo {
    max-width: 240px;
    margin-bottom: 2.5rem;
}

/* Buttons */
.cta-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.cta-btn {
    padding: 16px 34px;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
}

.cta-btn.primary {
    background: #d4af37;
    color: #000;
}

.cta-btn.secondary {
    background: #d4af37;
    color: #000;
}

/* Contact text */
.cta-contact p {
    margin: 0.4rem 0;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* Social icons */
.cta-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.8rem;
}

.cta-social a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #d4af37;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .cta-prefooter {
        height: 75vh;
        min-height: 600px;
    }

    .cta-logo {
        max-width: 200px;
    }
}

/* ================================
   END: Home Page – CTA Pre-Footer Section
   ================================ */

/* ================================
   START: Site Footer
   ================================ */

.site-footer {
    background: #0b5d1e;
    padding: 16px 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 34px;
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    text-align: center;
}

.footer-link {
    color: rgba(255,255,255,0.95);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.footer-link:hover {
    color: #d4af37;
}

.footer-sep {
    color: rgba(255,255,255,0.85);
    font-size: 0.75rem;
    font-weight: 700;
}

/* Social icons pinned right */
.footer-social {
    position: absolute;
    right: 0;
    display: flex;
    gap: 14px;
}

.footer-social-link {
    color: rgba(255,255,255,0.95);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1;
}

.footer-social-link:hover {
    color: #d4af37;
}

/* Mobile: stack and center */
@media (max-width: 768px) {
    .footer-inner {
        flex-direction: column;
        gap: 10px;
    }

    .footer-social {
        position: static;
    }
}

/* ================================
   END: Site Footer
   ================================ */