/*
Theme Name: Swellendam Golf Club
Theme URI: https://swellendamgolf.co.za
Description: Premium WordPress theme for Swellendam Golf Club featuring modern design with dark overlays, picture navigation blocks, and elegant typography.
Version: 1.0.0
Author: Your Name
Author URI: https://yoursite.com
Text Domain: swellendam-golf
*/

/* ========================================
   CSS RESET & BASE STYLES
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* ========================================
   TYPOGRAPHY
======================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #1a4d2e;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

/* ========================================
   COLOR PALETTE
======================================== */
:root {
    --forest-green: #1a4d2e;
    --deep-green: #0d3320;
    --gold-accent: #c9a961;
    --brass-accent: #b8860b;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --overlay-dark: rgba(0, 0, 0, 0.5);
    --overlay-darker: rgba(0, 0, 0, 0.6);
    
    /* Additional variables for consistency */
    --color-forest-green: #1a4d2e;
    --color-gold: #c9a961;
    --color-white: #ffffff;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Lato', 'Helvetica Neue', sans-serif;
}

/* ========================================
   HEADER & NAVIGATION
======================================== */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), transparent);
    transition: all 0.3s ease;
}

/* Remove sticky header behavior */
.site-header.scrolled {
    position: absolute;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), transparent);
    padding: 1.5rem 0;
    box-shadow: none;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Container for the logo image and text */
.logo-link {
    display: flex;
    align-items: center;
    gap: 15px; /* Space between the image and the text */
    text-decoration: none;
}

/* Control the size of your logo image */
.header-logo-img {
    height: 50px; /* Adjust this height to fit your header perfectly */
    width: auto;
    display: block;
}

/* Ensure the text doesn't wrap awkwardly */
.logo-text {
    line-height: 1.2;
    white-space: nowrap;
}

/* Maintain your existing styling for the logo text */
.site-logo {
    font-family: 'Playfair Display', serif; /* */
    font-size: 1.8rem; /* */
    font-weight: 700; /* */
    color: var(--white); /* */
    letter-spacing: 1px; /* */
}

.site-logo span {
    color: var(--gold-accent); /* */
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.main-navigation a {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.5rem 0;
    position: relative;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-accent);
    transition: width 0.3s ease;
}

.main-navigation a:hover::after,
.main-navigation a.active::after {
    width: 100%;
}

/* Inside style.css: Updated Button Styling */
.btn-book-now {
    display: inline-block; /* Crucial for proper padding behavior */
    background: var(--gold-accent);
    color: var(--deep-green);
    padding: 1rem 2.2rem; /* Increased padding for a better shape */
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 4px solid var(--gold-accent);
    line-height: 1; /* Ensures text is vertically centered */
    transition: all 0.3s ease;
}

/* Ensure the list item doesn't add extra padding to the button */
.main-navigation ul li {
    display: flex;
    align-items: center;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

/* ========================================
   MOBILE NAVIGATION STYLES
======================================== */
@media (max-width: 992px) {
    .header-container {
        padding: 0 1rem;
    }
    
    .site-logo {
        font-size: 1.4rem;
    }
    
    .header-logo-img {
        height: 40px;
    }
    
    .logo-link {
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        flex-shrink: 0;
    }
    
    .main-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(13, 51, 32, 0.98);
        padding: 1rem 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }
    
    .main-navigation.active {
        display: block;
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
    }
    
    .main-navigation ul li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .main-navigation ul li:last-child {
        border-bottom: none;
    }
    
    .main-navigation a {
        display: block;
        padding: 1rem 1.5rem;
        text-align: center;
    }
    
    .main-navigation a::after {
        display: none;
    }
    
    .main-navigation .btn-book-now {
        margin: 1rem 1.5rem;
        text-align: center;
    }
    
    /* Logo adjustments for mobile */
    .header-container {
        padding: 0 0.75rem;
    }
    
    .site-logo {
        font-size: 1.1rem;
        max-width: calc(100% - 60px);
    }
    
    .header-logo-img {
        height: 35px;
    }
    
    .logo-link {
        gap: 8px;
    }
    
    .logo-text {
        white-space: normal;
        line-height: 1.1;
    }
    
    .site-header {
        padding: 0.75rem 0;
    }
}

@media (max-width: 480px) {
    .site-logo {
        font-size: 0.95rem;
    }
    
    .header-logo-img {
        height: 30px;
    }
    
    .logo-text {
        font-size: 0.9rem;
    }
}

/* ========================================
   HERO SECTION WITH DARK OVERLAY
======================================== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* CRITICAL: Dark Overlay Effect */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.6));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 900px;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 4.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: rgba(255,255,255,0.95);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero-cta {
    display: inline-flex;
    gap: 1.5rem;
}

.btn-primary {
    background: var(--gold-accent);
    color: var(--deep-green);
    padding: 1.2rem 2.5rem;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
    border: 2px solid var(--gold-accent);
    cursor: pointer;
}

.btn-primary:hover {
    background: transparent;
    color: var(--gold-accent);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201, 169, 97, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 1.2rem 2.5rem;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--deep-green);
}

/* ========================================
   PICTURE NAVIGATION BLOCKS
======================================== */
.picture-blocks-section {
    padding: 0;
    background: var(--light-gray);
}

.picture-blocks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.picture-block {
    position: relative;
    height: 400px;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

/* CRITICAL: Dark Overlay for Picture Blocks */
.picture-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5));
    transition: all 0.4s ease;
    z-index: 1;
}

.picture-block:hover::before {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.4));
}

.picture-block-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 2rem;
}

.picture-block-content h3 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 0.8rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.picture-block-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: rgba(255,255,255,0.9);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.picture-block-content .btn-learn-more {
    display: inline-block;
    padding: 0.8rem 2rem;
    border: 2px solid var(--gold-accent);
    color: var(--gold-accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.picture-block-content .btn-learn-more:hover {
    background: var(--gold-accent);
    color: var(--deep-green);
    transform: translateY(-2px);
}

.picture-block:hover {
    transform: scale(1.02);
    transition: transform 0.4s ease;
}

/* ========================================
   UPCOMING EVENTS SECTION
======================================== */
.events-section {
    padding: 5rem 2rem;
    background: var(--white);
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    color: var(--forest-green);
    margin-bottom: 1rem;
}

.section-divider {
    width: 80px;
    height: 3px;
    background: var(--gold-accent);
    margin: 0 auto 1.5rem;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.event-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.event-image {
    position: relative;
    height: 250px;
    background-size: cover;
    background-position: center;
}

.event-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.5));
}

.event-date {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gold-accent);
    color: var(--deep-green);
    padding: 0.8rem 1.2rem;
    border-radius: 4px;
    font-weight: 700;
    text-align: center;
    z-index: 2;
}

.event-date .day {
    font-size: 1.8rem;
    display: block;
    line-height: 1;
}

.event-date .month {
    font-size: 0.9rem;
    text-transform: uppercase;
}

.event-content {
    padding: 2rem;
}

.event-content h3 {
    color: var(--forest-green);
    margin-bottom: 1rem;
}

.event-content p {
    color: #666;
    margin-bottom: 1.5rem;
}

.event-meta {
    display: flex;
    gap: 1.5rem;
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.event-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-event-details {
    display: inline-block;
    color: var(--forest-green);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.btn-event-details:hover {
    color: var(--gold-accent);
}

/* ========================================
   FOOTER
======================================== */
.site-footer {
    background: var(--deep-green);
    color: var(--white);
    padding: 3rem 2rem 1.5rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--gold-accent);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-section p,
.footer-section li {
    color: rgba(255,255,255,0.8);
    margin-bottom: 0.8rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: rgba(255,255,255,0.8);
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--gold-accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */
@media (max-width: 1024px) {
    .picture-blocks-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .main-navigation {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .picture-blocks-grid {
        grid-template-columns: 1fr;
    }
    
    .picture-block {
        height: 300px;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */

/* About Hero Section */
.about-hero {
    height: 60vh;
    min-height: 500px;
    background-color: var(--color-forest-green); /* Fallback color */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
}

.about-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-white);
    max-width: 800px;
    padding: 0 20px;
}

.about-hero .hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.about-hero .hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 1px;
    opacity: 0.95;
}

/* About Content Section */
.about-content-section {
    padding: 80px 0;
    background: var(--color-white);
}

.about-content-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Titles */
.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-forest-green);
    margin-bottom: 2rem;
    font-weight: 700;
}

.section-title.centered {
    text-align: center;
}

/* Welcome Section */
.about-welcome {
    margin-bottom: 80px;
    text-align: center;
}

.about-welcome .welcome-text {
    max-width: 900px;
    margin: 0 auto;
}

.about-welcome .lead-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--color-forest-green);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.about-welcome p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1.2rem;
}

