/* --------------------------------------------------
   1. RESET
-------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

body {
    min-height: 100%;
    font-family: Arial, sans-serif;
    background-color: #f5f1e8;
    color: #2f4a27;
}

/* --------------------------------------------------
   2. GLOBAL BACKGROUND
-------------------------------------------------- */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(47, 74, 39, 0.04);
    pointer-events: none;
    z-index: -1;
}

/* --------------------------------------------------
   3. LAYOUT HELPERS
-------------------------------------------------- */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* --------------------------------------------------
   4. HEADER + NAVIGATION
-------------------------------------------------- */

.site-header {
    background-color: #2f4a27;
    padding: 14px 24px;
}

.header-inner {
    width: min(1200px, 100%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 24px;
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-logo img {
    height: 74px;
    width: auto;
    display: block;
    cursor: pointer;
}

/* Navigation */
.navbar {
    display: flex;
    align-items: center;
}

.nav-left {
    justify-content: flex-end;
}

.nav-right {
    justify-content: flex-start;
}

.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 22px;
    margin: 0;
    padding: 0;
}

.nav-menu > li > a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;

    text-align: center;
    line-height: 1.15;

    text-decoration: none;
    color: #f5f1e8;
    font-weight: bold;
    letter-spacing: 1px;

    transition: color 0.2s ease;
}

.nav-menu > li > a:hover {
    color: #d1a747;
}

/* Facebook Icon */
.nav-menu a img {
    height: 28px;
    width: auto;
    display: block;
}

/* Tee Times Button */
.nav-menu .tee-times a {
    background: #e8dcc0;
    color: #243d20;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 1px;
    border: 1px solid #c9a646;
    box-shadow: 0 2px 6px rgba(0,0,0,0.18);
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.nav-menu .tee-times a:hover {
    background: #c9a646;
    color: #243d20;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}

/* Desktop Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    list-style: none;
    min-width: 190px;
    padding: 10px 0;
    margin: 0;

    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    z-index: 20;

    background-color: #fcfaf4;
    border: 1px solid #d8ccb0;
    border-radius: 12px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);

    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 9px 18px;
    color: #2f4a27;
    font-weight: 600;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.dropdown-menu li a:hover {
    background: #f2ead7;
    color: #9f7f2f;
}

/* Hover activates dropdown */
.dropdown:hover .dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

/* Events dropdown opens to the LEFT */
nav ul li.events .dropdown-menu {
    left: auto;
    right: 0;
}

/* --------------------------------------------------
   5. MOBILE / TABLET HEADER
-------------------------------------------------- */

@media (max-width: 900px) {

    .header-inner {
        grid-template-columns: 1fr;
        gap: 12px;
        text-align: center;
    }

    .site-logo {
        order: -1;
    }

    .site-logo img {
        height: 68px;
    }

    .navbar,
    .nav-left,
    .nav-right {
        justify-content: center;
    }

    .nav-menu {
        justify-content: center;
        flex-wrap: wrap;
        gap: 14px 20px;
    }
}

@media (max-width: 600px) {

    .site-header {
        padding: 12px 10px;
    }

    .header-inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 14px;
    }

    .site-logo {
        order: 1;
    }

    .site-logo img {
        height: 58px;
    }

    .nav-left,
    .nav-right {
        width: 100%;
        justify-content: center;
    }

    .nav-left {
        order: 2;
    }

    .nav-right {
        order: 3;
    }

    .nav-menu {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px 14px;
    }

    .nav-menu > li > a {
        min-height: auto;
        font-size: 0.84rem;
        line-height: 1.1;
        letter-spacing: 0.3px;
    }

    .nav-menu a img {
        height: 22px;
    }

    .nav-menu .tee-times a {
        padding: 7px 12px;
    }

    .dropdown-menu {
        position: static;
        max-height: 0;
        overflow: hidden;

        visibility: hidden;
        opacity: 0;

        background-color: #fcfaf4;
        border: none;
        box-shadow: none;
        border-radius: 10px;

        padding: 0;
        margin-top: 6px;

        transform: none;

        transition:
            max-height 0.3s ease,
            opacity 0.25s ease;
    }

    .dropdown:focus-within .dropdown-menu,
    .dropdown:hover .dropdown-menu {
        max-height: 500px;
        visibility: visible;
        opacity: 1;
        padding: 5px 0;
    }

    .dropdown-menu li a {
        color: #2f4a27;
        text-align: left;
        padding: 8px 14px;
    }
}

/* --------------------------------------------------
   6. HERO SECTION
-------------------------------------------------- */
.hero {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: auto;
    max-height: calc(100vh - 160px);
    object-fit: contain;
    display: block;
}

.hero-box {
    background: rgba(47, 74, 39, 0.72);
    padding: 40px 60px;
    border-radius: 10px;
    text-align: center;
    color: #f5f1e8;
}

.hero-box h1 {
    font-family: Georgia, serif;
    font-size: 3rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.hero-box p {
    font-size: 1.2rem;
}

/* Landscape phone/tablet fix */
@media (max-height: 600px) and (orientation: landscape) {
    .hero-image {
        max-height: calc(100vh - 130px);
        width: auto;
        max-width: 100%;
    }

    .site-header {
        padding: 8px 20px;
    }

    .site-logo img {
        height: 50px;
    }

    .site-footer {
        padding: 10px;
        font-size: 0.8rem;
    }
}

/* --------------------------------------------------
   7. FOOTER
-------------------------------------------------- */
.site-footer {
    background-color: #2f4a27;
    padding: 18px 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #f5f1e8;
    border-top: 2px solid #b89b4f;
}

/* --------------------------------------------------
   8. MOBILE RESPONSIVE RULES
-------------------------------------------------- */
@media (max-width: 600px) {

    .hero-image {
        max-height: calc(100vh - 150px);
    }
}

/* --------------------------------------------------
   9. DAILY RATES PAGE
-------------------------------------------------- */
.rates-section {
    padding-bottom: 30px;
}

.rates-section h1 {
    font-family: Georgia, serif;
    text-align: center;
    margin: 40px 0 20px;
    color: #2f4a27;
    letter-spacing: 1px;
}

.rates-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(320px, auto));
    gap: 30px;
    justify-content: center;
}

