/* Go Fish Guides – Base Stylesheet
   All colours, fonts, and component chrome are CSS custom properties.
   Override any of them in a theme file loaded after this one.
   ─────────────────────────────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; }

/* ── Default token set (Green / Lato+Lora) ─────────────────────── */
:root {
    /* Brand accent */
    --primary:              #118202;
    --primary-dark:         #02820e;
    --primary-light:        #eafbea;

    /* Page surfaces */
    --bg-page:              #ffffff;
    --bg-light:             #F5F5F5;
    --border:               #dddddd;

    /* Text */
    --text:                 #4B4F58;
    --text-dark:            #3a3a3a;
    --text-muted:           #777777;

    /* Links */
    --link-color:           #02820e;
    --link-hover:           #3a3a3a;

    /* Header */
    --header-bg:            #ffffff;
    --header-border:        #F5F5F5;
    --header-text:          #3a3a3a;
    --header-tagline:       #777777;
    --nav-active:           #118202;
    --submenu-bg:           #ffffff;
    --submenu-accent:       #118202;
    --submenu-item-border:  #F5F5F5;

    /* Sidebar */
    --sidebar-accent:       #118202;

    /* Buttons */
    --btn-bg:               #118202;
    --btn-text:             #ffffff;
    --btn-hover:            #02820e;

    /* Form */
    --label-bg:             #118202;
    --label-text:           #ffffff;
    --input-focus:          #118202;

    /* Footer */
    --footer-bg:            #F5F5F5;
    --footer-border:        #F5F5F5;
    --footer-text:          #3a3a3a;
    --footer-link:          #02820e;
    --footer-nav-divider:   rgba(0,0,0,0.18);

    /* Mobile nav drawer */
    --mobile-nav-bg:        #ffffff;

    /* Typography */
    --font-heading:         'Lato', sans-serif;
    --font-body:            'Lora', serif;
    --font-ui:              'Lato', sans-serif;

    /* Gallery (overridable per theme) */
    --gallery-gap:          6px;
    --gallery-item-bg:      transparent;
    --gallery-item-padding: 0;
    --gallery-item-border:  none;
    --gallery-item-radius:  0;
    --gallery-item-shadow:  none;
    --gallery-img-radius:   0;
    --gallery-odd-rotate:   0deg;
    --gallery-even-rotate:  0deg;
    --gallery-3n-rotate:    0deg;

    /* Form notice */
    --notice-success-bg:    #eafbea;
    --notice-success-border:#118202;
    --notice-success-text:  #1a5c12;

    /* Layout */
    --max-width:            1240px;

    /* Content panel (area below hero) */
    --content-panel-bg:     #ffffff;
    --content-panel-border: var(--border);
    --content-panel-shadow: 0 2px 16px rgba(0,0,0,0.07);
    --content-panel-radius: 6px;
}

/* ── Base ───────────────────────────────────────────────────────── */

html {
    font-size: 100%;
    background: var(--bg-page);
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65em;
    color: var(--text);
    background: var(--bg-page);
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    line-height: 1.3em;
    margin: 0 0 0.75em;
}
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.3rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 0.95rem; }

p { margin: 0 0 1.2em; }

a { color: var(--link-color); text-decoration: none; }
a:hover, a:focus { color: var(--link-hover); }

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

ul, ol { margin: 0 0 1.2em; padding-left: 1.5em; }
li { margin-bottom: 0.4em; }

table { border-collapse: collapse; width: 100%; margin-bottom: 1.5em; }
td, th { border: 1px solid var(--border); padding: 0.5em 0.75em; }
th { background: var(--bg-light); font-family: var(--font-ui); }

blockquote {
    border-left: 4px solid var(--primary);
    padding: 1em 1.5em;
    margin: 1.5em 0;
    color: var(--text-dark);
}

/* ── Layout ─────────────────────────────────────────────────────── */

.site-wrapper { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }

.page-body { padding: 2.5em 32px 3.5em; }

.page-body .site-wrapper {
    background: var(--content-panel-bg);
    border: 1px solid var(--content-panel-border);
    border-radius: var(--content-panel-radius);
    box-shadow: var(--content-panel-shadow);
    padding: 2.5em 2.5em 3em;
}

#main { min-width: 0; }

/* ── Header ─────────────────────────────────────────────────────── */

