:root {
            --grange-green: #2d5a27;
            --grange-gold: #d4af37;
            --text-dark: #2c3e50;
            --text-light: #ecf0f1;
            --bg-light: #f9fbf9;
            --accent: #16a085;
        }

        body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    margin: 0;
    padding: 0;
    background-color: var(--bg-light);
}

h1, h2, h3, h4, .hero-text h1 {
    font-family: 'Playfair Display', Georgia, serif;
}

        /* Navigation */
        nav {
            background-color: white;
            padding: 15px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
            text-decoration: none;
            color: var(--grange-green);
            cursor: pointer;
        }

        .logo-container span {
            font-weight: 700;
            font-size: 1.4em;
            letter-spacing: -0.5px;
        }

        .nav-links {
            display: flex;
            gap: 30px;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        /* Market Carousel Styles */
        .market-carousel, .cal-market-carousel {
            position: relative;
            width: 100%;
            height: clamp(250px, 45vw, 450px);
            border-radius: 12px;
            margin-bottom: 25px;
            border: 3px solid var(--grange-gold);
            overflow: hidden;
        }

        .market-carousel-slides, .cal-market-carousel-slides {
            display: flex;
            width: 300%;
            height: 100%;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .market-carousel-slide, .cal-market-carousel-slide {
            width: 33.3333%;
            height: 100%;
        }

        .market-carousel-slide img, .cal-market-carousel-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .market-carousel-dots, .cal-market-carousel-dots {
            position: absolute;
            bottom: 15px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
            background: rgba(0, 0, 0, 0.3);
            padding: 8px 12px;
            border-radius: 20px;
            backdrop-filter: blur(4px);
        }

        .market-carousel-dot, .cal-market-carousel-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.8);
        }

        .market-carousel-dot.active, .cal-market-carousel-dot.active {
            background: white;
            transform: scale(1.2);
            box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
        }

        .market-carousel-arrow, .cal-market-carousel-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.4);
            color: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 15;
            transition: background 0.3s, transform 0.2s;
            outline: none;
            user-select: none;
        }

        .market-carousel-arrow:hover, .cal-market-carousel-arrow:hover {
            background: rgba(0, 0, 0, 0.7);
        }

        .market-carousel-arrow:active, .cal-market-carousel-arrow:active {
            transform: translateY(-50%) scale(0.9);
        }

        .market-carousel-arrow.left, .cal-market-carousel-arrow.left {
            left: 15px;
        }

        .market-carousel-arrow.right, .cal-market-carousel-arrow.right {
            right: 15px;
        }

        /* Hero Carousel Styles */
        .hero-carousel {
            position: relative;
            width: 100%;
            height: clamp(300px, 50vw, 550px);
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
            border: 5px solid white;
            overflow: hidden;
            background: #fff;
        }

        .hero-carousel-slides {
            display: flex;
            width: 600%;
            height: 100%;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .hero-carousel-slide {
            width: 16.6667%;
            height: 100%;
        }

        .hero-carousel-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .hero-carousel-dots {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 15;
            background: rgba(0, 0, 0, 0.3);
            padding: 8px 12px;
            border-radius: 20px;
            backdrop-filter: blur(4px);
        }

        .hero-carousel-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.8);
        }

        .hero-carousel-dot.active {
            background: white;
            transform: scale(1.2);
            box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
        }

        .hero-carousel-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.4);
            color: white;
            border: none;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            font-size: 1.6rem;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 15;
            transition: background 0.3s, transform 0.2s;
            outline: none;
            user-select: none;
        }

        .hero-carousel-arrow:hover {
            background: rgba(0, 0, 0, 0.7);
        }

        .hero-carousel-arrow:active {
            transform: translateY(-50%) scale(0.9);
        }

        .hero-carousel-arrow.left {
            left: 20px;
        }

        .hero-carousel-arrow.right {
            right: 20px;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 600;
            font-size: 1.05em;
            padding: 10px 22px;
            border-radius: 25px;
            transition: background-color 0.3s, color 0.3s, transform 0.2s;
            cursor: pointer;
        }

        .nav-links a:hover {
            background-color: var(--grange-green);
            color: white;
            transform: translateY(-1px);
        }

        .nav-links a.active {
            background-color: var(--grange-gold);
            color: var(--grange-green);
        }

        .nav-links a.active:hover {
            background-color: var(--grange-green);
            color: white;
        }

        .nav-button {
            font-weight: 700;
        }

        .nav-button:hover {
            background-color: var(--grange-green);
            color: white !important;
        }

        /* Dropdown */
        .nav-dropdown {
            position: relative;
        }

        .nav-dropdown-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            background: white;
            border-radius: 12px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.15);
            padding: 10px 0;
            min-width: 200px;
            z-index: 1001;
            margin-top: 8px;
        }

        .nav-dropdown:hover .nav-dropdown-menu {
            display: block;
        }

        .nav-dropdown-menu a {
            display: block;
            padding: 12px 22px;
            color: var(--text-dark);
            font-weight: 600;
            font-size: 1em;
            text-decoration: none;
            border-radius: 0;
            transition: background-color 0.2s, color 0.2s;
            cursor: pointer;
        }

        .nav-dropdown-menu a:hover {
            background-color: var(--grange-green);
            color: white;
            transform: none;
        }

        .nav-dropdown-menu a:first-child {
            border-radius: 12px 12px 0 0;
        }

        .nav-dropdown-menu a:last-child {
            border-radius: 0 0 12px 12px;
        }

        /* Calendar */
        .cal-table {
            width: 100%;
            border-collapse: collapse;
            table-layout: fixed;
        }

        .cal-table th {
            background: var(--grange-green);
            color: white;
            padding: 12px 5px;
            text-align: center;
            font-size: 0.9em;
        }

        .cal-table th:first-child { border-radius: 12px 0 0 0; }
        .cal-table th:last-child { border-radius: 0 12px 0 0; }

        .cal-table td {
            background: white;
            border: 1px solid #eee;
            padding: 8px 5px;
            vertical-align: top;
            height: 130px;
            font-size: 0.85em;
            position: relative;
            /* overflow: hidden; removed to allow tooltips */
        }

        .cal-table td.empty {
            background: #f5f5f5;
        }

        .cal-table td.has-events {
            cursor: pointer;
            transition: background-color 0.2s;
        }

        .cal-table td.has-events:hover {
            background: #eef2ee;
            z-index: 10; /* Bring hovered cell to front for tooltips */
        }

        .cal-meeting-star {
            position: absolute;
            top: 2px;
            right: 5px;
            font-size: 2.5em;
            color: #FFD700;
            line-height: 1;
            z-index: 5;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
            pointer-events: auto; /* Enable pointer events for hover */
            cursor: help;
        }

        .cal-meeting-star:hover::after {
            content: "Grange Meeting today all are welcome to attend!";
            position: absolute;
            bottom: 100%;
            right: 0;
            background: var(--grange-green);
            color: white;
            padding: 8px 12px;
            border-radius: 8px;
            font-size: 0.35em; /* Small because parent is 2.5em */
            white-space: nowrap;
            z-index: 100;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            pointer-events: none;
        }

        .cal-day-num {
            font-weight: 700;
            font-size: 1em;
            margin-bottom: 4px;
            color: var(--text-dark);
        }

        .cal-dot {
            display: inline-block;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            margin: 1px;
        }

        .cal-event-label {
            display: block;
            font-size: 0.7em;
            line-height: 1.2;
            margin-top: 2px;
            font-weight: 600;
            overflow: visible; /* Changed from hidden to show tooltips */
            white-space: nowrap;
            text-overflow: ellipsis;
        }

        .fundraiser-tag {
            background-color: #e74c3c;
            color: white;
            padding: 2px 6px;
            border-radius: 4px;
            font-size: 0.75em;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            display: inline-block;
            margin-right: 5px;
            vertical-align: middle;
            border: 1px solid rgba(0,0,0,0.1);
            box-shadow: 1px 1px 3px rgba(0,0,0,0.1);
            position: relative;
            cursor: help;
            pointer-events: auto;
            z-index: 5;
        }

        .fundraiser-tag:hover::after {
            content: "All proceeds from this fundraiser go to benefit the Grange Building and Maintenance Fund.";
            position: absolute;
            bottom: 110%;
            left: 50%;
            transform: translateX(-50%);
            background: var(--grange-green);
            color: white;
            padding: 10px 15px;
            border-radius: 8px;
            font-size: 14px; /* Clear, fixed size */
            font-weight: 500;
            text-transform: none;
            letter-spacing: normal;
            white-space: normal;
            width: 220px;
            z-index: 1000;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
            text-align: center;
            line-height: 1.4;
            pointer-events: none;
            display: block;
        }

        .cal-table td.today {
            background-color: #f0f7f0;
            outline: 2px solid var(--grange-green);
            outline-offset: -2px;
        }

        .cal-table td.selected {
            background-color: #fdfae6;
            outline: 3px solid var(--grange-gold);
            outline-offset: -3px;
            z-index: 2;
        }

        .cal-today-label {
            font-size: 0.6em;
            font-weight: 900;
            color: var(--grange-green);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            display: block;
            line-height: 1;
            margin-bottom: 2px;
        }

        @media (max-width: 768px) {
            .cal-table td { height: 100px; padding: 4px 2px; }
            .cal-day-num { font-size: 0.8em; margin-bottom: 2px; }
            .cal-event-label { display: block; font-size: 0.6em; }
            .cal-today-label { font-size: 0.5em; }
        }

        /* Hero Section */
        header {
            background: linear-gradient(rgba(45, 90, 39, 0.70), rgba(45, 90, 39, 0.70)), url('images/singers.jpg') top center/cover no-repeat;
            color: white;
            padding: 160px 20px;
            text-align: center;
        }

        header h1 {
            margin: 0;
            font-size: 3.5em;
            letter-spacing: 1px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .mission-statement {
            font-size: 1.4em;
            max-width: 800px;
            margin: 30px auto;
            font-style: italic;
            opacity: 0.95;
            line-height: 1.4;
        }

        .cta-button {
            display: inline-block;
            background-color: var(--grange-gold);
            color: var(--grange-green);
            padding: 15px 35px;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 700;
            margin-top: 20px;
            transition: transform 0.3s, box-shadow 0.3s;
            cursor: pointer;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        /* Content Sections */
        section {
            max-width: 1000px;
            margin: 80px auto;
            padding: 0 30px;
        }

        .grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        h2 {
            color: var(--grange-green);
            font-size: 2.2em;
            margin-bottom: 20px;
            position: relative;
        }

        h2::after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background: var(--grange-gold);
            margin-top: 10px;
        }

        .event-card {
            background: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
            margin-bottom: 25px;
            border-left: 5px solid var(--grange-green);
            overflow: visible; /* Changed from hidden to allow tooltips to escape */
        }

        .event-card img {
            width: 100%;
            height: 250px;
            object-fit: contain;
            background-color: white;
            border-radius: 8px;
            margin-bottom: 15px;
            display: block;
        }

        .event-card img.img-contain {
            object-fit: contain;
            background-color: white;
        }

        .event-card h3 {
            margin-top: 0;
            color: var(--grange-green);
        }

        /* Sub-page styles */
        .page { display: none; }
        .page.active { display: block; }

        .page-hero {
            background: linear-gradient(rgba(45, 90, 39, 0.75), rgba(45, 90, 39, 0.75)), url('images/waves.jpg') center/cover no-repeat;
            color: white;
            padding: 100px 20px;
            text-align: center;
        }

        .page-hero h1 {
            margin: 0;
            font-size: 3em;
            letter-spacing: 1px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .page-hero p {
            font-size: 1.3em;
            max-width: 700px;
            margin: 20px auto 0;
            opacity: 0.95;
        }

        .page-hero.membership-hero {
            background-image: linear-gradient(rgba(45, 90, 39, 0.75), rgba(45, 90, 39, 0.75)), url('images/TheGrangeFront.jpg');
            background-size: cover;
            background-position: center;
        }

        .page-content {
            max-width: 800px;
            margin: 60px auto;
            padding: 0 30px;
        }

        .page-content h2 {
            font-size: 2em;
            margin-top: 50px;
            margin-bottom: 15px;
        }

        .page-content p {
            font-size: 1.1em;
            margin-bottom: 20px;
        }

        .highlight-box {
            background: #eef2ee;
            padding: 35px 40px;
            border-radius: 16px;
            margin: 40px 0;
            border-left: 5px solid var(--grange-green);
        }

        .highlight-box p {
            margin: 0;
            font-size: 1.15em;
            color: var(--grange-green);
            font-weight: 500;
        }

        .highlight-box.gold-border {
            border-left-color: var(--grange-gold);
        }

        .timeline-item {
            display: flex;
            gap: 25px;
            margin-bottom: 35px;
            align-items: flex-start;
        }

        .timeline-year {
            background: var(--grange-green);
            color: white;
            padding: 8px 18px;
            border-radius: 20px;
            font-weight: 700;
            font-size: 0.95em;
            white-space: nowrap;
            flex-shrink: 0;
            margin-top: 3px;
        }

        .info-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
            margin: 40px 0;
        }

        .info-card {
            background: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
            border-top: 4px solid var(--grange-green);
        }

        .info-card h3 {
            color: var(--grange-green);
            margin-top: 0;
            font-size: 1.2em;
        }

        .info-card p {
            font-size: 1em;
            margin-bottom: 0;
        }

        .dues-box {
            background: var(--grange-green);
            color: white;
            padding: 40px;
            border-radius: 16px;
            margin: 40px 0;
            text-align: center;
        }

        .dues-box h3 {
            font-size: 1.5em;
            margin-top: 0;
            color: var(--grange-gold);
        }

        .dues-box p {
            color: rgba(255,255,255,0.9);
            font-size: 1.05em;
        }

        .dues-amount {
            font-size: 2.5em;
            font-weight: 700;
            color: var(--grange-gold);
            margin: 15px 0 5px;
        }

        .dues-note {
            font-size: 0.95em !important;
            opacity: 0.85;
        }

        /* Footer */
        footer {
            background-color: #1e3a1a;
            color: var(--text-light);
            padding: 80px 5% 40px;
            margin-top: 100px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 20px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 60px;
            padding-top: 30px;
            text-align: center;
            font-size: 0.9em;
            opacity: 0.7;
        }

        .sub-footer {
            padding: 40px 5%;
            margin-top: 80px;
            text-align: center;
        }

        .sub-footer p {
            opacity: 0.7;
            font-size: 0.9em;
        }

        /* Lightbox Modal */
        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            padding-top: 50px;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0,0,0,0.9);
            backdrop-filter: blur(5px);
        }

        .modal-content {
            margin: auto;
            display: block;
            width: 90%;
            max-width: 1000px;
            max-height: 85vh;
            object-fit: contain;
            border-radius: 8px;
            box-shadow: 0 0 30px rgba(0,0,0,0.5);
        }

        .close-modal {
            position: absolute;
            top: 20px;
            right: 35px;
            color: #f1f1f1;
            font-size: 60px;
            font-weight: bold;
            transition: 0.3s;
            cursor: pointer;
            line-height: 1;
        }

        .close-modal:hover,
        .close-modal:focus {
            color: var(--grange-gold);
            text-decoration: none;
            cursor: pointer;
        }

        .event-card img {
            cursor: pointer;
            transition: transform 0.3s;
        }

        .event-card img:hover {
            transform: scale(1.02);
        }

        /* Hamburger Button */
        .hamburger {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 10px;
            z-index: 1002;
        }

        .hamburger span {
            display: block;
            width: 28px;
            height: 3px;
            background: var(--grange-green);
            margin: 5px 0;
            border-radius: 3px;
            transition: transform 0.3s, opacity 0.3s;
        }

        .hamburger.open span:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }

        .hamburger.open span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.open span:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }

        @media (max-width: 768px) {
            .grid, .footer-grid, .info-grid {
                grid-template-columns: 1fr;
            }
            header h1 { font-size: 2.5em; }
            .page-hero h1 { font-size: 2.2em; }
            .timeline-item { flex-direction: column; gap: 10px; }

            nav {
                flex-wrap: wrap;
                padding: 10px 5%;
            }

            .logo-container img {
                height: 50px !important;
                width: 50px !important;
            }

            .logo-container span {
                font-size: 1.1em;
            }

            .hamburger {
                display: block;
            }

            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                gap: 5px;
                padding: 15px 0 5px;
                margin: 0;
            }

            .nav-links.mobile-open {
                display: flex;
            }

            .nav-links li {
                width: 100%;
            }

            .nav-links a {
                display: block;
                text-align: center;
                padding: 14px 22px;
            }

            .nav-dropdown-menu {
                position: static;
                transform: none;
                box-shadow: none;
                margin-top: 5px;
                background: #f9fbf9;
                border-radius: 12px;
            }

            .nav-dropdown:hover .nav-dropdown-menu {
                display: none;
            }

            .nav-dropdown.mobile-dropdown-open .nav-dropdown-menu {
                display: block;
            }
        }

        /* 2027 Membership Drive Form - High Contrast & Senior-Friendly */
        .membership-drive-card {
            background: #ffffff;
            border: 3px solid var(--grange-green);
            border-radius: 16px;
            padding: 40px;
            margin: 30px 0 50px;
            box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
        }

        .membership-drive-card h2 {
            color: var(--grange-green);
            font-size: 2.2em;
            margin-top: 0;
            margin-bottom: 20px;
        }

        .membership-drive-card .drive-intro {
            font-size: 18px;
            line-height: 1.7;
            color: #2c3e50;
            margin-bottom: 16px;
        }

        .membership-drive-form {
            display: flex;
            flex-direction: column;
            gap: 22px;
            margin-top: 25px;
        }

        .membership-drive-form .form-group {
            display: flex;
            flex-direction: column;
        }

        .membership-drive-form label.field-label {
            font-size: 18px;
            font-weight: 700;
            color: #1e3f1a;
            margin-bottom: 8px;
        }

        .membership-drive-form input[type="text"],
        .membership-drive-form input[type="email"],
        .membership-drive-form input[type="tel"] {
            font-size: 18px;
            min-height: 52px;
            padding: 12px 18px;
            border: 2px solid #2d5a27;
            border-radius: 8px;
            background-color: #ffffff;
            color: #2c3e50;
            font-family: inherit;
            box-sizing: border-box;
            transition: border-color 0.2s, box-shadow 0.2s;
        }

        .membership-drive-form input[type="text"]:focus,
        .membership-drive-form input[type="email"]:focus,
        .membership-drive-form input[type="tel"]:focus {
            outline: 3px solid #d4af37;
            outline-offset: 2px;
            border-color: #1e3f1a;
            box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.4);
        }

        .membership-drive-form .radio-group {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 6px;
        }

        .membership-drive-form .radio-label {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 18px;
            font-weight: 600;
            color: #2c3e50;
            cursor: pointer;
            background: #f4f8f4;
            padding: 12px 20px;
            border: 2px solid #c8dcc6;
            border-radius: 8px;
            transition: all 0.2s;
        }

        .membership-drive-form .radio-label:hover {
            border-color: #2d5a27;
            background: #eaf4ea;
        }

        .membership-drive-form .radio-label input[type="radio"] {
            width: 22px;
            height: 22px;
            accent-color: #2d5a27;
            cursor: pointer;
            margin: 0;
        }

        .membership-drive-form .radio-label input[type="radio"]:focus {
            outline: 3px solid #d4af37;
            outline-offset: 2px;
        }

        .membership-drive-form .submit-btn {
            background-color: var(--grange-green);
            color: #ffffff;
            border: 3px solid var(--grange-green);
            font-size: 20px;
            font-weight: 800;
            padding: 16px 36px;
            border-radius: 30px;
            cursor: pointer;
            min-height: 56px;
            align-self: flex-start;
            transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s;
            box-shadow: 0 4px 14px rgba(45, 90, 39, 0.25);
            font-family: inherit;
        }

        .membership-drive-form .submit-btn:hover:not(:disabled) {
            background-color: #1e3f1a;
            border-color: #1e3f1a;
            transform: translateY(-2px);
            box-shadow: 0 6px 18px rgba(45, 90, 39, 0.35);
        }

        .membership-drive-form .submit-btn:focus {
            outline: 4px solid #d4af37;
            outline-offset: 3px;
        }

        .membership-drive-form .submit-btn:disabled {
            opacity: 0.65;
            cursor: not-allowed;
            transform: none;
        }

        .membership-drive-confirmation {
            display: none;
            background: #eef7ee;
            border: 3px solid var(--grange-green);
            border-radius: 12px;
            padding: 25px 30px;
            margin: 20px 0;
        }

        .membership-drive-confirmation p {
            font-size: 20px;
            line-height: 1.6;
            color: var(--grange-green);
            font-weight: 700;
            margin: 0;
        }

        @media (max-width: 600px) {
            .membership-drive-card {
                padding: 25px 20px;
            }
            .membership-drive-form .submit-btn {
                width: 100%;
                text-align: center;
            }
            .membership-drive-form .radio-group {
                flex-direction: column;
                gap: 10px;
            }
        }

        /* Homepage Hanging Banners - Tucked Under Nav */
        .homepage-banners {
            display: flex;
            flex-direction: column;
            width: 100%;
            position: relative;
            z-index: 990;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
        }

        .home-banner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 13px 30px;
            cursor: pointer;
            transition: all 0.25s ease;
            box-sizing: border-box;
            position: relative;
            overflow: hidden;
            font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            -webkit-font-smoothing: antialiased;
        }

        .home-banner .banner-inner {
            display: flex;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
        }

        .home-banner .banner-tag {
            font-size: 11.5px;
            font-weight: 800;
            letter-spacing: 1.5px;
            padding: 4px 11px;
            border-radius: 20px;
            text-transform: uppercase;
            white-space: nowrap;
        }

        .home-banner .banner-msg {
            font-size: 16.5px;
            line-height: 1.45;
            font-weight: 700;
            letter-spacing: 0.35px;
        }

        .home-banner .banner-action {
            font-size: 15px;
            font-weight: 800;
            letter-spacing: 0.4px;
            text-decoration: underline;
            text-underline-offset: 4px;
            text-decoration-thickness: 1.5px;
            white-space: nowrap;
            margin-left: 6px;
            transition: transform 0.2s ease, opacity 0.2s ease;
        }

        .home-banner:hover .banner-action {
            transform: translateX(3px);
        }

        .home-banner .banner-close {
            background: rgba(0, 0, 0, 0.06);
            border: 1px solid rgba(0, 0, 0, 0.08);
            color: #4a5568;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            font-size: 20px;
            line-height: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            flex-shrink: 0;
            margin-left: 15px;
            transition: background-color 0.2s, transform 0.2s, color 0.2s;
            font-family: inherit;
            padding: 0;
        }

        .home-banner .banner-close:hover {
            background: rgba(0, 0, 0, 0.14);
            color: #1a202c;
            transform: scale(1.1);
        }

        .home-banner .banner-close:focus {
            outline: 2px solid #2d5a27;
            outline-offset: 2px;
        }

        /* Membership Drive Banner Style - Soft Warm Butter / Honey Yellow */
        .home-banner.banner-membership {
            background: linear-gradient(90deg, #fef8e7 0%, #fffdf5 50%, #fef8e7 100%);
            color: #382c00;
            border-bottom: 2px solid #ebd485;
        }

        .home-banner.banner-membership:hover {
            background: #faeed0;
        }

        .home-banner.banner-membership .banner-tag {
            background: #f7e39e;
            color: #453500;
            border: 1px solid #ebd27e;
        }

        .home-banner.banner-membership .banner-msg {
            color: #382c00;
        }

        .home-banner.banner-membership .banner-action {
            color: #24521f;
        }

        /* Monthly Meeting Banner Style - Soft Light Meadow / Mint Green */
        .home-banner.banner-meeting {
            background: linear-gradient(90deg, #f2f8f2 0%, #fcfffc 50%, #f2f8f2 100%);
            color: #173815;
            border-bottom: 2px solid #a8cfa6;
        }

        .home-banner.banner-meeting:hover {
            background: #e4f0e3;
        }

        .home-banner.banner-meeting .banner-tag {
            background: #cce7cb;
            color: #163914;
            border: 1px solid #abd4a9;
        }

        .home-banner.banner-meeting .banner-msg {
            color: #173815;
        }

        .home-banner.banner-meeting .banner-action {
            color: #1c5219;
        }

        /* Blood Drive Banner Style - Soft Meadow / Sage Green (No Red) */
        .home-banner.banner-blooddrive {
            background: linear-gradient(90deg, #edf6ed 0%, #f6faf6 50%, #edf6ed 100%);
            color: #1a3c18;
            border-bottom: 2px solid #b7dab5;
        }

        .home-banner.banner-blooddrive:hover {
            background: #dfeee0;
        }

        .home-banner.banner-blooddrive .banner-tag {
            background: #d4ebd2;
            color: #173b15;
            border: 1px solid #b3d9b1;
        }

        .home-banner.banner-blooddrive .banner-msg {
            color: #1a3c18;
        }

        .home-banner.banner-blooddrive .banner-action {
            color: #1e521b;
        }

        @media (max-width: 768px) {
            .home-banner {
                padding: 11px 16px;
            }
            .home-banner .banner-inner {
                gap: 8px;
            }
            .home-banner .banner-msg {
                font-size: 14.5px;
                letter-spacing: 0.25px;
                line-height: 1.4;
            }
            .home-banner .banner-action {
                font-size: 13.5px;
                letter-spacing: 0.3px;
            }
        }

        /* Lightbox Modal & Flyer Overlay */
        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            padding: 30px 15px;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(4px);
            box-sizing: border-box;
            align-items: center;
            justify-content: center;
        }

        .modal-content {
            margin: auto;
            display: block;
            max-width: 92%;
            max-height: 88vh;
            border-radius: 8px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
            object-fit: contain;
            animation: modalZoomIn 0.25s cubic-bezier(0.16, 1, 0.3, 1);
        }

        @keyframes modalZoomIn {
            from { opacity: 0; transform: scale(0.92); }
            to { opacity: 1; transform: scale(1); }
        }

        .close-modal {
            position: fixed;
            top: 20px;
            right: 30px;
            color: #ffffff;
            font-size: 38px;
            font-weight: 700;
            line-height: 1;
            cursor: pointer;
            z-index: 2005;
            background: rgba(0, 0, 0, 0.6);
            border: 2px solid rgba(255, 255, 255, 0.5);
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
            user-select: none;
        }

        .close-modal:hover,
        .close-modal:focus {
            color: var(--grange-gold);
            border-color: var(--grange-gold);
            background: rgba(0, 0, 0, 0.85);
            transform: scale(1.08);
        }

        @media (max-width: 768px) {
            .close-modal {
                top: 15px;
                right: 15px;
                width: 40px;
                height: 40px;
                font-size: 32px;
            }
            .modal-content {
                max-width: 96%;
                max-height: 82vh;
            }
        }