/* ============================
  CSS RESET & NORMALIZE
============================ */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
    box-sizing: border-box;
}
html { font-size: 16px; scroll-behavior: smooth; }
body {
    background: #F9F7ED;
    color: #2A323B;
    font-family: 'Roboto', Arial, sans-serif;
    min-height: 100vh;
    line-height: 1.6;
    font-size: 1rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; border: 0; }
ul, ol { list-style: none; }
a { text-decoration: none; color: inherit; }
table { border-collapse: collapse; width: 100%; }
button, input, select, textarea {
    font: inherit;
    background: none;
    border: none;
    outline: none;
    appearance: none;
    color: inherit;
    border-radius: 0;
}
:focus-visible { outline: 2px solid #7DC242; outline-offset: 2px; }

/* =======================
  BASE & THEME VARIABLES
======================= */
:root {
    --color-primary: #235066;
    --color-secondary: #7DC242;
    --color-accent: #F9F7ED;
    --color-dark: #2A323B;
    --color-brown: #8C7150;
    --color-forest: #2E4A34;
    --color-sand: #E4E1D3;
    --color-success: #7DC242;
    --color-warning: #DAAC56;
    --color-error: #D45D47;
    --shadow-default: 0px 2px 14px rgba(46,74,52, 0.08);
    --shadow-card: 0 4px 22px rgba(35, 80, 102, 0.09);
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 10px;
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
    --font-body: 'Roboto', Arial, Helvetica, sans-serif;
}

/* ========================
  TYPOGRAPHY
======================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--color-forest);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
}
h1 { font-size: 2.375rem; margin-bottom: 0.65em; }
h2 { font-size: 1.625rem; margin-bottom: 0.5em; }
h3 { font-size: 1.125rem; margin-bottom: 0.2em; }
h4, h5, h6 { font-size: 1rem; margin-bottom: 0.2em; }
@media (min-width: 560px) {
    h1 { font-size: 2.75rem; }
    h2 { font-size: 2rem; }
}
.subheadline, .updated-schedule-notice, .change-history, .reminder-note {
    color: var(--color-primary);
    font-size: 1.125rem;
    margin-bottom: 1.2em;
    font-weight: 500;
}
p, li, blockquote, td, th, dd {
    font-family: var(--font-body);
    color: var(--color-dark);
    font-size: 1rem;
    line-height: 1.7;
}
a, .main-nav a, .mobile-nav a {
    color: var(--color-primary);
    font-weight: 500;
    transition: color 0.2s;
}
a:hover, .main-nav a:hover, .footer-nav a:hover, .mobile-nav a:hover {
    color: var(--color-secondary);
}

/* =====================
  LAYOUT CONTAINERS
===================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}
.content-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
main {
    padding-bottom: 40px;
}

.section {
    margin-bottom: 60px;
    padding: 40px 20px;
    background: none;
}
.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.card {
    margin-bottom: 20px;
    position: relative;
}
.content-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}
.text-image-section {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}
.testimonial-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
}
.feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

/* ==============
  HERO SECTION
=============== */
.hero {
    background: linear-gradient(120deg, var(--color-accent) 80%, #f3f7e2 100%);
    padding: 60px 0 36px 0;
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero .content-wrapper {
    align-items: center;
    text-align: center;
    gap: 18px;
}

/* ================================
  NAVIGATION & HEADER STYLES
================================ */
header {
    background: var(--color-accent);
    box-shadow: 0 2px 8px rgba(35,80,102,0.03);
    z-index: 100;
    position: sticky;
    top: 0;
    width: 100%;
}
header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
    gap: 20px;
}
header img[alt="Frosted Valor Clubs"] {
    height: 44px;width: auto;
}
.main-nav {
    display: flex;
    align-items: center;
    gap: 22px;
}
.main-nav a {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--color-primary);
    background: none;
    border-radius: var(--radius-sm);
    padding: 6px 8px;
    transition: background 0.17s, color 0.17s;
}
.main-nav a.active, .main-nav a:hover {
    background: var(--color-secondary);
    color: #fff;
}
.cta-primary {
    background: var(--color-secondary);
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.0625rem;
    padding: 11px 26px;
    border-radius: 99px;
    font-weight: 700;
    box-shadow: var(--shadow-default);
    margin-left: 10px;
    transition: background 0.17s, box-shadow 0.19s, transform 0.16s;
    display: inline-block;
    letter-spacing: 0.01em;
    border: none;
    cursor: pointer;
}
.cta-primary:hover, .cta-primary:focus {
    background: var(--color-primary);
    color: #fff;
    box-shadow: 0 6px 18px rgba(53,105,66,0.16);
    transform: translateY(-2px) scale(1.03);
}

/* Burger Button */
.mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    padding: 8px 16px;
    background: #e6edd7;
    color: var(--color-primary);
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: background 0.19s, color 0.14s;
    z-index: 1400;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
    background: var(--color-secondary);
    color: #fff;
}