.site-header {
    background: var(--header-bg);
    border-bottom: 1px solid var(--header-border);
    position: relative;
    z-index: 10;
}

.header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 140px;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.site-logo { width: 120px; height: auto; display: block; padding: 14px 0; }

.site-title-wrap { display: flex; flex-direction: column; }

.site-title {
    font-family: var(--font-heading);
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--header-text);
    line-height: 1.15;
    margin: 0;
}

.site-tagline {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--header-tagline);
    margin: 0;
    margin-top: 3px;
}

/* Desktop nav */
.primary-nav { list-style: none; margin: 0; padding: 0; display: flex; gap: 4px; }

.primary-nav li { position: relative; }

.primary-nav a {
    display: flex;
    align-items: center;
    height: 140px;
    padding: 0 14px;
    font-family: var(--font-ui);
    font-size: 1.35rem;
    color: var(--header-text);
    white-space: nowrap;
    transition: color 0.2s;
}
.primary-nav a:hover,
.primary-nav a.active { color: var(--nav-active); }

/* Submenu */
.primary-nav .has-submenu > a::after {
    content: '▾';
    margin-left: 4px;
    font-size: 0.75em;
}
.primary-nav .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--submenu-bg);
    border-top: 2px solid var(--submenu-accent);
    box-shadow: 0 4px 12px rgba(0,0,0,.15);
    min-width: 200px;
    list-style: none;
    margin: 0;
    padding: 0;
    z-index: 100;
}
.primary-nav .sub-menu a {
    height: auto;
    padding: 10px 16px;
    font-size: 0.875rem;
    display: block;
    border-bottom: 1px solid var(--submenu-item-border);
    color: var(--header-text);
}
.primary-nav .sub-menu a:hover { color: var(--nav-active); }
.primary-nav .has-submenu:hover .sub-menu { display: block; }

/* Hamburger */
.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--nav-active);
}
.menu-toggle svg { display: block; }

/* ── Sidebar ────────────────────────────────────────────────────── */

.sidebar {
    border-top: 2px solid var(--sidebar-accent);
    padding-top: 1.5em;
}

.widget-title {
    font-family: var(--font-ui);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-dark);
    margin: 0 0 0.75em;
}

.sidebar-nav { list-style: none; margin: 0; padding: 0; }
.sidebar-nav li { border-bottom: 1px solid var(--border); }
.sidebar-nav a {
    display: block;
    padding: 10px 0;
    color: var(--text-dark);
    font-size: 0.95rem;
    transition: color 0.2s;
}
.sidebar-nav a:hover, .sidebar-nav a.active { color: var(--sidebar-accent); }

/* ── Hero (full-bleed slideshow background with overlay text) ───── */

.hero {
    position: relative;
    min-height: 720px;
    overflow: hidden;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Slideshow layer – fills the hero absolutely */
.hero-slideshow {
    position: absolute;
    inset: 0;
}

.hero-slideshow .slideshow-track {
    display: flex;
    height: 100%;
    transition: transform 0.6s ease;
}

.hero-slideshow .slide {
    flex: 0 0 100%;
    height: 100%;
    overflow: hidden;
}

.hero-slideshow .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

/* Gradient overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--hero-overlay, linear-gradient(
        to bottom,
        rgba(0,0,0,0.20) 0%,
        rgba(0,0,0,0.55) 60%,
        rgba(0,0,0,0.70) 100%
    ));
    z-index: 1;
}

/* Text content on top of overlay */
.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 72px 24px 64px;
}

.hero-copy {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.hero-eyebrow {
    font-family: var(--font-ui);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.82);
    margin: 0 0 0.6em;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.4rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.25em;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0,0,0,0.45);
}

.hero-sub {
    font-family: var(--font-body);
    font-size: 1.15rem;
    color: rgba(255,255,255,0.9);
    margin: 0 0 1.75em;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.hero-heading {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.75em;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0,0,0,0.45);
}

