/* NAPCL Pro 2.0 Website Styles */

/* ===== ROOT VARIABLES ===== */
:root {
    --navy: #1E3A5F;
    --red: #C41E3A;
    --gold: #D4AF37;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --dark-gray: #333333;
}

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

body {
    font-family: 'Open Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', 'Arial Black', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

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

/* ===== HEADER & NAVIGATION ===== */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo img {
    height: 60px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--navy);
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--red);
}

.btn-register-nav {
    background-color: var(--gold);
    color: var(--navy);
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-weight: 700;
    transition: all 0.3s;
}

.btn-register-nav:hover {
    background-color: var(--navy);
    color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.btn-register-nav-outline {
    background-color: transparent;
    color: var(--gold);
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-weight: 700;
    border: 2px solid var(--gold);
    transition: all 0.3s;
}

.btn-register-nav-outline:hover {
    background-color: transparent;
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}


/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../images/brochure/brochure_page_1.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
}

.hero2019 {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../images/gallery/IMG20251215WA0042.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.85), rgba(196, 30, 58, 0.75));
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1000px;
    padding: 2rem;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-tagline {
    font-size: 1.3rem;
    letter-spacing: 3px;
    margin: 2rem 0;
    text-transform: uppercase;
}

/* ===== COUNTDOWN TIMER ===== */
.countdown-section {
    background-color: var(--red);
    color: var(--white);
    padding: 2rem;
    text-align: center;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.time-unit {
    background-color: rgba(255,255,255,0.1);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    min-width: 100px;
}

.time-number {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
}

.time-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--gold);
    color: var(--navy);
}

.btn-primary:hover {
    background-color: var(--navy);
    color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.btn-large {
    padding: 1.5rem 3rem;
    font-size: 1.3rem;
}

/* ===== CONTENT SECTIONS ===== */
.content-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.section-image {
    width: 100%;
    margin: 2rem 0;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.section-title {
    text-align: center;
    color: var(--navy);
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

/* ===== HORIZONTAL SCROLL GALLERY ===== */
.horizontal-scroll-section {
    padding: 4rem 0;
    background-color: var(--light-gray);
    overflow: hidden;
}

.scroll-container {
    max-width: 100%;
    padding: 0 2rem;
}

.scroll-gallery {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 2rem 0;
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
}

/* Hide scrollbar but keep functionality */
.scroll-gallery::-webkit-scrollbar {
    height: 8px;
}

.scroll-gallery::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.1);
    border-radius: 10px;
}

.scroll-gallery::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 10px;
}

.scroll-gallery::-webkit-scrollbar-thumb:hover {
    background: var(--navy);
}

.gallery-item {
    flex: 0 0 auto;
    width: 85vw;
    max-width: 1100px;
    scroll-snap-align: center;
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: grab;
}

.gallery-item img:active {
    cursor: grabbing;
}

.gallery-item img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 50px rgba(0,0,0,0.3);
}

/* Scroll hint */
.scroll-hint {
    text-align: center;
    color: var(--navy);
    font-size: 1.1rem;
    margin-top: 1rem;
    opacity: 0.7;
}

.scroll-hint::before {
    content: "← ";
}

.scroll-hint::after {
    content: " →";
}

