/*
Theme Name: NautiPint
Theme URI: https://nautipint.com
Description: Custom theme for NautiPint Brewing Company
Version: 1.0
Author: NautiPint Brewing Company
*/

/* ===== VARIABLES ===== */
:root {
    --navy: #1B2A6B;
    --gold: #F5A800;
    --skyblue: #87CEEB;
    --white: #ffffff;
    --lightgray: #f5f5f5;
}

/* ===== RESET ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Georgia', serif;
    background: var(--white);
    color: var(--navy);
}

/* ===== HEADER ===== */
header {
    background: var(--navy);
    padding: 15px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header img.logo {
    height: 80px;
    width: auto;
}

nav a {
    color: var(--white);
    text-decoration: none;
    margin-left: 30px;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: Arial, sans-serif;
    transition: color 0.2s;
}

nav a:hover { color: var(--gold); }

/* ===== HERO ===== */
.hero {
    position: relative;
    width: 100%;
    max-height: 500px;
    overflow: hidden;
}

.hero img {
    width: 100%;
    object-fit: cover;
    max-height: 500px;
    object-position: center 30%;
    display: block;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(27,42,107,0.92));
    padding: 40px;
    color: var(--white);
}

.hero-overlay h1 {
    font-size: 2.5em;
    color: var(--gold);
    margin-bottom: 10px;
}

.hero-overlay p {
    font-size: 1.2em;
    max-width: 600px;
}

/* ===== CONTENT ===== */
.content {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 40px;
}

.content h2 {
    color: var(--navy);
    font-size: 2em;
    border-bottom: 3px solid var(--gold);
    padding-bottom: 10px;
    margin-bottom: 30px;
}

/* ===== GALLERY ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.gallery-grid img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 6px;
    border: 3px solid transparent;
    transition: border 0.2s, transform 0.2s;
}

.gallery-grid img:hover {
    border-color: var(--gold);
    transform: scale(1.02);
}

/* ===== TAP LIST ===== */
.tap-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.tap-card {
    background: var(--lightgray);
    border-top: 4px solid var(--gold);
    border-radius: 6px;
    padding: 25px;
}

.tap-card h3 {
    color: var(--navy);
    font-size: 1.3em;
    margin-bottom: 8px;
}

.tap-card .style {
    color: var(--gold);
    font-weight: bold;
    font-size: 0.9em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.tap-card p { color: #555; line-height: 1.6; }

/* ===== FOOTER ===== */
footer {
    background: var(--navy);
    color: var(--white);
    text-align: center;
    padding: 30px;
    margin-top: 80px;
    font-family: Arial, sans-serif;
    font-size: 0.9em;
}

footer span { color: var(--gold); }

/* ===== HAMBURGER MENU ===== */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: all 0.3s;
}

nav.open { display: flex; }

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    header {
        padding: 12px 20px;
        flex-wrap: wrap;
        position: relative;
    }

    header img.logo { height: 55px; }

    .hamburger { display: flex; }

    nav {
        display: none;
        flex-direction: column;
        width: 100%;
        background: var(--navy);
        padding: 10px 0 20px 0;
        margin-top: 10px;
    }

    nav a {
        margin: 0;
        padding: 12px 20px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        font-size: 15px;
    }

    .hero { max-height: 350px; }
    .hero img { max-height: 350px; }

    .hero-overlay h1 { font-size: 1.4em; }
    .hero-overlay p { font-size: 0.95em; }
    .hero-overlay { padding: 20px; }

    .content { margin: 30px auto; padding: 0 20px; }
    .content h2 { font-size: 1.5em; }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tap-list {
        grid-template-columns: 1fr;
    }
}