.rates-card {
    background: #fcfaf4;
    border: 1px solid #d8ccb0;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(47, 74, 39, 0.08);
}

.rates-card h2 {
    font-family: Georgia, serif;
    color: #2f4a27;
    margin-bottom: 15px;
    border-bottom: 2px solid #b89b4f;
    padding-bottom: 8px;
}

.rates-card h3 {
    font-family: Georgia, serif;
    margin-top: 20px;
    color: #2f4a27;
}

.rates-card ul {
    list-style: none;
    margin-top: 8px;
}

.rates-card li {
    padding: 4px 0;
    color: #2f4a27;
}

/* Mobile override for Daily Rates */
@media (max-width: 600px) {
    .rates-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
   MEMBERSHIP PAGE
========================= */

.membership-section {
    padding: 60px 20px;
    background: #f4f1e8;
    min-height: 70vh;
}

.membership-card {
    max-width: 1000px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 18px;
    padding: 40px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    border: 2px solid #d4b06a;
}

.membership-title {
    text-align: center;
    font-size: 2.5rem;
    color: #1f4d2e;
    margin-bottom: 10px;
}

.membership-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 35px;
    font-size: 1.05rem;
}

.table-wrapper {
    overflow-x: auto;
}

.membership-table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 12px;
}

.membership-table thead {
    background: #1f4d2e;
    color: white;
}

.membership-table th {
    padding: 18px;
    text-align: left;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
}

.membership-table td {
    padding: 16px 18px;
    border-bottom: 1px solid #e5e5e5;
    font-size: 1rem;
}

.membership-table tbody tr:nth-child(odd) {
    background: #e7ede2;
}

.membership-table tbody tr:nth-child(even) {
    background: #ffffff;
}

.membership-table tbody tr:hover {
    background: #eef6ef;
    transition: background 0.2s ease;
}

.membership-table td:nth-child(2),
.membership-table td:nth-child(3) {
    font-weight: 600;
    color: #1f4d2e;
}

/* =========================
   SCORECARD PAGE
========================= */

.scorecard-page {
    background: #f4f1e8;
    padding: 50px 20px 70px;
}

