/* ==========================================================================
   1. Variables & Reset
   ========================================================================== */
:root {
    --primary-blue: #288ac2;
    --accent-blue: #0b3579;
    --bg-black: #000000;
    --glass-bg: rgba(0, 0, 0, 0.2);
    --border-color: rgba(255, 255, 255, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-y: scroll;
    scroll-behavior: smooth;
}

body {
    background: var(--bg-black);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
    font-family: "Roboto", sans-serif;
    color: #fff;
    line-height: 1.6;
}

/* ==========================================================================
   2. Reusable Components
   ========================================================================== */
.container,
.header-content,
section,
.about-section,
.bag-section,
.grid-section {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
}

h2 {
    font-size: 3rem;
    font-style: italic;
    font-weight: 900;
    text-align: center;
    padding: 30px 0;
    text-transform: uppercase;
}

h4 {
    padding: 60px 0 30px 0;
    text-transform: uppercase;
}

h5 {
    padding: 30px 0 10px 0;
    text-transform: uppercase;
}

/* ==========================================================================
   3. Header & Navigation
   ========================================================================== */
header {
    padding: 20px 0;
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.logo {
    width: 100px;
}

.logo img {
    width: 100%;
    height: auto;
    display: block;
}

.glass-nav {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 20px 35px;
    box-shadow: 0 0 10px var(--accent-blue);
    border: 1px solid var(--border-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: var(--transition);
    font-size: 1rem;
    font-style: italic;
    font-weight: 900;
}

.nav-links a:hover {
    color: var(--primary-blue);
    text-shadow: 0 0 8px var(--primary-blue);
}

/* Hamburger (Desktop Hidden) */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 3001;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 3px;
    background: white;
    transition: var(--transition);
}

.btn {
    color: #fff;
    background-color: #0b3579;
    margin: 10px auto;
    padding: 10px 30px;
    border-radius: 10px;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    display: block;
    width: fit-content;
}

.btn:hover {
    background-color: #288ac2;
    cursor: pointer;
}

.btn a {
    text-decoration: none;
    color: #fff;
}

.btn a:visited {
    color: #fff;
    text-decoration: none;
}



/* ==========================================================================
   4. Sections (About, Bag, Grid)
   ========================================================================== */

/* About */
.about-section {
    padding: 100px 20px;
}

.about-container {
    display: flex;
    gap: 50px;
    align-items: center;
}

.photo-placeholder {
    flex: 1;
    aspect-ratio: 4 / 5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-placeholder img {
    width: 100%;
    height: 100%;
    padding: 0 20px;
    border-radius: 12px;
}

.about-text {
    flex: 1.5;
}

.about-text h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.about-text p {
    padding: 10px;
    color: #888888;
}

li {
    color: #888888;
    margin-left: 60px;
}

/* Bag Table */
.bag-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.bag-table th,
.bag-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #222;
}

.club-img {
    width: 75px;
    height: 75px;
    border-radius: 4px;
    object-fit: cover;
}

.bag-table td a {
    text-decoration: none;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 700;
    transition: var(--transition);
}

.bag-table td a:hover {
    color: var(--primary-blue);
}

.contact-section {
    text-align: center;
    padding: 20px 0;
}

.contact-section a {
    color: #288ac2;
    text-decoration: none;
    font-weight: bold;
}

/* Grid Layouts */
.grid-3x1 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.grid-item {
    border-radius: 12px;
    overflow: hidden;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: zoom-in;
    display: block;
}

.grid-item.card-style {
    position: relative;
}

.rating {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--accent-blue);
    /* Uses #288ac2 from your variables */
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: 900;
    font-style: italic;
    font-size: 0.9rem;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    pointer-events: none;
    /* Allows the image to still be clickable/zoomable */
}

/* Styling for Grid Items with Text */
.card-style {
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    height: auto;
}

.item-details {
    padding: 15px;
    text-align: left;
}

.item-details h3 {
    font-style: italic;
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--primary-blue);
    margin-bottom: 5px;
    text-transform: uppercase;
}

.item-details p {
    font-size: 0.9rem;
    color: #bbb;
}

.grid-item img {
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.scorecard img {
    aspect-ratio: 4 / 5;
}

/* ==========================================================================
   5. Lightbox & Footer
   ========================================================================== */
.lightbox {
    display: none;
    position: fixed;
    z-index: 4000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
    cursor: zoom-out;
}

.lightbox-content {
    max-width: 90%;
    max-height: 85%;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(11, 53, 121, 0.5);
    border: 1px solid var(--border-color);
}

.close-lightbox {
    position: absolute;
    top: 30px;
    right: 50px;
    color: white;
    font-size: 50px;
    cursor: pointer;
}

footer {
    text-align: center;
    padding: 30px 20px 60px;
    font-size: 0.75rem;
    color: #555;
    text-transform: uppercase;
}

/* ==========================================================================
   6. Mobile Responsiveness (Max-width: 768px)
   ========================================================================== */
@media (max-width: 768px) {
    .header-content {
        flex-direction: row;
        justify-content: center;
        position: relative;
        padding: 10px 0;
        text-align: center;
    }

    .hamburger {
        display: flex;
        position: fixed;
        top: 30px;
        right: 20px;
        font-family: "Roboto", sans-serif;
        font-weight: 900;
        font-style: italic;
    }

    /* Mobile Nav Overlay */
    .glass-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        border: none;
        border-radius: 0;
        display: flex !important;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease-in-out;
        z-index: 2500;
    }

    .glass-nav.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        gap: 40px;
    }

    .nav-links a {
        font-size: 2rem;
        font-family: "Roboto", sans-serif;
        font-weight: 900;
        font-style: italic;
    }

    /* Hamburger Animation */
    .hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    /* Content Layout Adjustments */

    .about-section {
        max-width: 1100px;
        margin: 0 auto;
        width: 100%;
        padding: 0 20px;
    }

    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-text h1 {
        font-size: 2.2rem;
    }

    .grid-3x1 {
        grid-template-columns: 1fr;
    }

    .desktop-only {
        display: none;
    }

    h2 {
        font-size: 2.3rem;
    }

    footer {
        padding: 50px 0;
    }
}