/* Course History Section */
.about-history {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

.about-history .history-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1.2rem;
}

.about-history .history-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.about-history .history-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-history .history-image:hover img {
    transform: scale(1.05);
}

/* Recognition Section */
.about-recognition {
    margin-bottom: 80px;
    padding: 60px 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 8px;
}

.about-recognition .recognition-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 3rem;
}

.recognition-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.recognition-card {
    background: var(--color-white);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--color-gold);
}

.recognition-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.recognition-icon {
    color: var(--color-gold);
    margin-bottom: 20px;
}

.recognition-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-forest-green);
    margin-bottom: 15px;
}

.recognition-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 10px;
}

.recognition-source {
    font-size: 0.9rem;
    font-style: italic;
    color: #777;
    margin-bottom: 20px;
}

.recognition-link {
    display: inline-block;
    color: var(--color-gold);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.recognition-link:hover {
    color: var(--color-forest-green);
}

/* Location Highlight */
.about-location {
    margin-bottom: 0;
    padding-bottom: 80px;
}

.about-location .location-content {
    text-align: center;
}

.location-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.location-feature {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 15px;
}

.location-feature h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--color-forest-green);
    margin-bottom: 10px;
}

.location-feature p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* Call to Action Section */
.about-cta-section {
    padding: 0;
    background: var(--color-white);
}

.about-cta {
    text-align: center;
    padding: 80px 40px;
    background: linear-gradient(135deg, #1a4d2e 0%, #0d3320 100%);
    border-radius: 0;
    color: #ffffff;
    margin: 0;
}

.about-cta h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.about-cta .cta-lead {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.about-cta p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.about-cta .btn {
    padding: 18px 40px;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: 600;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-cta .btn-primary {
    background: #c9a961;
    color: #0d3320;
    border: 2px solid #c9a961;
}

.about-cta .btn-primary:hover {
    background: transparent;
    color: #c9a961;
    border: 2px solid #c9a961;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(201, 169, 97, 0.3);
}

.about-cta .btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.about-cta .btn-secondary:hover {
    background: #ffffff;
    color: #0d3320;
    border: 2px solid #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-hero .hero-title {
        font-size: 3rem;
    }

    .about-history {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .recognition-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .location-features {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        height: 50vh;
        min-height: 400px;
    }

    .about-hero .hero-title {
        font-size: 2.5rem;
    }

    .about-hero .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-content-section {
        padding: 60px 0;
    }

    .about-welcome,
    .about-history,
    .about-recognition {
        margin-bottom: 60px;
    }

    .about-location {
        padding-bottom: 60px;
    }

    .about-cta {
        padding: 50px 20px;
    }

    .about-cta h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .about-hero .hero-title {
        font-size: 2rem;
    }

    .about-hero .hero-subtitle {
        font-size: 1rem;
    }

    .about-welcome .lead-text {
        font-size: 1.1rem;
    }

    .about-welcome p,
    .about-history .history-content p {
        font-size: 1rem;
    }
}

/* ==========================================================================
   Course Page Variables (inherits from main theme)
   ========================================================================== */

:root {
    --color-forest: #1a472a;
    --color-forest-dark: #0d2818;
    --color-gold: #c9a227;
    --color-gold-light: #d4b848;
    --color-cream: #faf8f5;
    --color-white: #ffffff;
    --color-text: #333333;
    --color-text-light: #666666;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Lato', 'Helvetica Neue', sans-serif;
    --transition: all 0.3s ease;
}


/* ==========================================================================
   Course Hero Section
   ========================================================================== */

.course-hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('images/course-hero.jpg') center center / cover no-repeat;
    color: var(--color-white);
}

.course-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(13, 40, 24, 0.7) 0%,
        rgba(26, 71, 42, 0.6) 50%,
        rgba(13, 40, 24, 0.8) 100%
    );
    z-index: 1;
}

.course-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 2rem;
}

.course-hero .hero-subtitle {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

.course-hero .hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.course-hero .hero-description {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.6;
    margin: 0 auto 3rem;
    max-width: 600px;
    opacity: 0.9;
}

.course-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
}

.stat-item {
    text-align: center;
}

.stat-item .stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1;
}

.stat-item .stat-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 0.5rem;
    opacity: 0.8;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-white);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
    animation: bounce 2s infinite;
}

.scroll-indicator:hover {
    opacity: 1;
    color: var(--color-gold);
}

.scroll-indicator span {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}


/* ==========================================================================
   Course Overview Section
   ========================================================================== */

.course-overview {
    padding: 8rem 0;
    background: var(--color-cream);
}

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

.section-subtitle {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--color-forest-dark);
    margin: 0 0 1.5rem;
    line-height: 1.2;
}

.overview-content p {
    font-family: var(--font-body);
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.course-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2.5rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--color-forest);
}

.feature svg {
    color: var(--color-gold);
    flex-shrink: 0;
}

.overview-image {
    position: relative;
}

.image-frame {
    position: relative;
    overflow: hidden;
}

.image-frame::before {
    content: '';
    position: absolute;
    top: -1rem;
    right: -1rem;
    width: 100%;
    height: 100%;
    border: 3px solid var(--color-gold);
    z-index: -1;
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
}


/* ==========================================================================
   Nine Section Headers
   ========================================================================== */

.nine-section {
    padding-bottom: 6rem;
}

.nine-header {
    padding: 5rem 0;
    text-align: center;
    background: var(--color-forest-dark);
    color: var(--color-white);
    margin-bottom: 4rem;
}

.nine-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.nine-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin: 0 0 1rem;
    /* Add this line below to force the color to white */
    color: #ffffff !important; 
}

.nine-description {
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 300;
    opacity: 0.85;
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}


/* ==========================================================================
   Holes Grid
   ========================================================================== */

.holes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}


/* ==========================================================================
   Hole Cards
   ========================================================================== */

.hole-card {
    background: var(--color-white);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.hole-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.hole-image {
    position: relative;
    width: 100%;
    /* This ensures the block is always a perfect 4:3 rectangle */
    aspect-ratio: 4 / 3; 
    overflow: hidden;
    background-color: #0d2818; /* Adds a dark green background for any tiny gaps */
}

.hole-image img {
    width: 100%;
    height: 100%;
    /* Change this BACK to cover now that the box matches the image shape */
    object-fit: cover; 
    transition: transform 0.6s ease;
}

.hole-card:hover .hole-image img {
    transform: scale(1.08);
}

.hole-image .hole-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to top,
        rgba(13, 40, 24, 0.8) 0%,
        rgba(13, 40, 24, 0.2) 50%,
        rgba(13, 40, 24, 0.1) 100%
    );
    z-index: 1;
}

.hole-number {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    z-index: 2;
    text-align: left;
}

.hole-number .number {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hole-number .label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-top: 0.25rem;
}

.hole-details {
    padding: 1.75rem;
}

.hole-stats {
    display: flex;
    justify-content: space-between;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #eee;
    margin-bottom: 1.25rem;
}

.hole-stats .stat {
    text-align: center;
    flex: 1;
}

.hole-stats .stat:not(:last-child) {
    border-right: 1px solid #eee;
}

.hole-stats .stat-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-forest-dark);
    line-height: 1;
}

.hole-stats .stat-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-text-light);
    margin-top: 0.5rem;
}

.hole-tip {
    background: var(--color-cream);
    padding: 1rem 1.25rem;
    margin: 0 -1.75rem -1.75rem;
}

.tip-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
}

.tip-label svg {
    width: 14px;
    height: 14px;
}

.hole-tip p {
    font-family: var(--font-body);
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--color-text);
    margin: 0;
    font-style: italic;
}


/* ==========================================================================
   Turn Section (Halfway House)
   ========================================================================== */

