* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #213126;
    background-color: #f3f7ef;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

.container {
    width: min(1100px, 92%);
    margin: 0 auto;
}

.narrow {
    width: min(760px, 100%);
    margin: 0 auto;
}

.section {
    padding: 70px 0;
}

.alt-section {
    background-color: #e6f0e2;
}

.center-text {
    text-align: center;
}

.site-header {
    background-color: #f3f7ef;
    border-bottom: 1px solid #c8d7c3;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.nav a {
    color: #2e4d39;
    font-weight: 600;
    position: relative;
    padding: 0 14px;
}

.nav a:not(:last-child)::after {
    content: "•";
    position: absolute;
    right: -4px;
    color: #7a927d;
    font-size: 1rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #2f6b4f;
}

.brand-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.nav-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    gap: 20px;
}

.nav a {
    color: #2e4d39;
    font-weight: 600;
}

.hero {
    min-height: 78vh;
    background-image: url('images/hero/clubhouse.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-overlay {
    background: linear-gradient(rgba(22, 42, 28, 0.45), rgba(22, 42, 28, 0.55));
    min-height: 78vh;
    display: flex;
    align-items: center;
}

.hero-content {
    color: #ffffff;
    max-width: 760px;
    padding: 60px 0;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 12px;
    color: #d9f0d3;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.6rem);
    line-height: 1.05;
    margin: 0 0 18px;
}

.hero-text {
    font-size: 1.15rem;
    max-width: 650px;
    margin-bottom: 28px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 14px 24px;
    border-radius: 999px;
    font-weight: 700;
    transition: 0.2s ease;
}

.btn-primary {
    background-color: #9ad17b;
    color: #183020;
}

.btn-primary:hover {
    background-color: #87bf68;
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.24);
}

.section-heading {
    text-align: center;
    margin-bottom: 36px;
}

.section-heading h2,
.intro h2,
.course-highlight h2,
.cta h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: #2f6b4f;
    margin-bottom: 10px;
}

.section-heading p {
    color: #4c6a57;
    margin: 0;
}

.intro p,
.course-highlight p,
.cta p {
    font-size: 1.05rem;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.benefit-card {
    background-color: #ffffff;
    padding: 28px 22px;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(33, 49, 38, 0.08);
    border: 1px solid #d8e5d3;
}

.benefit-card h3 {
    margin-top: 0;
    margin-bottom: 12px;
    color: #2f6b4f;
    font-size: 1.2rem;
}

.split-layout {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
    align-items: center;
}

.split-image img {
    border-radius: 20px;
    box-shadow: 0 10px 26px rgba(33, 49, 38, 0.15);
}

.text-link {
    color: #2f6b4f;
    font-weight: 700;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.gallery-item img {
    border-radius: 20px;
    box-shadow: 0 10px 26px rgba(33, 49, 38, 0.15);
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
}

.footer-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

@media (max-width: 900px) {
    .benefit-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .split-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .nav-wrap {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero {
        min-height: 70vh;
    }

    .hero-overlay {
        min-height: 70vh;
    }

    .benefit-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
}
.page-hero {
    padding: 70px 0 50px;
    background: linear-gradient(180deg, #eef6e9 0%, #e2efdc 100%);
}

.calendar-hero {
    border-bottom: 1px solid #c8d7c3;
}

.page-hero h1 {
    font-size: clamp(2.4rem, 5vw, 4rem);
    color: #2f6b4f;
    margin-bottom: 14px;
}

.page-hero-text {
    font-size: 1.1rem;
    color: #415b4a;
    max-width: 720px;
    margin: 0 auto;
}

.dark-eyebrow {
    color: #4f715d;
}

.events-logo {
    width: min(520px, 100%);
    margin: 0 auto 28px;
    border-radius: 18px;
    box-shadow: 0 10px 24px rgba(33, 49, 38, 0.12);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.calendar-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 22px;
    border: 1px solid #d8e5d3;
    box-shadow: 0 8px 24px rgba(33, 49, 38, 0.08);
}

.calendar-card h3 {
    margin-top: 0;
    margin-bottom: 16px;
    color: #2f6b4f;
    font-size: 1.4rem;
    text-align: center;
}

.calendar-card img {
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(33, 49, 38, 0.10);
}

@media (max-width: 900px) {
    .calendar-grid {
        grid-template-columns: 1fr;
    }
}