@media (min-width: 1024px) {
    .mobile-menu-toggle { display: none; }
}
@media (max-width: 1023px) {
    .main-nav { display: none; }
    .cta-primary {
        margin-left: auto;
        margin-right: 8px;
    }
}

/* ===========================
 MOBILE MENU OVERLAY SLIDER
=========================== */
.mobile-menu {
    position: fixed;
    top: 0; left: 0; bottom: 0; right: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(44,56,39, 0.93);
    z-index: 2000;
    transform: translateX(100%);
    transition: transform 0.34s cubic-bezier(0.7, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    pointer-events: none;
}
.mobile-menu.open {
    transform: translateX(0);
    pointer-events: auto;
}
.mobile-menu-close {
    background: var(--color-secondary);
    color: #fff;
    font-size: 2.1rem;
    width: 46px; height: 46px;
    border: none;
    border-radius: 50%;
    margin: 28px 24px 12px 0;
    cursor: pointer;
    display: flex;
    align-items: center; justify-content: center;
    transition: background 0.14s;
    z-index: 2010;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
    background: var(--color-primary);
}
.mobile-nav {
    background: #fff;
    box-shadow: 0 8px 24px rgba(44,56,39,0.08);
    border-radius: 32px 0 0 32px;
    padding: 32px 32px 24px 32px;
    min-width: 270px;
    width: 80vw;
    max-width: 370px;
    margin-top: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    z-index: 2020;
}
.mobile-nav a {
    font-family: var(--font-display);
    color: var(--color-primary);
    font-size: 1.15rem;
    font-weight: 600;
    padding: 10px 0 10px 0;
    width: 100%;
    border-radius: var(--radius-sm);
    transition: background 0.13s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
    background: var(--color-secondary);
    color: #fff;
}

@media (max-width: 480px) {
    .mobile-nav { padding: 24px 12px 12px 12px; min-width: 58vw; }
    .mobile-menu-close { margin: 20px 8px 4px 0; }
}

/* =============================
  SECTION / SPACING BASICS
============================= */
section, .section-cta, .testimonials, .thank-you-section, .faq-section, .legal-section, .section-values{
    margin-bottom: 60px;
    padding: 40px 20px;
}
.text-section { max-width: 720px; }

.feature-grid, .value-list, .club-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 24px 12px;
    margin-top: 18px;
    margin-bottom: 12px;
}
.feature-grid li, .value-list li, .club-categories li {
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    padding: 26px 22px 18px 22px;
    flex: 1 1 260px;
    min-width: 235px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    margin-bottom: 20px;
    border-left: 6px solid var(--color-secondary);
    transition: box-shadow 0.15s, transform 0.22s;
}
.feature-grid li:hover, .value-list li:hover, .club-categories li:hover {
    box-shadow: 0 6px 24px rgba(44,82,60,0.10);
    transform: translateY(-3px) scale(1.015);
}
.feature-grid img, .value-list img, .club-categories img {
    width: 38px; height: 38px;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(125,194,66,0.07);
    background: #f6faee;
}
@media (max-width: 900px) {
    .feature-grid, .value-list, .club-categories {
        gap: 18px 0;
    }
}
@media (max-width: 720px) {
    .feature-grid, .value-list, .club-categories {
        flex-direction: column;
        gap: 18px 0;
    }
    .feature-grid li, .value-list li, .club-categories li {
        min-width: unset;
    }
}