.turn-section {
    position: relative;
    padding: 6rem 0;
    background: url('images/halfway-house.jpg') center center / cover no-repeat fixed;
    text-align: center;
    color: var(--color-white);
}

.turn-section .turn-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(13, 40, 24, 0.9) 0%,
        rgba(26, 71, 42, 0.85) 100%
    );
}

.turn-section .container {
    position: relative;
    z-index: 1;
}

.turn-content {
    max-width: 600px;
    margin: 0 auto;
}

.turn-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.turn-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin: 0 0 1.5rem;
    /* Add this line below to force the color to white */
    color: #ffffff !important;
}

.turn-section p {
    font-family: var(--font-body);
    font-size: 1.125rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 2rem;
}


/* ==========================================================================
   Scorecard Section
   ========================================================================== */

.scorecard-section {
    padding: 6rem 0;
    background: var(--color-white);
    text-align: center;
}

.scorecard-wrapper {
    overflow-x: auto;
    margin: 3rem 0 1.5rem;
    -webkit-overflow-scrolling: touch;
}

.scorecard {
    width: 100%;
    min-width: 900px;
    border-collapse: collapse;
    font-family: var(--font-body);
    font-size: 0.875rem;
}

.scorecard th,
.scorecard td {
    padding: 1rem 0.5rem;
    text-align: center;
    border: 1px solid #e5e5e5;
}

.scorecard thead th {
    background: var(--color-forest-dark);
    color: var(--color-white);
    font-weight: 600;
    font-size: 0.8125rem;
    letter-spacing: 1px;
}

.scorecard thead th:first-child {
    text-align: left;
    padding-left: 1rem;
}

.scorecard thead th.out,
.scorecard thead th.in {
    background: var(--color-forest);
}

.scorecard thead th.total {
    background: var(--color-gold);
    color: var(--color-forest-dark);
}

.scorecard tbody td:first-child {
    background: #f8f8f8;
    font-weight: 600;
    text-align: left;
    padding-left: 1rem;
    color: var(--color-forest-dark);
}

.scorecard tbody td.out,
.scorecard tbody td.in {
    background: #f0f5f2;
    font-weight: 600;
    color: var(--color-forest);
}

.scorecard tbody td.total {
    background: #fdf8e7;
    font-weight: 700;
    color: var(--color-forest-dark);
}

.scorecard .par-row td {
    color: var(--color-forest-dark);
}

.scorecard .distance-row td {
    color: var(--color-text-light);
    font-size: 0.8125rem;
}

.scorecard .si-row td {
    color: var(--color-text-light);
    font-size: 0.8125rem;
}

.scorecard-legend {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.scorecard-legend strong {
    color: var(--color-forest);
}


/* ==========================================================================
   Course CTA Section
   ========================================================================== */

.course-cta {
    position: relative;
    padding: 8rem 0;
    background: url('images/course-cta-bg.jpg') center center / cover no-repeat fixed;
    text-align: center;
    color: var(--color-white);
}

.course-cta .cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to right,
        rgba(13, 40, 24, 0.9) 0%,
        rgba(26, 71, 42, 0.85) 100%
    );
}

.course-cta .container {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin: 0 0 1rem;
    /* Add the line below */
    color: #ffffff !important;
}

.cta-content p {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 300;
    opacity: 0.9;
    margin: 0 auto 2.5rem;
    max-width: 500px;
}

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


/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 1rem 2.5rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--color-gold);
    color: var(--color-forest-dark);
    border-color: var(--color-gold);
}

.btn-primary:hover {
    background: var(--color-gold-light);
    border-color: var(--color-gold-light);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.btn-outline:hover {
    background: var(--color-white);
    color: var(--color-forest-dark);
    transform: translateY(-2px);
}


/* ==========================================================================
   Container
   ========================================================================== */

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}


/* ==========================================================================
   Responsive Styles
   ========================================================================== */

@media (max-width: 1200px) {
    .holes-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 992px) {
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .overview-image {
        order: -1;
    }
    
    .holes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .course-stats {
        gap: 2.5rem;
    }
    
    .stat-item .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .course-hero {
        min-height: 600px;
    }
    
    .course-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .stat-item {
        display: flex;
        align-items: baseline;
        justify-content: center;
        gap: 0.75rem;
    }
    
    .stat-item .stat-number {
        font-size: 2rem;
    }
    
    .stat-item .stat-label {
        margin-top: 0;
    }
    
    .holes-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .course-features {
        grid-template-columns: 1fr;
    }
    
    .nine-header {
        padding: 3rem 0;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .course-hero .hero-content {
        padding: 0 1rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .hole-stats {
        flex-wrap: wrap;
    }
    
    .hole-stats .stat {
        flex: 0 0 33.333%;
        border-right: none !important;
        padding: 0.5rem 0;
    }
}

/* ==========================================================================
   CALENDAR PAGE STYLES - GRID VIEW
   Add this to the bottom of your style.css
   ========================================================================== */

/* ==========================================================================
   Calendar Hero Section
   ========================================================================== */

.calendar-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--color-white, #ffffff);
}

.calendar-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(13, 40, 24, 0.7) 0%,
        rgba(26, 71, 42, 0.6) 50%,
        rgba(13, 40, 24, 0.8) 100%
    );
    z-index: 1;
}

.calendar-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.calendar-hero .hero-subtitle {
    display: inline-block;
    font-family: var(--font-body, 'Lato', sans-serif);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-gold, #c9a227);
    margin-bottom: 1rem;
}