.scorecard-section {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.scorecard-image {
    width: 100%;
    max-width: 850px;
    height: auto;

    display: block;

    border-radius: 14px;

    border: 3px solid #d8c8a0;

    box-shadow:
        0 5px 16px rgba(0,0,0,0.16);
}

/* =========================
   LEAGUES PAGE
========================= */

.leagues-page {
    background: #f4f1e8;
    padding: 60px 20px 80px;
    min-height: 70vh;
}

.leagues-carousel {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.leagues-carousel h1 {
    font-family: Georgia, serif;
    font-size: 2.5rem;
    color: #2f4a27;
    margin-bottom: 35px;
    letter-spacing: 1px;
}

.league-card {
    display: none;

    background: #fcfaf4;
    border: 2px solid #d4b06a;
    border-radius: 18px;

    padding: 40px 45px;
    min-height: 330px;

    box-shadow: 0 8px 24px rgba(0,0,0,0.12);

    text-align: left;
}

.league-card.active {
    display: block;
}

.league-card h2 {
    font-family: Georgia, serif;
    font-size: 2rem;
    color: #2f4a27;
    margin-bottom: 8px;
}

.league-day {
    display: inline-block;

    background: #2f4a27;
    color: #f5f1e8 !important;

    padding: 7px 16px;
    border-radius: 999px;

    font-weight: bold;
    letter-spacing: 0.5px;

    margin-bottom: 24px;
}

.league-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #2b2b2b;
}

.league-controls {
    margin-top: 28px;
    display: flex;
    justify-content: center;
    gap: 18px;
}

.league-controls button {
    width: 46px;
    height: 46px;

    border-radius: 50%;
    border: 2px solid #d4b06a;

    background: #2f4a27;
    color: #f5f1e8;

    font-size: 1.5rem;
    cursor: pointer;

    transition: all 0.25s ease;
}

.league-controls button:hover {
    background: #d4b06a;
    color: #2f4a27;
    transform: translateY(-2px);
}

/* Events Page */

.events-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
}

.events-feed {
    display: grid;
    gap: 28px;
}