/********************
   TEXT / LISTS
*********************/
ul, ol {
    margin-bottom: 1.1em;
    padding-left: 22px;
}
ul li, ol li {
    margin-bottom: 0.55em;
    position: relative;
}
ul li::before {
    content: '';
    display: inline-block;
    width: 10px; height: 10px;
    background: var(--color-secondary);
    border-radius: 50%;
    margin-right: 12px;
    vertical-align: middle;
}
ol li::before {
    display: none;
}

/********************
    FAQ, TABLES, ETC
*********************/
.faq-list dt {
    font-weight: bold;
    margin-top: 1.1em;
    font-family: var(--font-display);
    color: var(--color-primary);
}
.faq-list dd {
    margin-left: 0;
    margin-bottom: 0.9em;
}
.schedule-table {
    width: 100%;
    margin-bottom: 18px;
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    overflow-x: auto;
    font-size: 1rem;
}
.schedule-table th, .schedule-table td {
    padding: 13px 8px;
    border-bottom: 1px solid #e6edd7;
    text-align: left;
}
.schedule-table th {
    background: var(--color-accent);
    color: var(--color-primary);
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
}
.schedule-table tr:last-child td {
    border-bottom: none;
}

/***************
   MAP/ADDRESS
***************/
.location-map, .map-embed {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    background: #f3f7e2;
    border-radius: var(--radius-sm);
    padding: 18px 12px;
    margin-top: 6px;
    box-shadow: 0 2px 8px rgba(44,56,39,0.05);
}
.address-details li {
    display: flex;align-items: center;gap: 12px;margin-bottom: 10px;
}
.address-details img { width: 24px; height: 24px; }

/***************************
   TESTIMONIALS & QUOTES
****************************/
.testimonials {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 28px rgba(46,74,52,0.07);
    padding: 36px 20px;
}
.testimonials .content-wrapper {
    gap: 24px;
}
.testimonial-card {
    background: #F0F6E6;
    border-radius: var(--radius-md);
    box-shadow: 0 2px 12px rgba(125,194,66,0.07);
    margin-bottom: 20px;
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    min-width: 220px;
    max-width: 490px;
    color: var(--color-dark);
}
.testimonial-card blockquote {
    font-family: var(--font-display);
    font-size: 1.1625rem;
    color: var(--color-dark);
    font-style: italic;
    line-height: 1.42;
    margin-bottom: 6px;
    quotes: "\201C" "\201D" "\2018" "\2019";
}
.testimonial-card .testimonial-meta {
    font-size: 1rem;
    color: var(--color-brown);
    opacity: 0.85;
    font-family: var(--font-body);
}

/*********************
   FOOTER STYLES
**********************/
footer {
    background: var(--color-forest);
    color: #fff;
    padding: 0 0 4px 0;
    box-shadow: 0 -5px 18px rgba(44,78,39,0.06);
}
footer p {
    color: white;
}
footer .container {
    padding-top: 26px; padding-bottom: 16px;
}
footer .content-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 32px;
    justify-content: space-between;
    margin-bottom: 18px;
}
.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 11px;
}
.footer-nav a {
    color: #fff;
    font-family: var(--font-body);
    opacity: 0.86;
    font-size: 1rem;
    transition: opacity 0.15s, color 0.15s;
}
.footer-nav a:hover,
.footer-nav a:focus {
    opacity: 1;
    color: var(--color-secondary);
}
.footer-social {
    display: flex;
    align-items: center;
    gap: 14px;
}
.footer-social a img {
    background: #e6edd7;
    border-radius: 50%;
    width: 32px; height: 32px;
    padding: 6px;
    box-shadow: 0 1px 7px rgba(44,56,39,0.05);
    transition: background 0.13s;
}
.footer-social a:hover img { background: var(--color-secondary); }
.footer-legal {
    width: 100%;
    text-align: center;
    font-size: 0.96rem;
    opacity: 0.82;
}