.hero-text p {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: rgba(255,255,255,0.92);
    margin: 0 0 1em;
    line-height: 1.65;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.hero-text p:last-child { margin-bottom: 1.5em; }

.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-btn {
    padding: 13px 38px;
    border-radius: 3px;
    font-family: var(--font-ui);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.06em;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    display: inline-block;
}

.hero-btn-primary {
    background: var(--btn-bg);
    color: var(--btn-text);
    border: 2px solid var(--btn-bg);
}
.hero-btn-primary:hover {
    background: var(--btn-hover);
    border-color: var(--btn-hover);
    color: var(--btn-text);
}

.hero-btn-secondary {
    background: rgba(255,255,255,0.12);
    color: #fff;
    border: 2px solid rgba(255,255,255,0.75);
    backdrop-filter: blur(4px);
}
.hero-btn-secondary:hover {
    background: rgba(255,255,255,0.25);
    border-color: #fff;
    color: #fff;
}

/* Arrow controls */
.slideshow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.22);
    border: 1px solid rgba(255,255,255,0.45);
    border-radius: 3px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 1.4rem;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: background 0.2s;
}
.slideshow-btn:hover { background: rgba(255,255,255,0.42); }
.slideshow-prev { left: 14px; }
.slideshow-next { right: 14px; }

/* Dot indicators */
.slideshow-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 7px;
    z-index: 3;
}
.slideshow-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
}
.slideshow-dot.active { background: #fff; transform: scale(1.35); }

/* ── Rates Table ────────────────────────────────────────────────── */

.rates-table td:last-child { text-align: right; font-weight: 600; }

/* ── Contact Form ───────────────────────────────────────────────── */

.contact-form fieldset { border: none; padding: 0; margin: 0; }

.form-row {
    display: grid;
    grid-template-columns: 160px 1fr;
    align-items: center;
    margin-bottom: 0.75em;
    gap: 8px;
}

.form-row label {
    background: var(--label-bg);
    color: var(--label-text);
    padding: 6px 12px;
    font-family: var(--font-ui);
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 3px;
    text-align: center;
}

.form-row input,
.form-row textarea {
    width: 100%;
    padding: 7px 10px;
    border: 1px solid var(--border);
    border-radius: 3px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--bg-page);
}
.form-row input:focus,
.form-row textarea:focus {
    outline: none;
    border-color: var(--input-focus);
}

.form-row textarea { height: 130px; resize: vertical; }

.form-honeypot { display: none; }

.form-row .required { color: #c00; margin-left: 4px; font-weight: 700; }

.btn-submit {
    background: var(--btn-bg);
    color: var(--btn-text);
    border: none;
    padding: 10px 40px;
    font-family: var(--font-ui);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    border-radius: 3px;
    cursor: pointer;
    margin-top: 0.5em;
    transition: background 0.2s;
}
.btn-submit:hover { background: var(--btn-hover); }

.form-notice {
    padding: 12px 16px;
    border-radius: 4px;
    margin-bottom: 1em;
    font-family: var(--font-ui);
}
.form-notice.success {
    background: var(--notice-success-bg);
    border: 1px solid var(--notice-success-border);
    color: var(--notice-success-text);
}
.form-notice.error { background: #fdecea; border: 1px solid #c00; color: #900; }

/* ── Image Grid (gallery) ───────────────────────────────────────── */

.img-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gallery-gap);
    margin-bottom: 2em;
}

.img-grid a {
    display: block;
    overflow: hidden;
    background: var(--gallery-item-bg);
    padding: var(--gallery-item-padding);
    border: var(--gallery-item-border);
    border-radius: var(--gallery-item-radius);
    box-shadow: var(--gallery-item-shadow);
    transition: transform 0.25s, box-shadow 0.25s;
    transform: rotate(var(--gallery-odd-rotate));
}
.img-grid a:nth-child(even) { transform: rotate(var(--gallery-even-rotate)); }
.img-grid a:nth-child(3n)   { transform: rotate(var(--gallery-3n-rotate)); }
.img-grid a:hover { transform: rotate(0deg) scale(1.03); box-shadow: 0 6px 20px rgba(0,0,0,.2); }

.img-grid img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: var(--gallery-img-radius);
    display: block;
}

/* ── Gallery pagination ─────────────────────────────────────────── */

.gallery-pagination {
    margin: 2em 0 0;
    text-align: center;
    font-family: var(--font-ui);
}