/* Navigation dots */
.gallery-nav {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(30, 58, 95, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.nav-dot:hover {
    background-color: var(--gold);
    transform: scale(1.2);
}

.nav-dot.active {
    background-color: var(--navy);
    width: 30px;
    border-radius: 6px;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--gold), #B8960C);
    color: var(--navy);
    text-align: center;
    padding: 4rem 2rem;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* ===== REGISTRATION FORM ===== */
.registration-container {
    max-width: 700px;
    margin: 4rem auto;
    padding: 3rem;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

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

.form-header h1 {
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--dark-gray);
    font-size: 1.1rem;
}

.deadline-warning {
    background-color: var(--red);
    color: var(--white);
    padding: 1rem;
    border-radius: 5px;
    margin: 1.5rem 0;
    text-align: center;
    font-weight: 600;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--navy);
}

.required {
    color: var(--red);
}

.checkbox-group {
    margin: 1.5rem 0;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    font-weight: normal;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
    margin-top: 0.25rem;
}

.payment-section {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.payment-section h3 {
    color: var(--navy);
    margin-bottom: 1rem;
}

.payment-info {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 5px;
    border-left: 4px solid var(--gold);
}

.payment-info p {
    margin: 0.5rem 0;
    font-size: 1.1rem;
}

.payment-info strong {
    color: var(--navy);
}

.info-box {
    background-color: #E3F2FD;
    border-left: 4px solid var(--navy);
    padding: 1rem;
    margin: 1.5rem 0;
    border-radius: 5px;
}

.submit-section {
    text-align: center;
    margin-top: 2rem;
}

.btn-submit {
    width: 100%;
    max-width: 400px;
    padding: 1.25rem;
    font-size: 1.2rem;
}

/* ===== REGISTERED PLAYERS LIST ===== */
.players-list-section {
    background-color: var(--light-gray);
    padding: 4rem 2rem;
}

.players-container {
    max-width: 1000px;
    margin: 0 auto;
}

.players-count {
    text-align: center;
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 2rem;
}

.players-count .count {
    color: var(--red);
    font-weight: 700;
}

.players-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.player-card {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    border-top: 4px solid var(--gold);
}

.player-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.player-location {
    color: var(--dark-gray);
    font-size: 0.95rem;
}

/* ===== FOOTER ===== */
footer {
    background-color: var(--navy);
    border-top: 2px solid #D4AF37;
    color: var(--white);
    padding: 2rem;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--gold);
}
.players-container {
    width: 100%;
    overflow-x: auto;
}

.approve-table {
    width: 100%;
    min-width: 700px;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    min-height: 260px;
    overflow: hidden;
}
.approve-table th, .approve-table td {
    padding: 12px;
    border-bottom: 1px solid #eee;
    text-align: left;
}
.approve-table th {
    background: #1E3A5F;
    color: white;
}
.paid-row {
    background: #e6f4ea;
}
.approve-btn {
    background: #28A745;
    color: white;
    border: none;
    padding: 6px 12px;
    cursor: pointer;
    border-radius: 5px;
}
.approve-btn:disabled {
    background: #aaa;
    cursor: not-allowed;
}

.no-underline {
    text-decoration: none;
}

.no-underline:hover {
    text-decoration: none;
    opacity: 0.85;
}


.slide-deck-section {
    padding: 80px 20px;         /* Generous spacing (80px top/bottom) */
    background: var(--red);     /* RED background - matches page theme */
}

.slide-deck-section .section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--gold);
}

.vertical-slide-container {
    max-width: 1400px;          /* Maximum width on large screens */
    margin: 0 auto;             /* Center horizontally */
    position: relative;         /* Positioning context for child elements */
    background: rgba(0, 0, 0, 0.3);  /* Semi-transparent black overlay */
    border-radius: 10px;        /* Rounded corners */
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);  /* Shadow for depth */
    overflow: hidden;           /* Hide content that overflows */
    border: 2px solid var(--gold);  /* GOLD border - visual frame */
}

.vertical-slides-wrapper {
    width: 100%;                /* Full width of container */
    height: 80vh;               /* 80% of viewport height */
    min-height: 600px;          /* Minimum height for small screens */
    position: relative;         /* Positioning context for slides */
    overflow: hidden;           /* Hide content outside bounds */
}

.vertical-slide {
    position: absolute;         /* Absolute positioning (stacked) */
    top: 0;                     /* Align to top */
    left: 0;                    /* Align to left */
    width: 100%;                /* Full width */
    height: 100%;               /* Full height */
    display: flex;              /* Flexbox for centering image */
    align-items: center;        /* Vertically center */
    justify-content: center;    /* Horizontally center */
    opacity: 0;                 /* DEFAULT: Invisible */
    transition: opacity 0.5s ease-in-out;  /* Smooth fade transition */
}

.vertical-slide.active {
    opacity: 1;                 /* Make visible (fade in) */
}

/* Image inside each slide */
.vertical-slide img {
    max-width: 100%;            /* Never wider than container */
    max-height: 100%;           /* Never taller than container */
    object-fit: contain;        /* Maintain aspect ratio, fit in container */
}

.vertical-nav {
    position: absolute;         /* Absolute positioning */
    right: 20px;                /* 20px from right edge */
    top: 50%;                   /* 50% from top */
    transform: translateY(-50%);  /* Center vertically (trick!) */
    display: flex;              /* Flexbox layout */
    flex-direction: column;     /* Stack vertically */
    gap: 15px;                  /* Space between buttons */
    z-index: 10;               /* Above slides */
}