.event-card {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 28px;
    background: #f7f3e8;
    border: 1px solid rgba(43, 74, 46, 0.18);
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.event-card-image {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 14px;
}

.event-card-content h2 {
    margin: 10px 0;
    color: #1f3d2b;
}

.event-card-meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.event-category,
.event-featured {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
}

.event-category {
    background: #1f3d2b;
    color: #f5d06f;
}

.event-featured {
    background: #f5d06f;
    color: #1f3d2b;
}

.event-date {
    font-weight: 700;
    color: #2f5d3a;
}

.event-button {
    display: inline-block;
    margin-top: 14px;
    padding: 10px 18px;
    background: #1f3d2b;
    color: #fff;
    text-decoration: none;
    border-radius: 999px;
    font-weight: 700;
}

.event-button:hover {
    background: #2f5d3a;
}

@media (max-width: 760px) {
    .event-card {
        grid-template-columns: 1fr;
    }

    .event-card-image {
        height: auto;
        max-height: 280px;
    }
}

/* Mobile */
@media (max-width: 600px) {

    .leagues-page {
        padding: 40px 15px 60px;
    }

    .leagues-carousel h1 {
        font-size: 2rem;
    }

    .league-card {
        padding: 30px 24px;
        min-height: 360px;
    }

    .league-card h2 {
        font-size: 1.7rem;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .scorecard-page {
        padding: 30px 12px 50px;
    }

    .scorecard-section {
        margin-bottom: 30px;
    }

    .scorecard-image {
        max-width: 100%;
        border-radius: 10px;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .membership-card {
        padding: 25px 20px;
    }

    .membership-title {
        font-size: 2rem;
    }

    .membership-table th,
    .membership-table td {
        padding: 14px 12px;
        font-size: 0.95rem;
    }
}

/* =========================
   MEMBERSHIP CONTACT
========================= */

.membership-contact {
    margin-top: 35px;
    padding-top: 25px;
    border-top: 2px solid #d4b06a;
    text-align: center;
    color: #333;
    line-height: 1.8;
}

.membership-contact p {
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.membership-contact a {
    color: #1f4d2e;
    font-weight: 600;
    text-decoration: none;
}

.membership-contact a:hover {
    text-decoration: underline;
}

/* ================================
   About Us Page
================================ */

.about-page {
    background: #f6f3ea;
    color: #1f2a1f;
}

.about-hero {
    padding: 4rem 1.5rem 3rem;
    text-align: center;
    background: #f5f1e8;
    border-bottom: 4px solid #b89b4f;
}

.about-hero-content {
    max-width: 850px;
    margin: 0 auto;
}

.about-hero h1 {
    margin: 0;
    font-family: Georgia, serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: 1px;
    color: #2f4a27;
}

.about-hero-divider {
    width: 120px;
    height: 4px;
    margin: 1.25rem auto;
    background: #b89b4f;
    border-radius: 999px;
}

.about-hero p {
    margin: 0;
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    color: #4b5c47;
    line-height: 1.7;
    font-style: italic;
}

.about-container {
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto;
}

.about-intro {
    padding: 3rem 0 2rem;
}

.about-intro p {
    max-width: 900px;
    margin: 0 auto;
    padding: 1.75rem 2rem;
    font-size: 1.18rem;
    line-height: 1.75;
    text-align: center;
    background: #fffdf7;
    border-left: 6px solid #b9972f;
    border-radius: 18px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

.about-values,
.about-leadership {
    padding: 2rem 0 4rem;
}

.section-heading {
    text-align: center;
    margin-bottom: 2rem;
}

.section-heading h2 {
    display: inline-block;
    margin: 0;
    padding-bottom: 0.6rem;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: #063f2d;
    border-bottom: 4px solid #b9972f;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.value-card {
    background: #fffdf7;
    border-radius: 18px;
    padding: 1.4rem 1.25rem;
    border-top: 5px solid #063f2d;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
}

.value-card h3 {
    margin: 0 0 0.75rem;
    color: #063f2d;
    font-size: 1.1rem;
}

.value-card p {
    margin: 0;
    line-height: 1.6;
    font-size: 0.98rem;
}

.leader-card {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2.25rem;
    padding: 1.5rem;
    background: #fffdf7;
    border-radius: 22px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(6, 63, 45, 0.12);
}

.leader-card-reverse {
    grid-template-columns: 1fr 340px;
}

.leader-card-reverse .leader-image-wrap {
    order: 2;
}

.leader-card-reverse .leader-content {
    order: 1;
}

.leader-image-wrap {
    border-radius: 18px;
    overflow: hidden;
    background: #063f2d;
    box-shadow: inset 0 0 0 4px #b9972f;
}

.leader-image {
    display: block;
    width: 100%;
    height: 430px;
    object-fit: cover;
}

.leader-content h3 {
    margin: 0;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: #063f2d;
}

.leader-title {
    display: inline-block;
    margin: 0.5rem 0 1.2rem;
    padding: 0.45rem 0.8rem;
    background: #063f2d;
    color: #f4d35e;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.leader-content p {
    line-height: 1.7;
    margin: 0 0 1rem;
    font-size: 1.03rem;
}

@media (max-width: 1050px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .value-card:last-child {
        grid-column: 1 / -1;
    }

    .leader-card,
    .leader-card-reverse {
        grid-template-columns: 300px 1fr;
    }

    .leader-card-reverse .leader-image-wrap,
    .leader-card-reverse .leader-content {
        order: initial;
    }
}

@media (max-width: 760px) {
    .about-hero {
        min-height: 250px;
        padding: 3rem 1rem;
    }

    .about-intro p {
        padding: 1.4rem;
        text-align: left;
        font-size: 1.05rem;
    }

    .values-grid,
    .leader-card,
    .leader-card-reverse {
        grid-template-columns: 1fr;
    }

    .value-card:last-child {
        grid-column: auto;
    }

    .leader-card {
        padding: 1rem;
    }

    .leader-image {
        height: auto;
        max-height: 520px;
    }

    .leader-card-reverse .leader-image-wrap,
    .leader-card-reverse .leader-content {
        order: initial;
    }
}

@media (max-width: 480px) {
    .about-container {
        width: min(100% - 1rem, 1120px);
    }

    .about-values,
    .about-leadership {
        padding-bottom: 3rem;
    }

    .leader-title {
        border-radius: 14px;
    }
}

/* --------------------------------------------------
   GREAT OAK TAVERN
-------------------------------------------------- */

.tavern-page {
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 20px;
}

.tavern-hero {
    text-align: center;
    margin-bottom: 40px;
}

.tavern-hero h1 {
    font-size: 3rem;
    color: #184d35;
    margin-bottom: 10px;
}

.tavern-hero p {
    font-size: 1.1rem;
    color: #555;
}

.tavern-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.tavern-card {
    background: #f4f4f1;
    border: 2px solid #c8a75d;
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.tavern-card h2 {
    background: #1f5b34;
    color: white;
    padding: 14px 18px;
    border-radius: 12px;
    margin-bottom: 25px;
    font-size: 1.6rem;
}

.menu-item {
    margin-bottom: 22px;
    padding-bottom: 16px;
    border-bottom: 1px solid #ddd;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item h3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #184d35;
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.menu-item span {
    color: #1f5b34;
    font-weight: bold;
}

.menu-item p {
    color: #555;
    line-height: 1.5;
}

.menu-note,
.hours-note {
    margin-top: 20px;
    font-style: italic;
    color: #666;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.hours-table th {
    background: #dfe5da;
    color: #184d35;
    text-align: left;
    padding: 12px;
}

.hours-table td {
    padding: 12px;
    border-bottom: 1px solid #ddd;
}

.hours-table tr:nth-child(even) {
    background: #f8f8f6;
}

/* Responsive */

@media (max-width: 900px) {

    .tavern-grid {
        grid-template-columns: 1fr;
    }

    .tavern-hero h1 {
        font-size: 2.3rem;
    }

}

/* --------------------------------------------------
   EVENT SCHEDULE PAGE
-------------------------------------------------- */

.event-schedule-page {
    min-height: 70vh;
    padding: 60px 20px;
    background: #f5f1e8;
}

.event-schedule-card {
    max-width: 900px;
    margin: 0 auto;
    background: #fcfaf4;
    border: 2px solid #d4b06a;
    border-radius: 18px;
    padding: 40px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.event-schedule-card h1 {
    font-family: Georgia, serif;
    color: #2f4a27;
    font-size: 2.5rem;
    margin-bottom: 24px;
    text-align: center;
}

.event-schedule-card p {
    font-size: 1.08rem;
    line-height: 1.75;
    color: #333;
    margin-bottom: 22px;
}

.event-contact-box {
    margin-top: 32px;
    padding: 28px;
    background: #e7ede2;
    border-radius: 14px;
    border-left: 6px solid #2f4a27;
}

.event-contact-box h2 {
    font-family: Georgia, serif;
    color: #2f4a27;
    margin-bottom: 18px;
}

.event-contact-box a {
    color: #1f4d2e;
    font-weight: 700;
    text-decoration: none;
}

.event-contact-box a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    .event-schedule-page {
        padding: 40px 14px;
    }

    .event-schedule-card {
        padding: 28px 22px;
    }

    .event-schedule-card h1 {
        font-size: 2rem;
    }
}

/* --------------------------------------------------
   MOBILE HEADER FINAL OVERRIDE
-------------------------------------------------- */
@media (max-width: 600px) {

    .site-header {
        padding: 10px 8px;
    }

    .header-inner {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 10px !important;
    }

    .site-logo {
        order: 1;
    }

    .site-logo img {
        height: 54px;
        margin: 0;
    }

    .nav-left {
        order: 2;
        width: 100%;
    }

    .nav-right {
        order: 3;
        width: 100%;
    }

    .navbar {
        justify-content: center;
    }

    .nav-menu {
        width: 100%;
        justify-content: center;
        align-items: center;
        flex-wrap: nowrap;
        gap: 8px;
    }

    .nav-menu > li > a {
        min-height: auto;
        font-size: 0.78rem;
        line-height: 1.05;
        letter-spacing: 0.2px;
        text-align: center;
    }

    .nav-menu .tee-times a {
        padding: 6px 10px;
        white-space: nowrap;
    }

    .nav-menu a img {
        height: 20px;
        max-width: 20px;
    }

    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        min-width: 170px;
        z-index: 999;
    }

    nav ul li.events .dropdown-menu {
        left: 50%;
        right: auto;
    }
}