.gallery-pagination ul {
    list-style: none;
    margin: 0 0 0.5em;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.gallery-pagination a,
.gallery-pagination .active {
    display: inline-block;
    min-width: 2.25em;
    padding: 8px 12px;
    border-radius: 3px;
    font-size: 0.95rem;
    line-height: 1;
    text-decoration: none;
}

.gallery-pagination a {
    color: var(--link-color);
    border: 1px solid var(--border);
    background: var(--bg-page);
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.gallery-pagination a:hover {
    color: var(--btn-text);
    background: var(--primary);
    border-color: var(--primary);
}

.gallery-pagination .active {
    color: var(--btn-text);
    background: var(--primary);
    border: 1px solid var(--primary);
    font-weight: 700;
}

.gallery-pagination .gallery-page-prev,
.gallery-pagination .gallery-page-next {
    min-width: auto;
    font-weight: 600;
}

.gallery-page-info {
    margin: 0;
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ── Gallery lightbox slideshow ─────────────────────────────────── */

body.gallery-lightbox-open { overflow: hidden; }

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 300;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 64px;
}
.gallery-lightbox[hidden] { display: none !important; }

.gallery-lightbox-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.45);
}

.gallery-lightbox-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    line-height: 1;
    cursor: pointer;
    padding: 4px 10px;
    opacity: 0.85;
    transition: opacity 0.2s;
}
.gallery-lightbox-close:hover { opacity: 1; }

.gallery-lightbox-prev,
.gallery-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 3px;
    width: 44px;
    height: 44px;
    cursor: pointer;
    font-size: 1.6rem;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.gallery-lightbox-prev:hover,
.gallery-lightbox-next:hover { background: rgba(255, 255, 255, 0.35); }
.gallery-lightbox-prev { left: 16px; }
.gallery-lightbox-next { right: 16px; }

.gallery-lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--font-ui);
    font-size: 0.9rem;
}

/* ── Trophy Room slideshow ──────────────────────────────────────── */

.trophy-slideshow {
    position: relative;
    width: 100%;
    background: #1a1a1a;
    border: 1px solid var(--border);
    border-radius: var(--content-panel-radius);
    overflow: hidden;
    margin-bottom: 2em;
}

.trophy-slideshow .slideshow-track {
    display: flex;
    transition: transform 0.5s ease;
}

.trophy-slideshow .slide {
    flex: 0 0 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 380px;
    padding: 1em;
}

.trophy-slideshow .slide img {
    max-width: 100%;
    max-height: 420px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.trophy-slideshow .slideshow-btn {
    z-index: 2;
}

.trophy-slideshow .slideshow-dots {
    z-index: 2;
}

/* ── About page ─────────────────────────────────────────────────── */

.img-float-left {
    float: left;
    margin: 0 1.5em 1em 0;
    max-width: 520px;
}

.clearfix::after { content: ''; display: table; clear: both; }

/* ── Sponsors ───────────────────────────────────────────────────── */

.sponsor-slideshow {
    position: relative;
    width: 100%;
    background: var(--sponsor-slideshow-bg, var(--bg-light));
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.sponsor-slideshow .slideshow-track {
    display: flex;
    transition: transform 0.5s ease;
}

.sponsor-slideshow .slide {
    flex: 0 0 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3em 64px;
    min-height: 220px;
}

.sponsor-slideshow .slide a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 24px 48px;
    box-sizing: border-box;
}

.sponsor-slideshow .slide img {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 180px;
    object-fit: contain;
    display: block;
    margin: 12px 0;
}

.sponsor-slideshow .slideshow-btn {
    background: rgba(0,0,0,0.12);
    border-color: rgba(0,0,0,0.2);
    color: var(--text-dark);
}
.sponsor-slideshow .slideshow-btn:hover { background: rgba(0,0,0,0.22); }

.sponsor-slideshow .slideshow-dot {
    background: rgba(0,0,0,0.2);
}
.sponsor-slideshow .slideshow-dot.active {
    background: var(--primary);
    transform: scale(1.35);
}

.sponsor-links {
    list-style: none;
    margin: 1.5em 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 24px;
}
.sponsor-links a { font-weight: 600; }

/* ── Lodging List ───────────────────────────────────────────────── */

.lodging-list {
    margin: 0.75em 0 1.5em;
    padding-left: 1.25em;
}
.lodging-list li { margin-bottom: 0.45em; }
.lodging-list a { font-weight: 600; }

/* ── Location Map ───────────────────────────────────────────────── */

.map-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 4px;
    border: 1px solid var(--border);
    margin-bottom: 1.5em;
}
.map-wrap iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: 0;
}

/* ── Footer ─────────────────────────────────────────────────────── */