.calendar-hero .hero-title {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: clamp(3rem, 8vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 1rem;
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.calendar-hero .hero-description {
    font-family: var(--font-body, 'Lato', sans-serif);
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}


/* ==========================================================================
   Calendar Section
   ========================================================================== */

.calendar-section {
    padding: 4rem 0 5rem;
    background: var(--color-cream, #faf8f5);
}


/* ==========================================================================
   Month Navigation
   ========================================================================== */

.calendar-month-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 600px;
    margin: 0 auto 2rem;
    padding: 0 1rem;
}

.month-nav-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body, 'Lato', sans-serif);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-forest, #1a472a);
    text-decoration: none;
    padding: 0.75rem 1rem;
    border: 2px solid transparent;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.month-nav-btn:hover {
    background: var(--color-forest, #1a472a);
    color: var(--color-white, #ffffff);
}

.month-nav-btn .nav-text {
    text-transform: uppercase;
    letter-spacing: 1px;
}

.current-month-display {
    text-align: center;
}

.current-month-display .month-name {
    display: block;
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-forest-dark, #0d2818);
    line-height: 1;
}

.current-month-display .year-name {
    display: block;
    font-family: var(--font-body, 'Lato', sans-serif);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-gold, #c9a227);
    letter-spacing: 3px;
    margin-top: 0.25rem;
}


/* ==========================================================================
   Today Button
   ========================================================================== */

.today-button-wrap {
    text-align: center;
    margin-bottom: 2rem;
}

.today-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body, 'Lato', sans-serif);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-gold, #c9a227);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid var(--color-gold, #c9a227);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.today-btn:hover {
    background: var(--color-gold, #c9a227);
    color: var(--color-forest-dark, #0d2818);
}


/* ==========================================================================
   Calendar Grid
   ========================================================================== */

.calendar-grid-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--color-white, #ffffff);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.calendar-grid {
    width: 100%;
}

/* Day Headers */
.calendar-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background: var(--color-forest-dark, #0d2818);
}

.day-header {
    padding: 1rem 0.5rem;
    text-align: center;
    font-family: var(--font-body, 'Lato', sans-serif);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-white, #ffffff);
}

/* Calendar Body */
.calendar-body {
    border-left: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.calendar-row {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
}

/* Calendar Cells */
.calendar-cell {
    position: relative;
    min-height: 100px;
    padding: 0.5rem;
    border-right: 1px solid #e5e5e5;
    border-top: 1px solid #e5e5e5;
    background: var(--color-white, #ffffff);
    transition: all 0.2s ease;
}

.calendar-cell.empty {
    background: #f9f9f9;
}

.calendar-cell.today {
    background: rgba(201, 162, 39, 0.08);
}

.calendar-cell.today .day-number {
    background: var(--color-gold, #c9a227);
    color: var(--color-forest-dark, #0d2818);
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-cell.has-events {
    cursor: pointer;
}

.calendar-cell.has-events:hover {
    background: rgba(26, 71, 42, 0.05);
    transform: scale(1.02);
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.day-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body, 'Lato', sans-serif);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text, #333333);
    min-width: 28px;
    height: 28px;
}

/* Event Indicators (dots) */
.event-indicators {
    display: flex;
    gap: 4px;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.event-dot {
    width: 8px;
    height: 8px;
    background: var(--color-gold, #c9a227);
    border-radius: 50%;
}

.event-more-dots {
    font-family: var(--font-body, 'Lato', sans-serif);
    font-size: 0.625rem;
    font-weight: 700;
    color: var(--color-gold, #c9a227);
}

/* Event Preview List (on larger screens) */
.event-preview-list {
    margin-top: 0.5rem;
    display: none;
}

.event-preview-item {
    display: block;
    font-family: var(--font-body, 'Lato', sans-serif);
    font-size: 0.6875rem;
    font-weight: 500;
    color: var(--color-forest, #1a472a);
    padding: 0.25rem 0.375rem;
    background: rgba(26, 71, 42, 0.1);
    border-left: 2px solid var(--color-gold, #c9a227);
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.event-preview-more {
    display: block;
    font-family: var(--font-body, 'Lato', sans-serif);
    font-size: 0.625rem;
    font-weight: 600;
    color: var(--color-text-light, #666666);
    padding: 0.125rem 0.375rem;
}

/* Show event previews on larger screens */
@media (min-width: 768px) {
    .calendar-cell {
        min-height: 120px;
    }
    
    .event-preview-list {
        display: block;
    }
    
    .event-indicators {
        display: none;
    }
}


/* ==========================================================================
   Calendar Legend
   ========================================================================== */

.calendar-legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legend-indicator {
    width: 12px;
    height: 12px;
    border-radius: 2px;
}

.legend-indicator.today {
    background: var(--color-gold, #c9a227);
}

.legend-indicator.event {
    background: rgba(26, 71, 42, 0.1);
    border-left: 3px solid var(--color-gold, #c9a227);
}

.legend-text {
    font-family: var(--font-body, 'Lato', sans-serif);
    font-size: 0.8125rem;
    color: var(--color-text-light, #666666);
}


/* ==========================================================================
   Day Events Panel (Slide-out)
   ========================================================================== */

.day-events-panel {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s 0.3s, opacity 0.3s ease;
}

.day-events-panel.active {
    visibility: visible;
    opacity: 1;
    transition: visibility 0s, opacity 0.3s ease;
}

.panel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.panel-content {
    position: absolute;
    top: 0;
    right: -450px;
    width: 450px;
    max-width: 100%;
    height: 100%;
    background: var(--color-white, #ffffff);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.day-events-panel.active .panel-content {
    right: 0;
}

.panel-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: var(--color-white, #ffffff);
    cursor: pointer;
    transition: all 0.3s ease;
}

.panel-close:hover {
    transform: rotate(90deg);
}

.panel-header {
    background: var(--color-forest-dark, #0d2818);
    color: var(--color-white, #ffffff);
    padding: 2rem;
}

.panel-date-display {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.panel-day-number {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    color: var(--color-gold, #c9a227);
}

.panel-date-text {
    display: flex;
    flex-direction: column;
}

.panel-day-name {
    font-family: var(--font-body, 'Lato', sans-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-white, #ffffff);
}

.panel-month-year {
    font-family: var(--font-body, 'Lato', sans-serif);
    font-size: 0.875rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.25rem;
}

.panel-events-list {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    background: var(--color-cream, #faf8f5);
}

.events-count {
    font-family: var(--font-body, 'Lato', sans-serif);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-text-light, #666666);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e5e5e5;
}


/* ==========================================================================
   Day Event Cards (in panel)
   ========================================================================== */

.day-event-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--color-white, #ffffff);
    margin-bottom: 1rem;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.day-event-card:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.day-event-card:last-child {
    margin-bottom: 0;
}

.event-time-badge {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 0.75rem;
    background: var(--color-forest-dark, #0d2818);
    color: var(--color-white, #ffffff);
    border-radius: 4px;
    min-width: 70px;
}

.event-time-badge svg {
    color: var(--color-gold, #c9a227);
}

.event-time-badge span {
    font-family: var(--font-body, 'Lato', sans-serif);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-align: center;
}

.event-card-body {
    flex: 1;
    min-width: 0;
}

.event-card-title {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-forest-dark, #0d2818);
    margin: 0 0 0.5rem;
    line-height: 1.3;
}

.event-card-location {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-family: var(--font-body, 'Lato', sans-serif);
    font-size: 0.8125rem;
    color: var(--color-text-light, #666666);
    margin-bottom: 0.5rem;
}

.event-card-location svg {
    color: var(--color-gold, #c9a227);
    flex-shrink: 0;
}

.event-card-excerpt {
    font-family: var(--font-body, 'Lato', sans-serif);
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--color-text-light, #666666);
    margin: 0;
}

.event-card-arrow {
    flex-shrink: 0;
    color: var(--color-gold, #c9a227);
    transition: transform 0.3s ease;
    align-self: center;
}

.day-event-card:hover .event-card-arrow {
    transform: translateX(4px);
}


/* ==========================================================================
   No Events Day Message
   ========================================================================== */

.no-events-day {
    text-align: center;
    padding: 3rem 1rem;
}

.no-events-day svg {
    color: var(--color-gold, #c9a227);
    opacity: 0.5;
    margin-bottom: 1rem;
}

.no-events-day p {
    font-family: var(--font-body, 'Lato', sans-serif);
    font-size: 1rem;
    color: var(--color-text-light, #666666);
    margin: 0;
}


/* ==========================================================================
   SINGLE EVENT PAGE STYLES
   ========================================================================== */

.single-event-page {
    background: var(--color-cream, #faf8f5);
}


/* ==========================================================================
   Event Hero Section
   ========================================================================== */

.event-hero {
    position: relative;
    height: 60vh;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    color: var(--color-white, #ffffff);
}

.event-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(13, 40, 24, 0.6) 0%,
        rgba(13, 40, 24, 0.75) 100%
    );
}

.event-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.event-date-display {
    display: inline-block;
    background: var(--color-white, #ffffff);
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.event-date-display .day-name {
    display: block;
    font-family: var(--font-body, 'Lato', sans-serif);
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-gold, #c9a227);
}

.event-date-display .day-number {
    display: block;
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-forest-dark, #0d2818);
    line-height: 1.1;
    margin-bottom: 0.4rem;
}

.event-date-display .month-name {
    display: block;
    font-family: var(--font-body, 'Lato', sans-serif);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-text-light, #666666);
    margin-top: 1.5rem;
}

.event-hero .hero-title {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.past-event-badge {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-family: var(--font-body, 'Lato', sans-serif);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}


/* ==========================================================================
   Event Details Section
   ========================================================================== */

.event-details-section {
    padding: 5rem 0;
}

.event-details-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 4rem;
}


/* ==========================================================================
   Event Quick Info Bar
   ========================================================================== */

.event-quick-info {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 2rem;
    background: var(--color-white, #ffffff);
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.event-quick-info .info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.event-quick-info .info-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-cream, #faf8f5);
    border-radius: 50%;
}

.event-quick-info .info-icon svg {
    color: var(--color-gold, #c9a227);
}

.event-quick-info .info-text {
    display: flex;
    flex-direction: column;
}

.event-quick-info .info-label {
    font-family: var(--font-body, 'Lato', sans-serif);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-text-light, #666666);
    margin-bottom: 0.25rem;
}

.event-quick-info .info-value {
    font-family: var(--font-body, 'Lato', sans-serif);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-forest-dark, #0d2818);
}


/* ==========================================================================
   Event Description
   ========================================================================== */

.event-description {
    background: var(--color-white, #ffffff);
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.event-description h2 {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-forest-dark, #0d2818);
    margin: 0 0 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--color-gold, #c9a227);
}

.event-content-body {
    font-family: var(--font-body, 'Lato', sans-serif);
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--color-text, #333333);
}

.event-content-body p {
    margin-bottom: 1.5rem;
}

.event-content-body ul,
.event-content-body ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.event-content-body li {
    margin-bottom: 0.5rem;
}


/* ==========================================================================
   Event Sidebar
   ========================================================================== */

.event-sidebar {
    position: sticky;
    top: 100px;
}

.event-action-card {
    background: var(--color-forest-dark, #0d2818);
    color: var(--color-white, #ffffff);
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.event-action-card h3 {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 1rem;
    color: #ffffff;
}

.event-action-card p {
    font-family: var(--font-body, 'Lato', sans-serif);
    font-size: 0.9375rem;
    line-height: 1.6;
    opacity: 0.9;
    margin: 0 0 1.5rem;
}

.btn-full {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 0.75rem;
}

.btn-full:last-child {
    margin-bottom: 0;
}

.event-share-card {
    background: var(--color-white, #ffffff);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.event-share-card h4 {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-forest-dark, #0d2818);
    margin: 0 0 1rem;
}

.share-buttons {
    display: flex;
    gap: 0.75rem;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--color-white, #ffffff);
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-btn:hover {
    transform: translateY(-3px);
}

.share-btn.facebook {
    background: #3b5998;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.whatsapp {
    background: #25d366;
}

.share-btn.email {
    background: var(--color-forest, #1a472a);
}

.back-to-calendar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--color-white, #ffffff);
    color: var(--color-forest, #1a472a);
    text-decoration: none;
    font-family: var(--font-body, 'Lato', sans-serif);
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.back-to-calendar:hover {
    background: var(--color-forest, #1a472a);
    color: var(--color-white, #ffffff);
}


/* ==========================================================================
   Event Navigation
   ========================================================================== */

.event-navigation {
    padding: 0 0 5rem;
}

.event-navigation .nav-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.event-navigation .nav-card {
    display: block;
    padding: 2rem;
    background: var(--color-white, #ffffff);
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.event-navigation .nav-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.event-navigation .nav-empty {
    background: transparent;
    box-shadow: none;
}

.event-navigation .nav-direction {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body, 'Lato', sans-serif);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-gold, #c9a227);
    margin-bottom: 0.75rem;
}

.event-navigation .nav-next {
    text-align: right;
}

.event-navigation .nav-next .nav-direction {
    justify-content: flex-end;
}

.event-navigation .nav-title {
    display: block;
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-forest-dark, #0d2818);
    margin-bottom: 0.25rem;
}

.event-navigation .nav-date {
    display: block;
    font-family: var(--font-body, 'Lato', sans-serif);
    font-size: 0.875rem;
    color: var(--color-text-light, #666666);
}


/* ==========================================================================
   Responsive Styles
   ========================================================================== */

@media (max-width: 992px) {
    .event-details-grid {
        grid-template-columns: 1fr;
    }
    
    .event-sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .event-action-card {
        margin-bottom: 0;
    }
    
    .back-to-calendar {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .calendar-hero {
        height: 40vh;
        min-height: 300px;
    }
    
    .current-month-display .month-name {
        font-size: 2rem;
    }
    
    .month-nav-btn .nav-text {
        display: none;
    }
    
    .calendar-cell {
        min-height: 60px;
        padding: 0.25rem;
    }
    
    .day-number {
        font-size: 0.75rem;
        min-width: 24px;
        height: 24px;
    }
    
    .calendar-cell.today .day-number {
        width: 24px;
        height: 24px;
    }
    
    .event-preview-list {
        display: none !important;
    }
    
    .event-indicators {
        display: flex !important;
        margin-top: 0.25rem;
    }
    
    .event-dot {
        width: 6px;
        height: 6px;
    }
    
    .panel-content {
        width: 100%;
        right: -100%;
    }
    
    .panel-day-number {
        font-size: 3rem;
    }
    
    .event-sidebar {
        grid-template-columns: 1fr;
    }
    
    .event-quick-info {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .event-navigation .nav-grid {
        grid-template-columns: 1fr;
    }
    
    .event-navigation .nav-next {
        text-align: left;
    }
    
    .event-navigation .nav-next .nav-direction {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .calendar-section {
        padding: 2rem 0 3rem;
    }
    
    .calendar-month-nav {
        padding: 0;
    }
    
    .current-month-display .month-name {
        font-size: 1.5rem;
    }
    
    .current-month-display .year-name {
        font-size: 0.875rem;
    }
    
    .day-header {
        padding: 0.75rem 0.25rem;
        font-size: 0.625rem;
    }
    
    .calendar-cell {
        min-height: 50px;
    }
    
    .event-hero {
        height: 50vh;
        min-height: 350px;
    }
    
    .event-date-display {
        padding: 0.75rem 1rem;
    }
    
    .event-date-display .day-number {
        font-size: 2.5rem;
    }
    
    .event-description {
        padding: 1.5rem;
    }
    
    .share-buttons {
        justify-content: center;
    }
}

/* ============================================
   FEES PAGE STYLES
   Add this to the bottom of your style.css
   ============================================ */

/* ==========================================================================
   Fees Hero Section
   ========================================================================== */

.fees-hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--color-forest-dark, #0d2818) url('../images/fees-hero.jpg') center center / cover no-repeat;
    color: #fff;
}

.fees-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(13, 40, 24, 0.7) 0%,
        rgba(13, 40, 24, 0.8) 100%
    );
}

.fees-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.fees-hero .hero-subtitle {
    display: inline-block;
    font-family: var(--font-body, 'Lato', sans-serif);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-gold, #c9a227);
    margin-bottom: 1rem;
}

.fees-hero .hero-title {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin: 0 0 1rem;
    color: #fff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.fees-hero .hero-description {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.fees-period-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(201, 162, 39, 0.2);
    border: 2px solid var(--color-gold, #c9a227);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
}

.fees-period-badge .period-icon {
    font-size: 1.25rem;
}

.fees-period-badge .period-text {
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--color-gold, #c9a227);
}

/* ==========================================================================
   Fees Navigation
   ========================================================================== */

.fees-nav-section {
    background: var(--color-forest-dark, #0d2818);
    padding: 0;
    position: relative;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(201, 162, 39, 0.3);
}

.fees-nav {
    display: flex;
    justify-content: center;
    gap: 0;
}

.fees-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 1.25rem 2.5rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.fees-nav-item:hover,
.fees-nav-item:focus {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    border-bottom-color: var(--color-gold, #c9a227);
}

.fees-nav-item .nav-icon {
    font-size: 1.5rem;
}

.fees-nav-item .nav-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ==========================================================================
   Fees Sections Common
   ========================================================================== */

.fees-section {
    padding: 5rem 0;
}

.fees-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.fees-section .section-subtitle {
    display: inline-block;
    font-family: var(--font-body, 'Lato', sans-serif);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-gold, #c9a227);
    margin-bottom: 0.75rem;
}

.fees-section .section-title {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--color-forest-dark, #0d2818);
    margin: 0 0 1rem;
}

.fees-section .section-description {
    font-size: 1.125rem;
    color: var(--color-text-light, #666);
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================================================
   Membership Section
   ========================================================================== */

.membership-section {
    background: linear-gradient(180deg, #faf8f5 0%, #fff 100%);
}

/* Early Bird Notice */
.early-bird-notice {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.1) 0%, rgba(201, 162, 39, 0.05) 100%);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-left: 4px solid var(--color-gold, #c9a227);
    padding: 1.5rem 2rem;
    margin-bottom: 3rem;
    border-radius: 0 8px 8px 0;
}

.early-bird-notice .notice-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.early-bird-notice h4 {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: 1.25rem;
    color: var(--color-forest-dark, #0d2818);
    margin: 0 0 0.25rem;
}

.early-bird-notice p {
    margin: 0;
    color: var(--color-text, #333);
}

/* Membership Cards Grid */
.membership-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

/* Membership Card */
.membership-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.membership-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.membership-card.featured {
    border: 2px solid var(--color-gold, #c9a227);
}

.membership-card .card-ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--color-gold, #c9a227);
    color: var(--color-forest-dark, #0d2818);
    padding: 0.35rem 3rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transform: rotate(45deg);
}

.membership-card .card-header {
    background: var(--color-forest-dark, #0d2818);
    color: #fff;
    padding: 1.5rem 2rem;
}

.membership-card .card-header h3 {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: 1.5rem;
    margin: 0 0 0.25rem;
    color: #fff;
}

.membership-card .card-subtitle {
    font-size: 0.875rem;
    opacity: 0.8;
    margin: 0;
}

/* Card Pricing */
.membership-card .card-pricing {
    padding: 2rem;
    background: #f8f9fa;
}

.membership-card .card-pricing.compact {
    padding: 1.5rem 2rem;
}

.membership-card .card-pricing.single {
    text-align: center;
    padding: 2rem;
}

.membership-card .price-option {
    text-align: center;
    padding: 1rem 0;
}

.membership-card .price-option .price-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-text-light, #666);
    margin-bottom: 0.5rem;
}

.membership-card .price-option .price-amount {
    display: block;
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-forest-dark, #0d2818);
}

.membership-card .price-option.early .price-amount {
    color: var(--color-gold, #c9a227);
}

.membership-card .price-divider {
    text-align: center;
    padding: 0.5rem 0;
    color: var(--color-text-light, #666);
    font-style: italic;
}

/* Compact Pricing Rows */
.membership-card .price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
}

.membership-card .price-row:last-child {
    border-bottom: none;
}

.membership-card .price-row .age-group {
    font-size: 0.9375rem;
    color: var(--color-text, #333);
}

.membership-card .price-row .price-amount {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-forest-dark, #0d2818);
}

/* Single Large Price */
.membership-card .price-amount.large {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-forest-dark, #0d2818);
    display: block;
}

.membership-card .card-pricing.single .price-label {
    font-size: 0.875rem;
    color: var(--color-text-light, #666);
}

/* Card Features */
.membership-card .card-features {
    list-style: none;
    padding: 1.5rem 2rem;
    margin: 0;
}

.membership-card .card-features li {
    padding: 0.5rem 0;
    color: var(--color-text, #333);
    font-size: 0.9375rem;
}

.membership-card .card-note {
    padding: 0 2rem 1.5rem;
    margin: 0;
    font-size: 0.8125rem;
    color: var(--color-text-light, #666);
    font-style: italic;
}

/* ==========================================================================
   Family Packages
   ========================================================================== */

.family-packages {
    background: var(--color-forest-dark, #0d2818);
    border-radius: 12px;
    padding: 3rem;
    margin-bottom: 2rem;
}

.family-header {
    text-align: center;
    margin-bottom: 2rem;
}

.family-header .family-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.family-header h3 {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: 2rem;
    color: #fff;
    margin: 0 0 0.5rem;
}

.family-header p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.family-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.family-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.family-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--color-gold, #c9a227);
}

.family-card .family-type {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.family-card .family-price {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-gold, #c9a227);
}

.family-note {
    text-align: center;
    margin: 1.5rem 0 0;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

/* Deadline Notice */
.deadline-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: #fff3cd;
    border: 1px solid #ffc107;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.deadline-notice .deadline-icon {
    font-size: 1.5rem;
}

.deadline-notice p {
    margin: 0;
    color: #856404;
}

/* ==========================================================================
   Green Fees Section
   ========================================================================== */

.green-fees-section {
    background: #fff;
}

.green-fees-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.green-fee-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.green-fee-card:hover {
    transform: translateY(-5px);
}

.gf-card-header {
    padding: 1.5rem;
    background: var(--color-forest-dark, #0d2818);
    color: #fff;
}

.gf-badge {
    display: inline-block;
    background: var(--color-gold, #c9a227);
    color: var(--color-forest-dark, #0d2818);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.gf-badge.accent {
    background: #dc3545;
    color: #fff;
}

.gf-card-header h3 {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: 1.25rem;
    margin: 0;
    color: #fff;
}

.gf-card-header .gf-note {
    font-size: 0.8125rem;
    opacity: 0.8;
    margin: 0.25rem 0 0;
}

/* Green Fees Table */
.gf-table {
    padding: 1rem;
}

.gf-table-header {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: #f8f9fa;
    border-radius: 6px;
    margin-bottom: 0.5rem;
}

.gf-table-header span {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-text-light, #666);
    text-align: center;
}

.gf-table-header span:first-child {
    text-align: left;
}

.gf-table-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 0.5rem;
    padding: 1rem;
    border-bottom: 1px solid #eee;
    align-items: center;
}

.gf-table-row:last-child {
    border-bottom: none;
}

.gf-category {
    font-size: 0.9375rem;
    color: var(--color-text, #333);
}

.gf-price {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-forest-dark, #0d2818);
    text-align: center;
}

/* Enquire Box */
.gf-enquire {
    padding: 2rem;
    text-align: center;
}

.gf-enquire .enquire-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.75rem;
}

.gf-enquire .enquire-text {
    display: block;
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-forest-dark, #0d2818);
    margin-bottom: 0.5rem;
}

.gf-enquire p {
    font-size: 0.875rem;
    color: var(--color-text-light, #666);
    margin: 0;
}

/* ==========================================================================
   Rentals Section
   ========================================================================== */

.rentals-section {
    background: linear-gradient(180deg, #faf8f5 0%, #fff 100%);
}

.rentals-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.rentals-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.rentals-card.annual {
    background: linear-gradient(135deg, #0d2818 0%, #1a472a 100%);
    color: #fff;
}

.rentals-card-header {
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
    text-align: center;
}

.rentals-card.annual .rentals-card-header {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.rentals-card-header .rentals-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.rentals-card-header h3 {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: 1.25rem;
    margin: 0;
    color: var(--color-forest-dark, #0d2818);
}

.rentals-card.annual .rentals-card-header h3 {
    color: #fff;
}

.rentals-card-header .rentals-note {
    font-size: 0.8125rem;
    color: var(--color-text-light, #666);
    margin: 0.25rem 0 0;
}

.rentals-card.annual .rentals-card-header .rentals-note {
    color: rgba(255, 255, 255, 0.7);
}

/* Rentals Table */
.rentals-table {
    padding: 1rem 1.5rem;
}

.rentals-subheader {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-gold, #c9a227);
    padding: 0.75rem 0 0.5rem;
    border-bottom: 1px solid #eee;
    margin-top: 0.5rem;
}

.rentals-subheader:first-child {
    margin-top: 0;
}

.rentals-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.rentals-card.annual .rentals-row {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.rentals-row:last-child {
    border-bottom: none;
}

.rentals-row .rental-item {
    font-size: 0.9375rem;
    color: var(--color-text, #333);
}

.rentals-card.annual .rentals-row .rental-item {
    color: rgba(255, 255, 255, 0.9);
}

.rentals-row .rental-price {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-forest-dark, #0d2818);
}

.rentals-card.annual .rentals-row .rental-price {
    color: var(--color-gold, #c9a227);
}

.rentals-row .rental-price small {
    display: block;
    font-family: var(--font-body, 'Lato', sans-serif);
    font-size: 0.6875rem;
    font-weight: 400;
    color: var(--color-text-light, #666);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rentals-card.annual .rentals-row .rental-price small {
    color: rgba(255, 255, 255, 0.6);
}

/* ==========================================================================
   Benefits Section
   ========================================================================== */

.fees-benefits-section {
    background: var(--color-forest-dark, #0d2818);
    padding: 4rem 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.benefit-item {
    text-align: center;
    color: #fff;
}

.benefit-item .benefit-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.benefit-item h4 {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: 1.125rem;
    margin: 0 0 0.5rem;
    color: #fff;
}

.benefit-item p {
    font-size: 0.875rem;
    opacity: 0.8;
    margin: 0;
}

/* ==========================================================================
   Fees CTA Section
   ========================================================================== */

.fees-cta-section {
    position: relative;
    padding: 6rem 0;
    background: url('../images/fees-cta-bg.jpg') center center / cover no-repeat;
    text-align: center;
    color: #fff;
}

.fees-cta-section .cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(13, 40, 24, 0.92) 0%,
        rgba(26, 71, 42, 0.88) 100%
    );
}

.fees-cta-section .container {
    position: relative;
    z-index: 1;
}

.fees-cta-content h2 {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: clamp(2rem, 5vw, 3rem);
    margin: 0 0 1rem;
    color: #fff !important;
}

.fees-cta-content p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin: 0 0 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.fees-cta-content .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.fees-cta-content .cta-contact {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 400px;
    margin: 0 auto;
}

.fees-cta-content .cta-contact p {
    font-size: 1rem;
    margin: 0.5rem 0;
    opacity: 0.9;
}

/* ==========================================================================
   Responsive Styles for Fees Page
   ========================================================================== */

@media (max-width: 1200px) {
    .green-fees-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 992px) {
    .membership-grid {
        grid-template-columns: 1fr;
    }
    
    .rentals-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .fees-nav {
        flex-wrap: wrap;
    }
    
    .fees-nav-item {
        padding: 1rem 1.5rem;
        flex: 1 1 auto;
    }
}

@media (max-width: 768px) {
    .fees-hero {
        height: 50vh;
        min-height: 400px;
    }
    
    .fees-nav-section {
        position: relative;
    }
    
    .fees-nav-item {
        flex: 1 1 50%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .early-bird-notice {
        flex-direction: column;
        text-align: center;
    }
    
    .family-packages {
        padding: 2rem 1.5rem;
    }
    
    .family-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .fees-cta-content .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .fees-cta-content .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .fees-period-badge {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .membership-card .price-option .price-amount {
        font-size: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   CONTACT PAGE STYLES
   Add this to the bottom of your style.css
   ============================================ */

/* Contact Hero Section */
.contact-hero {
    position: relative;
    height: 60vh;
    min-height: 450px;
    max-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--color-white, #ffffff);
}

.contact-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(13, 40, 24, 0.6) 0%,
        rgba(0, 0, 0, 0.5) 100%
    );
    z-index: 1;
}

.contact-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.contact-hero .hero-title {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    margin: 0 0 1rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.4);
    color: #ffffff;
}

.contact-hero .hero-subtitle {
    font-family: var(--font-body, 'Lato', sans-serif);
    font-size: 1.25rem;
    font-weight: 300;
    margin: 0;
    opacity: 0.95;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Contact Content Section */
.contact-content-section {
    padding: 5rem 0;
    background: var(--color-cream, #faf8f5);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

/* Contact Info Column */
.contact-info-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Contact Cards */
.contact-card {
    display: flex;
    gap: 1.5rem;
    background: var(--color-white, #ffffff);
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.contact-card-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-forest-dark, #0d2818) 0%, var(--color-forest, #1a472a) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold, #c9a227);
}

.contact-card-content {
    flex: 1;
}

.contact-card-content h3 {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-forest-dark, #0d2818);
    margin: 0 0 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-card-content p {
    font-family: var(--font-body, 'Lato', sans-serif);
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--color-text, #333);
    margin: 0 0 0.75rem;
}

.contact-card-content p a {
    color: var(--color-forest, #1a472a);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card-content p a:hover {
    color: var(--color-gold, #c9a227);
}

.contact-link {
    display: inline-block;
    font-family: var(--font-body, 'Lato', sans-serif);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-gold, #c9a227);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--color-forest, #1a472a);
}

.contact-note {
    display: block;
    font-size: 0.875rem;
    color: var(--color-text-light, #666);
    font-style: italic;
}

/* Social Media Card */
.contact-social-card {
    flex-direction: column;
    gap: 1.25rem;
    background: linear-gradient(135deg, var(--color-forest-dark, #0d2818) 0%, var(--color-forest, #1a472a) 100%);
    color: #ffffff;
}

.contact-social-card h3 {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
}

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

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.social-link.facebook {
    background: #1877f2;
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link.tripadvisor {
    background: #00af87;
}

.social-link:hover {
    transform: scale(1.1);
}

/* Map Column */
.contact-map-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.map-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    background: #e5e5e5;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.map-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Quick Info Box */
.quick-info-box {
    background: var(--color-white, #ffffff);
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.quick-info-box h4 {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-forest-dark, #0d2818);
    margin: 0 0 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--color-gold, #c9a227);
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px dashed #e5e5e5;
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-row .day {
    font-family: var(--font-body, 'Lato', sans-serif);
    font-weight: 600;
    color: var(--color-text, #333);
}

.hours-row .time {
    font-family: var(--font-body, 'Lato', sans-serif);
    color: var(--color-forest, #1a472a);
    font-weight: 500;
}

.hours-note {
    font-size: 0.875rem;
    color: var(--color-text-light, #666);
    font-style: italic;
    margin: 0;
}

/* Contact CTA Section */
.contact-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--color-forest-dark, #0d2818) 0%, var(--color-forest, #1a472a) 100%);
    text-align: center;
    color: #ffffff;
}

.contact-cta .cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.contact-cta h2 {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin: 0 0 1rem;
    color: #ffffff;
}

.contact-cta p {
    font-family: var(--font-body, 'Lato', sans-serif);
    font-size: 1.125rem;
    line-height: 1.7;
    opacity: 0.9;
    margin: 0 0 2rem;
}

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

.contact-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-body, 'Lato', sans-serif);
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 1rem 2.5rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-cta .btn-primary {
    background: var(--color-gold, #c9a227);
    color: var(--color-forest-dark, #0d2818);
    border-color: var(--color-gold, #c9a227);
}

.contact-cta .btn-primary:hover {
    background: transparent;
    color: var(--color-gold, #c9a227);
    transform: translateY(-2px);
}

.contact-cta .btn-outline {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.contact-cta .btn-outline:hover {
    background: #ffffff;
    color: var(--color-forest-dark, #0d2818);
    transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-map-column {
        order: -1;
    }
    
    .map-wrapper {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        height: 50vh;
        min-height: 350px;
        background-attachment: scroll;
    }
    
    .contact-hero .hero-title {
        letter-spacing: 2px;
    }
    
    .contact-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-content-section {
        padding: 3rem 0;
    }
    
    .contact-card {
        flex-direction: column;
        text-align: center;
        padding: 1.75rem;
    }
    
    .contact-card-icon {
        margin: 0 auto;
    }
    
    .map-wrapper {
        height: 300px;
    }
    
    .hours-row {
        flex-direction: column;
        gap: 0.25rem;
        text-align: center;
    }
    
    .contact-cta {
        padding: 3rem 0;
    }
    
    .contact-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-cta .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        min-height: 300px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
    }
}

/* ============================================
   FACILITIES PAGE STYLES
   Add this to the bottom of your style.css
   ============================================ */

/* ==========================================================================
   Facilities Hero Section
   ========================================================================== */

.facilities-hero {
    position: relative;
    height: 60vh;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--color-forest-dark, #0d2818) url('../images/facilities-hero.jpg') center center / cover no-repeat;
    background-attachment: fixed;
    color: #fff;
}

.facilities-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(13, 40, 24, 0.6) 0%,
        rgba(13, 40, 24, 0.75) 100%
    );
}

.facilities-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.facilities-hero .hero-subtitle {
    display: inline-block;
    font-family: var(--font-body, 'Lato', sans-serif);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-gold, #c9a227);
    margin-bottom: 1rem;
}

.facilities-hero .hero-title {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin: 0 0 1rem;
    color: #fff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.facilities-hero .hero-description {
    font-size: 1.25rem;
    opacity: 0.9;
    margin: 0;
}

/* ==========================================================================
   Facilities Section
   ========================================================================== */

.facilities-section {
    padding: 5rem 0;
    background: var(--color-cream, #faf8f5);
}

.facilities-section .section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.facilities-section .section-subtitle {
    display: inline-block;
    font-family: var(--font-body, 'Lato', sans-serif);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-gold, #c9a227);
    margin-bottom: 0.75rem;
}

.facilities-section .section-title {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--color-forest-dark, #0d2818);
    margin: 0 0 1rem;
}

.facilities-section .section-description {
    font-size: 1.125rem;
    color: var(--color-text-light, #666);
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================================================
   Facilities Grid
   ========================================================================== */

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.facility-card {
    background: #fff;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.facility-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--color-gold, #c9a227);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.facility-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.facility-card:hover::before {
    transform: scaleX(1);
}

.facility-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.1) 0%, rgba(201, 162, 39, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold, #c9a227);
    transition: all 0.3s ease;
}

.facility-card:hover .facility-icon {
    background: var(--color-gold, #c9a227);
    color: var(--color-forest-dark, #0d2818);
    transform: scale(1.1);
}

.facility-card h3 {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--color-forest-dark, #0d2818);
    margin: 0 0 1rem;
}

.facility-card p {
    font-family: var(--font-body, 'Lato', sans-serif);
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--color-text-light, #666);
    margin: 0;
}

.facility-note {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(201, 162, 39, 0.1);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-gold, #c9a227);
    letter-spacing: 0.5px;
}

/* ==========================================================================
   Clubhouse Section (Bar & Café)
   ========================================================================== */

.clubhouse-section {
    padding: 5rem 0;
    background: #fff;
}

.clubhouse-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.clubhouse-section .section-subtitle {
    display: inline-block;
    font-family: var(--font-body, 'Lato', sans-serif);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-gold, #c9a227);
    margin-bottom: 0.75rem;
}

.clubhouse-section .section-title {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--color-forest-dark, #0d2818);
    margin: 0;
}

.clubhouse-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.clubhouse-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.clubhouse-card:hover {
    transform: translateY(-5px);
}

.clubhouse-card-image {
    position: relative;
    height: 250px;
    background-size: cover;
    background-position: center;
}

.clubhouse-card-image .card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(13, 40, 24, 0.2) 0%,
        rgba(13, 40, 24, 0.6) 100%
    );
}

.clubhouse-card-image .card-icon {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    font-size: 3rem;
    z-index: 2;
}

.clubhouse-card-content {
    padding: 2rem;
}

.clubhouse-card-content h3 {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-forest-dark, #0d2818);
    margin: 0 0 1rem;
}

.clubhouse-card-content p {
    font-family: var(--font-body, 'Lato', sans-serif);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text, #333);
    margin: 0 0 1.5rem;
}

.clubhouse-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(26, 71, 42, 0.08);
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--color-forest, #1a472a);
}

.feature-tag svg {
    color: var(--color-gold, #c9a227);
}

/* Café Hours */
.cafe-hours {
    background: var(--color-cream, #faf8f5);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--color-gold, #c9a227);
}

.cafe-hours h4 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-forest-dark, #0d2818);
    margin: 0 0 1rem;
}

.cafe-hours h4 svg {
    color: var(--color-gold, #c9a227);
}

.hours-list {
    font-family: var(--font-body, 'Lato', sans-serif);
}

.hours-list .hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.hours-list .day {
    font-weight: 600;
    color: var(--color-text, #333);
}

.hours-list .time {
    color: var(--color-forest, #1a472a);
    font-weight: 500;
}

.hours-list .hours-note {
    font-size: 0.875rem;
    color: var(--color-text-light, #666);
    font-style: italic;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px dashed #ddd;
}

/* ==========================================================================
   Café Menu Styles
   ========================================================================== */

.cafe-card-expanded .clubhouse-card-content {
    padding: 2rem;
}

.cafe-menu {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--color-gold, #c9a227);
}

.cafe-menu h4 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-forest-dark, #0d2818);
    margin: 0 0 1.25rem;
}

.cafe-menu h4 svg {
    color: var(--color-gold, #c9a227);
}

.menu-section {
    margin-bottom: 1.25rem;
}

.menu-section:last-child {
    margin-bottom: 0;
}

.menu-section-title {
    font-family: var(--font-body, 'Lato', sans-serif);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-gold, #c9a227);
    margin: 0 0 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #eee;
}

.menu-section-title .menu-note {
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    color: var(--color-text-light, #666);
    font-size: 0.6875rem;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px dotted #e5e5e5;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item.featured-item {
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.1) 0%, rgba(201, 162, 39, 0.05) 100%);
    padding: 0.75rem 1rem;
    margin: 0 -1rem 1rem;
    border-bottom: none;
    border-radius: 6px;
}

.menu-item.featured-item .item-name {
    font-weight: 700;
    color: var(--color-forest-dark, #0d2818);
}

.menu-item.featured-item .item-price {
    background: var(--color-gold, #c9a227);
    color: var(--color-forest-dark, #0d2818);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
}

.item-name {
    font-family: var(--font-body, 'Lato', sans-serif);
    font-size: 0.9375rem;
    color: var(--color-text, #333);
}

.item-price {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-forest, #1a472a);
    white-space: nowrap;
}

/* ==========================================================================
   Explore Section (More Than Golf)
   ========================================================================== */

.explore-section {
    position: relative;
    padding: 6rem 0;
    background: url('../images/swellendam-town.jpg') center center / cover no-repeat fixed;
    color: #fff;
}

.explore-section .explore-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(13, 40, 24, 0.92) 0%,
        rgba(26, 71, 42, 0.88) 100%
    );
}

.explore-section .container {
    position: relative;
    z-index: 2;
}

.explore-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.explore-content .section-subtitle.light {
    color: var(--color-gold, #c9a227);
}

.explore-content .section-title.light {
    color: #fff !important;
    margin-bottom: 1.5rem;
}

.explore-intro {
    font-size: 1.25rem;
    line-height: 1.8;
    opacity: 0.95;
    margin-bottom: 3rem;
}

.explore-activities {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.activity-item:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--color-gold, #c9a227);
    transform: translateY(-3px);
}

.activity-icon {
    font-size: 1.5rem;
}

.activity-text {
    font-family: var(--font-body, 'Lato', sans-serif);
    font-size: 0.9375rem;
    font-weight: 500;
}

.explore-tagline {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--color-gold, #c9a227);
    margin: 0;
}

/* ==========================================================================
   Events Hosting Section
   ========================================================================== */

.events-hosting-section {
    padding: 5rem 0;
    background: var(--color-cream, #faf8f5);
}

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

.events-hosting-content .section-subtitle {
    display: inline-block;
    font-family: var(--font-body, 'Lato', sans-serif);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-gold, #c9a227);
    margin-bottom: 0.75rem;
}

.events-hosting-content .section-title {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--color-forest-dark, #0d2818);
    margin: 0 0 1.5rem;
}

.events-hosting-content p {
    font-family: var(--font-body, 'Lato', sans-serif);
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--color-text, #333);
    margin-bottom: 1.5rem;
}

.venue-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.venue-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-body, 'Lato', sans-serif);
    font-size: 0.9375rem;
    color: var(--color-forest, #1a472a);
}

.venue-feature svg {
    color: var(--color-gold, #c9a227);
    flex-shrink: 0;
}

.events-hosting-image {
    position: relative;
}

.events-hosting-image::before {
    content: '';
    position: absolute;
    top: -1rem;
    right: -1rem;
    width: 100%;
    height: 100%;
    border: 3px solid var(--color-gold, #c9a227);
    z-index: -1;
}

.events-hosting-image img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* ==========================================================================
   Facilities CTA Section
   ========================================================================== */

.facilities-cta-section {
    position: relative;
    padding: 6rem 0;
    background: url('../images/facilities-cta-bg.jpg') center center / cover no-repeat;
    text-align: center;
    color: #fff;
}

.facilities-cta-section .cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(13, 40, 24, 0.92) 0%,
        rgba(26, 71, 42, 0.88) 100%
    );
}

.facilities-cta-section .container {
    position: relative;
    z-index: 1;
}

.facilities-cta-content h2 {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: clamp(2rem, 5vw, 3rem);
    margin: 0 0 1rem;
    color: #fff !important;
}

.facilities-cta-content p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin: 0 0 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* ==========================================================================
   Responsive Styles for Facilities Page
   ========================================================================== */

@media (max-width: 1024px) {
    .facilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .events-hosting-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .events-hosting-image {
        order: -1;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .facilities-hero {
        height: 50vh;
        min-height: 400px;
        background-attachment: scroll;
    }
    
    .facilities-section,
    .clubhouse-section,
    .events-hosting-section {
        padding: 4rem 0;
    }
    
    .facilities-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .clubhouse-grid {
        grid-template-columns: 1fr;
    }
    
    .explore-activities {
        flex-direction: column;
        align-items: center;
    }
    
    .activity-item {
        width: 100%;
        max-width: 350px;
        justify-content: center;
    }
    
    .venue-features {
        grid-template-columns: 1fr;
    }
    
    .events-hosting-image::before {
        display: none;
    }
    
    .explore-section {
        background-attachment: scroll;
    }
    
    .facilities-cta-content .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .facilities-cta-content .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .facility-card {
        padding: 2rem 1.5rem;
    }
    
    .clubhouse-card-content {
        padding: 1.5rem;
    }
    
    .cafe-hours {
        padding: 1.25rem;
    }
    
    .hours-list .hours-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .explore-tagline {
        font-size: 1.25rem;
    }
}