.vertical-btn {
    background: var(--gold);         /* GOLD background */
    color: var(--navy);              /* NAVY text (arrow symbol) */
    border: none;                    /* Remove default button border */
    width: 50px;                     /* Fixed width */
    height: 50px;                    /* Fixed height (makes it square) */
    border-radius: 50%;              /* 50% radius = perfect circle */
    cursor: pointer;                 /* Hand cursor on hover */
    font-size: 24px;                 /* Large arrow symbol */
    font-weight: bold;               /* Bold arrow */
    transition: all 0.3s;            /* Smooth transitions */
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);  /* Shadow for depth */
    display: flex;                   /* Flexbox for centering arrow */
    align-items: center;             /* Vertically center arrow */
    justify-content: center;         /* Horizontally center arrow */
}

/* Hover state - when mouse is over button */
.vertical-btn:hover {
    background: var(--white);        /* Change to WHITE */
    color: var(--red);               /* Change to RED text */
    transform: scale(1.1);           /* Slightly enlarge (10% bigger) */
}

/* Disabled state - when button can't be clicked (first/last slide) */
.vertical-btn:disabled {
    background: #666;                /* Gray background */
    color: #999;                     /* Light gray text */
    cursor: not-allowed;             /* "Not allowed" cursor */
    transform: scale(1);             /* No enlargement */
}

.vertical-indicators {
    position: absolute;              /* Absolute positioning */
    right: 85px;                     /* Left of navigation buttons */
    top: 50%;                        /* 50% from top */
    transform: translateY(-50%);     /* Center vertically */
    display: flex;                   /* Flexbox layout */
    flex-direction: column;          /* Stack vertically */
    gap: 10px;                       /* Space between dots */
    z-index: 10;                    /* Above slides */
}

/* Individual indicator dot */
.vertical-indicator {
    width: 15px;                     /* Fixed width */
    height: 15px;                    /* Fixed height (square) */
    border-radius: 50%;              /* 50% = perfect circle */
    background: rgba(255, 255, 255, 0.4);  /* Semi-transparent white */
    cursor: pointer;                 /* Hand cursor (clickable) */
    transition: all 0.3s;            /* Smooth transitions */
    border: 2px solid var(--gold);   /* GOLD border */
}

/* Active indicator - shows current slide */
.vertical-indicator.active {
    background: var(--gold);         /* Solid GOLD fill */
    transform: scale(1.3);           /* Larger (30% bigger) */
}

.slide-counter {
    position: absolute;              /* Absolute positioning */
    bottom: 20px;                    /* 20px from bottom */
    right: 20px;                     /* 20px from right */
    background: var(--navy);         /* NAVY background */
    color: var(--gold);              /* GOLD text */
    padding: 10px 20px;             /* Internal spacing */
    border-radius: 20px;             /* Rounded pill shape */
    font-size: 18px;                 /* Medium size */
    font-weight: bold;               /* Bold text */
}

.photo-gallery-section {
    padding: 80px 20px;              /* Generous spacing */
    background: var(--navy);         /* NAVY background for contrast */
}

/* Section title in photo gallery */
.photo-gallery-section .section-title {
    color: var(--gold);              /* GOLD title on navy */
}

/* Description text below title */
.photo-gallery-section p {
    text-align: center;              /* Center text */
    color: var(--white);             /* WHITE text */
    margin-bottom: 40px;             /* Space below */
    font-size: 18px;                 /* Medium size */
}

.gallery-container {
    max-width: 1200px;               /* Maximum width */
    margin: 0 auto;                  /* Center horizontally */
    position: relative;              /* Positioning context */
    border-radius: 10px;             /* Rounded corners */
    overflow: hidden;                /* Hide overflowing photos */
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);  /* Shadow */
    background: #000;                /* BLACK background for photos */
    border: 2px solid var(--gold);   /* GOLD border */
}

.gallery-slides {
    display: flex;                   /* Horizontal layout */
    transition: transform 0.5s ease-in-out;  /* Smooth slide (0.5s) */
}

/* Individual photo slide */
.gallery-slide {
    min-width: 100%;                 /* Each photo takes full width */
    height: 600px;                   /* Fixed height */
    display: flex;                   /* Flexbox for centering */
    align-items: center;             /* Vertically center */
    justify-content: center;         /* Horizontally center */
}

/* Photo image */
.gallery-slide img {
    max-width: 100%;                 /* Never wider than container */
    max-height: 100%;                /* Never taller than container */
    object-fit: contain;             /* Maintain aspect ratio */
}