/***************
  LEGAL SECTION
***************/
.legal-section {
    background: #f3f7e2;
    border-radius: var(--radius-md);
    box-shadow: 0 2px 11px rgba(44,82,60,0.065);
}
.legal-section .text-section {
    padding: 18px 0;
}

/******************
   BUTTONS/INPUTS
*******************/
button, .cta-primary {
    font-family: var(--font-display);
    font-weight: 700;
    outline: none;
    cursor: pointer;
    transition: background 0.17s, color 0.17s, box-shadow 0.16s;
}
button[disabled], .cta-primary[disabled] {
    cursor: not-allowed;
    opacity: 0.7;
}

/*******************
   MODALS & OVERLAYS
********************/
.modal, .cookie-modal {
    position: fixed;
    z-index: 3001;
    left: 0; top: 0; right: 0; bottom: 0;
    display: flex;
    align-items: center; justify-content: center;
    background: rgba(44,56,39,0.33);
    opacity: 0; pointer-events: none;
    transition: opacity 0.23s ease;
}
.modal.open, .cookie-modal.open { opacity: 1; pointer-events: auto; }
.cookie-modal-content {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 32px rgba(35,80,102,0.14);
    padding: 34px 26px;
    min-width: 320px; max-width: 96vw;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 18px;
    z-index: 3010;
    position: relative;
}
/* Cookie Modal toggles */
.cookie-modal .cookie-category {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 12px;
}
.cookie-modal .cookie-toggle {
    width: 40px; height: 22px;
    border-radius: 12px;
    background: #e6edd7;
    position: relative;
    transition: background 0.2s;
    cursor: pointer;
}
.cookie-modal .cookie-toggle input[type=checkbox] {
    width: 0; height: 0; opacity: 0;
    position: absolute;
}
.cookie-modal .cookie-toggle span {
    position: absolute;
    top: 2px; left: 2px;
    width: 18px; height: 18px;
    background: var(--color-secondary);
    border-radius: 50%;
    transition: left 0.18s cubic-bezier(0.8,0.1,0.1,0.9);
}
.cookie-modal .cookie-toggle input:checked + span {
    left: 20px;
    background: var(--color-primary);
}
.cookie-modal .cookie-category-label {
    flex: 1;
    font-size: 1rem;
    color: var(--color-primary);
}
.cookie-modal .cookie-toggle[aria-disabled=true],
.cookie-modal .cookie-toggle[aria-disabled=true] span {
    opacity: 0.5;
    background: #c8d1c3;
    pointer-events: none;
}

/****************************
   COOKIE CONSENT BANNER
*****************************/
.cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: #e4e1d3;
    color: var(--color-dark);
    padding: 20px 22px;
    box-shadow: 0 -6px 16px rgba(35,80,102,0.07);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2040;
    transition: opacity 0.25s;
    gap: 18px;
    font-size: 1.02rem;
}
.cookie-banner.hide { opacity: 0; pointer-events: none; }
.cookie-banner-actions {
    display: flex;
    gap: 13px;
    flex-wrap: wrap;
}
.cookie-banner button {
    border-radius: 42px;
    padding: 8px 21px;
    font-size: 1rem;
    background: var(--color-secondary);
    color: #fff;
    border: none;
    font-weight: 700;
    margin: 0 3px;
    box-shadow: 0 1px 5px rgba(44,82,60,0.06);
    transition: background 0.16s, color 0.16s;
    cursor: pointer;
}
.cookie-banner button.cookie-settings {
    background: var(--color-primary);
}
.cookie-banner button:hover, .cookie-banner button:focus {
    background: var(--color-primary);
    color: #fff;
}
.cookie-banner button.cookie-settings:hover, .cookie-banner button.cookie-settings:focus {
    background: #3a7252;
}