.site-footer {
    border-top: 1px solid var(--footer-border);
    background: var(--footer-bg);
    padding: 28px 0;
    text-align: center;
    font-size: 0.875rem;
    color: var(--footer-text);
    font-family: var(--font-ui);
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.footer-nav {
    list-style: none;
    margin: 0 0 1.25em;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 6px 0;
}

.footer-nav > li {
    display: flex;
    align-items: center;
}

.footer-nav > li + li::before {
    content: '|';
    margin: 0 14px;
    color: var(--footer-nav-divider);
    font-weight: 300;
}

.site-footer a { color: var(--footer-link); text-decoration: none; }

.footer-nav a {
    font-size: 0.95rem;
    transition: color 0.2s;
}
.footer-nav a:hover,
.footer-nav a.active { color: var(--nav-active); }

.footer-sub-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.footer-sub-nav::before {
    content: '|';
    margin: 0 10px;
    color: var(--footer-nav-divider);
}

.footer-sub-nav li + li::before {
    content: '|';
    margin: 0 10px;
    color: var(--footer-nav-divider);
}

.footer-sub-nav a {
    font-size: 0.85rem;
    opacity: 0.9;
}

.footer-copyright { margin: 0; }

/* ── Trophy Room page link ──────────────────────────────────────── */
.page-link-center { text-align: center; margin: 1em 0 2em; }
.page-link-center a { font-weight: 700; }

/* ── Mobile nav drawer ──────────────────────────────────────────── */

.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 200;
}
.mobile-nav-drawer {
    position: fixed;
    top: 0; right: 0;
    width: 280px;
    height: 100%;
    background: var(--mobile-nav-bg);
    z-index: 201;
    padding: 20px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}
.mobile-nav-open .mobile-nav-overlay { display: block; }
.mobile-nav-open .mobile-nav-drawer  { transform: translateX(0); }

.mobile-nav-close {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    float: right;
    color: var(--text-dark);
    line-height: 1;
}

.mobile-nav-list { list-style: none; margin: 48px 0 0; padding: 0; }
.mobile-nav-list li { border-bottom: 1px solid var(--border); }
.mobile-nav-list a {
    display: block;
    padding: 12px 0;
    color: var(--text-dark);
    font-family: var(--font-ui);
    font-size: 1rem;
}
.mobile-sub-list { list-style: none; margin: 0; padding: 0 0 0 16px; }
.mobile-sub-list a { font-size: 0.9rem; padding: 8px 0; color: var(--text); }

/* ── Responsive ─────────────────────────────────────────────────── */

@media (max-width: 921px) {
    .primary-nav { display: none; }
    .menu-toggle { display: flex; }
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }
    .hero { min-height: 640px; }
    .hero-content { padding: 56px 20px 52px; }
    .hero-title { font-size: 2.4rem; }
    .hero-sub { font-size: 1rem; }
    .hero-heading { font-size: 1.6rem; }
    .hero-text p { font-size: 1rem; }
}

@media (max-width: 600px) {
    .page-body { padding-left: 16px; padding-right: 16px; }
    .sponsor-slideshow .slide { padding: 2em 28px; min-height: 180px; }
    .sponsor-slideshow .slide a { padding: 16px 24px; }
    .sponsor-slideshow .slide img { max-height: 140px; margin: 8px 0; }
    .gallery-lightbox { padding: 40px 16px; }
    .gallery-lightbox-prev { left: 8px; }
    .gallery-lightbox-next { right: 8px; }
    .trophy-slideshow .slide { min-height: 260px; }
    .trophy-slideshow .slide img { max-height: 280px; }
    .page-body .site-wrapper { padding: 1.75em 1.25em 2.25em; }
    .footer-nav { gap: 10px 0; }
    .footer-nav > li + li::before { margin: 0 10px; }
    .img-grid { grid-template-columns: repeat(2, 1fr); }
    .img-grid img { height: 120px; }
    .form-row { grid-template-columns: 1fr; }
    .hero { min-height: 560px; }
    .hero-content { padding: 48px 16px 44px; }
    .hero-title { font-size: 1.8rem; }
    .hero-sub { font-size: 0.9rem; }
    .hero-heading { font-size: 1.35rem; }
    .hero-text p { font-size: 0.95rem; }
    .hero-btn { padding: 11px 24px; font-size: 0.9rem; }
    .img-float-left { float: none; max-width: 100%; margin: 0 0 1em; }
}