/* Individual gallery button (◄ or ►) */
.gallery-btn {
    background: var(--gold);         /* GOLD background */
    color: var(--navy);              /* NAVY text */
    border: none;                    /* No border */
    width: 50px;                     /* Fixed width */
    height: 50px;                    /* Fixed height */
    border-radius: 50%;              /* Perfect circle */
    cursor: pointer;                 /* Hand cursor */
    font-size: 24px;                 /* Large arrow */
    font-weight: bold;               /* Bold arrow */
    transition: all 0.3s;            /* Smooth transitions */
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);  /* Shadow */
}

/* Hover state */
.gallery-btn:hover {
    background: var(--white);        /* WHITE background */
    color: var(--red);               /* RED text */
    transform: scale(1.1);           /* Enlarge 10% */
}

.gallery-indicators {
    display: flex;                   /* Horizontal layout */
    justify-content: center;         /* Center horizontally */
    gap: 8px;                        /* Space between dots */
    margin-top: 20px;               /* Space above */
    flex-wrap: wrap;                /* Wrap to multiple rows if needed */
}

/* Individual gallery indicator dot */
.gallery-indicator {
    width: 12px;                     /* Fixed width */
    height: 12px;                    /* Fixed height */
    border-radius: 50%;              /* Perfect circle */
    background: rgba(255, 255, 255, 0.4);  /* Semi-transparent */
    cursor: pointer;                 /* Hand cursor */
    transition: all 0.3s;            /* Smooth transitions */
    border: 1px solid var(--gold);   /* GOLD border */
}

/* Active gallery indicator */
.gallery-indicator.active {
    background: var(--gold);         /* Solid GOLD fill */
    transform: scale(1.3);           /* Larger (30%) */
}
/* ===== HAMBURGER MENU ===== */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--navy);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ===== MOBILE NAV ===== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        padding: 2rem 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.15);
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        font-size: 1.1rem;
    }
}

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */
/* ===== Tablets & Mobile (≤ 768px) ===== */
@media (max-width: 768px) {

    .hero2019 {
        min-height: 40vh;
    }
    /* ---------- Typography ---------- */
    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 2rem;
    }

    .slide-deck-section .section-title {
      font-size: 28px;
      margin-bottom: 20px;
    }

    .slide-deck-section {
        padding: 20px 0px;
    }

    .slide-counter {
      position: absolute;
      bottom: 40px;
      right: 5px;
      padding: 5px 5px;
      border-radius: 5px;
      font-size: 12px;
    }

    .vertical-indicator {
      width: 10px;
      height: 10px;
    }

    .vertical-indicators {
      position: absolute;
      right: 65px;
      top: 50%;
      transform: translateY(-50%);
      display: flex;
      flex-direction: column;
      gap: 8px;
  }
    .stat-number {
        font-size: 2rem;
    }

    /* ---------- Layout ---------- */
    .hero-stats {
        gap: 1.5rem;
    }

    /* ---------- MOBILE NAV ---------- */
    .hamburger {
        display: flex;
        background: none;
        border: none;
        cursor: pointer;
        flex-direction: column;
        gap: 6px;
    }

    .hamburger span {
        width: 25px;
        height: 3px;
        background: var(--navy);
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        padding: 2rem 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.15);
        display: none; /* hidden by default */
    }

    .nav-links.active {
        display: flex; /* shown when hamburger is clicked */
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    /* ---------- Forms & Grids ---------- */
    .registration-container {
        margin: 2rem 1rem;
        padding: 2rem 1.5rem;
    }

    .players-grid {
        grid-template-columns: 1fr;
    }

    /* ---------- Countdown ---------- */
    .countdown-timer {
        gap: 1rem;
    }

    .time-unit {
        min-width: 70px;
        padding: 0.75rem 1rem;
    }

    .time-number {
        font-size: 1.8rem;
    }

    /* ---------- Vertical Slide Deck ---------- */
    .vertical-slides-wrapper {
        height: 30vh;
        min-height: 300px;
    }

    .vertical-nav {
        right: 10px;
    }

    .vertical-btn {
        width: 30px;
        height: 30px;
        font-size: 15px;
    }

    .vertical-indicators {
        right: 55px;
    }

    /* ---------- Photo Gallery ---------- */
    .photo-gallery-section {
        padding: 20px 20px;
    }

    .gallery-slide {
        height: 300px;
    }

    .gallery-btn {
        width: 35px;
        height: 35px;
        font-size: 18px;
        margin-bottom: 20px;
    }

    .gallery-nav {
      margin-top: .5rem;
    }

    .gallery-indicators {
        gap: 6px;
    }
}