/***********************************
           RESPONSIVENESS
************************************/
@media (max-width: 1023px) {
    footer .content-wrapper, .content-grid {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
}
@media (max-width: 768px) {
    .container { padding-left: 10px; padding-right: 10px; }
    .section, section, .section-cta, .testimonials, .thank-you-section, .faq-section, .legal-section, .section-values {
        padding: 32px 8px;
        margin-bottom: 46px;
    }
    .text-image-section { flex-direction: column; gap: 18px; }
    .content-wrapper { gap: 14px; }
    h1 { font-size: 1.6rem; }
    h2 { font-size: 1.18rem; }
}
@media (max-width: 540px) {
    .hero { padding: 36px 0 16px 0; }
    .hero .content-wrapper { gap: 10px; }
    header .container { height: 60px; padding-left: 6px; padding-right: 6px; }
    .cta-primary { font-size: 1rem; padding: 9px 16px; }
    .content-wrapper { gap: 9px; }
}

/******************************************
           ORGANIC / NATURAL DETAILS
*******************************************/
.feature-grid li, .value-list li, .club-categories li, .testimonial-card, .legal-section, .hero, .section-cta {
    box-shadow: 0 3px 16px rgba(125,194,66,0.09), 0 2px 8px rgba(44,56,39,0.04);
}
.feature-grid li, .value-list li, .club-categories li {
    border-radius: 26px 38px 22px 38px/20px 36px 26px 38px;
    border-left: 6px solid var(--color-secondary);
}
.hero, .section-cta { border-radius: 58px 52px 48px 34px/44px 50px 46px 44px; }

/************************************
             MISC
*************************************/
.section-cta {
    background: #ecf7e8;
    text-align: center;
    border: 2px dashed rgba(125,194,66,0.1);
    padding-top: 42px; padding-bottom: 42px;
}
.reminder-note, .change-history {
    background: #f3f7e2;
    border-left: 4px solid var(--color-secondary);
    border-radius: 0 12px 12px 0;
    padding: 10px 12px;
    font-size: 0.97rem;
    margin-top: 18px;
    color: var(--color-forest);
}
.thankyou-message {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.9em;
    color: var(--color-primary);
}
.next-steps li {
    margin-bottom: 0.57em;
    font-size: 1rem;
}

/*****************************************
   ACCENT ELEMENTS (USED FOR TEXT-LIKE)
******************************************/
strong, b {
    color: var(--color-primary);
    font-weight: 700;
}
.updated-schedule-notice { color: var(--color-secondary); }

/**********************
    VISUAL EFFECTS
***********************/
.card:hover, .feature-grid li:hover, .value-list li:hover, .club-categories li:hover, .testimonial-card:hover {
    box-shadow: 0 14px 44px rgba(46,74,52,0.08), 0 2px 12px rgba(44,56,39,0.10);
    transform: translateY(-2px) scale(1.015);
}
.cta-primary:active, .cta-primary:focus {
    outline: 2px solid var(--color-secondary);
    background: var(--color-forest);
}

/*******************
   COURSE FILTERS
********************/
.course-filters {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 10px;
    flex-wrap: wrap;
}
.course-filters span {
    background: #e6edd7;
    padding: 3px 12px;
    border-radius: 8px;
    color: var(--color-forest);
    font-size: 0.98rem;
    font-weight: 500;
    margin-right: 3px;
    margin-bottom: 2px;
}

/********************
   RECENT CHANGES
**********************/
.recent-changes-list li {
    background: #F0F6E6;
    padding: 9px 16px;
    border-radius: 14px;
    margin-bottom: 12px;
    border-left: 5px solid var(--color-secondary);
}

/********************
    SCROLLBAR STYLE
********************/
::-webkit-scrollbar { width: 10px; background: #F9F7ED; }
::-webkit-scrollbar-thumb { background: #e6edd7; border-radius: 12px; }

/***********************
     PRINT STYLES
***********************/
@media print {
    * { color: #181e21 !important; background: #fff !important; }
    header, footer, .mobile-menu, .cookie-banner, .cookie-modal { display: none !important; }
}
