:root {
    --membership-black: #000;
    --membership-gold: #ccb957;
    --membership-green: #025602;
    --membership-white: #fff;
}

.membership-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #000;
    overflow: hidden;
    padding: 10vw 0;
}

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

.membership-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.membership-hero-inner {
    position: relative;
    z-index: 3;
}

.membership-hero h1 {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(2.4rem, 6vw, 5.6rem);
    text-transform: uppercase;
    color: var(--membership-white);
    letter-spacing: 0.04em;
    margin: 0;
}

.membership-details,
.membership-details-alt {
    background: var(--membership-black);
    padding: 70px 0 90px;
}

.details-title {
    text-align: center;
    margin-bottom: 18px;
}

.details-title h2 {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(2rem, 4.6vw, 3rem);
    text-transform: uppercase;
    color: var(--membership-gold);
    letter-spacing: 0.04em;
    margin: 0;
    text-decoration: underline;
    text-decoration-color: transparent;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.details-card {
    background: #ffffff;
    border-radius: 50px;
    padding: 26px 32px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.details-card.full {
    margin-top: 20px;
}

.details-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.05rem;
    color: #000;
}

.details-card li {
    padding: 6px 0;
}

.details-card li::before {
    content: "○";
    margin-right: 10px;
}

.membership-cta {
    position: relative;
    background: var(--membership-green);
    padding: 100px 0;
    text-align: center;
    color: var(--membership-white);
    overflow: hidden;
}

.membership-cta-bg {
    position: absolute;
    inset: 0;
    background: url("https://golfenvy.com/wp-content/uploads/2025/04/Image-2.png")
        center/cover no-repeat;
    opacity: 0.80;
}

.membership-cta-inner {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.membership-cta h2 {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(2rem, 4.4vw, 3.2rem);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.membership-cta p {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(1rem, 2.6vw, 1.3rem);
    margin-bottom: 28px;
    line-height: 1.4;
}

.membership-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 50px;
    border-radius: 999px;
    background: var(--membership-gold);
    color: #000;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-family: "Oswald", sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.membership-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(204, 185, 87, 0.35);
}

.membership-btn.alt {
    background: var(--membership-gold);
    color: #000;
}

.about-cta {
    position: relative;
    background-image: linear-gradient(180deg, #000 0%, rgba(19, 23, 54, 0) 100%),
        url("https://golfenvy.com/wp-content/uploads/2025/04/66b266f4ea44fc74e1af93ca.jpg");
    background-size: cover;
    background-position: center;
    padding: 110px 0;
    text-align: center;
    color: #fff;
}

.about-cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.about-cta-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.about-cta-logo {
    max-width: 260px;
    width: 100%;
}

.about-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.about-cta-btn {
    padding: 16px 40px;
    border-radius: 50px;
    background: #ccb957;
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
}

.about-cta-contact p {
    margin: 0.3rem 0;
    font-size: 1rem;
}

.about-cta-social {
    display: flex;
    gap: 1rem;
}

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

@media (max-width: 980px) {
    .details-card {
        border-radius: 36px;
        padding: 24px 26px;
    }

    .membership-btn {
        padding: 16px 40px;
    }
}

@media (max-width: 576px) {
    .membership-hero {
        min-height: 50vh;
    }

    .membership-cta {
        padding: 80px 0;
    }

    .membership-btn {
        width: 100%;
    }

    .about-cta {
        padding: 90px 0;
    }

    .about-cta-logo {
        max-width: 210px;
    }
}
