/* RESET & BASICS */
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
    background-color: #121212;
    color: #f0f0f0;
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
}
h1, h2, h3, .logo { font-family: 'Oswald', sans-serif; text-transform: uppercase; }

/* COLORS */
:root {
    --gold: #D4AF37; 
    --dark: #0a0a0a;
    --yelp-red: #d32323;
}

/* NAV */
nav {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 40px; background: rgba(0,0,0,0.9);
    position: fixed; width: 100%; top: 0; z-index: 1000;
    border-bottom: 1px solid #333;
}
.logo { font-size: 1.5rem; font-weight: 700; letter-spacing: 2px; color: white; }
.links a { margin-left: 20px; text-decoration: none; color: #ccc; font-weight: 700; font-size: 0.9rem; }
.links .btn-main {
    background: var(--gold); color: black; padding: 10px 20px;
    border-radius: 2px; transition: 0.3s;
}
.links .btn-main:hover { background: white; }
.links a.active { color: var(--gold); border-bottom: 2px solid var(--gold); }

/* HERO */
.hero {
    height: 90vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/hero.jpg');
    background-size: cover; background-position: center;
    display: flex; align-items: center; justify-content: center;
    text-align: center;
    margin-top: 60px;
}
.hero-content h1 { font-size: 5rem; line-height: 1.1; margin: 20px 0; letter-spacing: 3px; }
.hero-content p { font-size: 1.2rem; max-width: 600px; margin: 0 auto 30px; color: #ccc; }
.status-badge {
    background: #00ff00; color: black; padding: 5px 10px;
    font-weight: bold; font-size: 0.8rem; letter-spacing: 1px;
    text-transform: uppercase;
}
.btn-hero {
    display: inline-block; padding: 15px 40px; border: 2px solid var(--gold);
    color: var(--gold); text-decoration: none; font-weight: bold;
    font-family: 'Oswald', sans-serif; letter-spacing: 2px;
    transition: 0.3s;
}
.btn-hero:hover { background: var(--gold); color: black; }

/* MENU SECTION */
.menu-section { padding: 80px 40px; background: #181818; }
.menu-section h2 { text-align: center; font-size: 3rem; margin-bottom: 50px; color: var(--gold); }
.beer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px; max-width: 1200px; margin: 0 auto;
}
.beer-card {
    background: #222; padding: 25px; border: 1px solid #333;
    transition: transform 0.3s, border-color 0.3s;
}
.beer-card:hover { transform: translateY(-5px); border-color: var(--gold); }
.beer-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.beer-num { color: var(--gold); font-weight: bold; font-family: 'Oswald', sans-serif; }
.abv { color: #666; font-weight: bold; font-size: 0.9rem; }
.beer-card h3 { font-size: 1.5rem; margin-bottom: 10px; line-height: 1.2; }
.beer-card p { color: #ccc; font-size: 0.9rem; }

/* REVIEWS SECTION */
.reviews-section {
    padding: 80px 20px;
    background: #111; 
    text-align: center;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}
.reviews-container { max-width: 1200px; margin: 0 auto; }
.reviews-section h2 { color: white; margin-bottom: 50px; font-size: 2.5rem; }
.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}
.review-card {
    background: #1a1a1a; padding: 30px; border-radius: 4px;
    border-left: 4px solid var(--gold); text-align: left;
}
.stars { color: var(--gold); font-size: 1.2rem; margin-bottom: 15px; letter-spacing: 2px; }
.review-card p { color: #ccc; font-style: italic; font-size: 1rem; line-height: 1.6; margin-bottom: 20px; }
.reviewer { color: white; font-weight: bold; font-family: 'Oswald', sans-serif; letter-spacing: 1px; font-size: 0.9rem; }

.yelp-btn {
    display: inline-block; padding: 12px 30px;
    background: transparent; border: 1px solid var(--yelp-red);
    color: white; text-decoration: none; font-weight: bold; font-family: 'Oswald', sans-serif;
    transition: 0.3s; margin-top: 20px;
}
.yelp-btn:hover { background: var(--yelp-red); border-color: var(--yelp-red); }

/* INFO SPLIT */
.info-split { display: flex; flex-wrap: wrap; background: black; }
.info-text, .info-image { flex: 1; min-width: 400px; }
.info-text { padding: 80px; display: flex; flex-direction: column; justify-content: center; }
.info-image img { width: 100%; height: 100%; object-fit: cover; }
.info-text h2 { font-size: 3rem; margin-bottom: 20px; }
.hours-box { margin-top: 40px; border-top: 1px solid #333; padding-top: 30px; }
.hours-list { list-style: none; }
.hours-list li {
    display: flex; justify-content: space-between;
    margin-bottom: 10px; border-bottom: 1px solid #222; padding-bottom: 5px;
}
.hours-list span:first-child { color: var(--gold); font-weight: bold; }

/* FOOTER */
footer { background: #0a0a0a; padding: 60px 40px 20px; border-top: 5px solid var(--gold); }
.footer-content {
    display: flex; justify-content: space-between; flex-wrap: wrap;
    max-width: 1200px; margin: 0 auto 50px;
}
.footer-col { margin-bottom: 30px; min-width: 200px; }
.footer-col h4 { color: #666; margin-bottom: 20px; letter-spacing: 1px; }
.map-link { color: var(--gold); text-decoration: none; }
.copyright { text-align: center; color: #444; font-size: 0.8rem; border-top: 1px solid #222; padding-top: 20px; }

/* SUB-PAGE STYLES */
.page-header { background: #0a0a0a; padding: 120px 20px 40px; text-align: center; border-bottom: 1px solid #222; }
.page-header h1 { font-size: 3rem; color: white; margin-bottom: 10px; }
.page-header p { color: var(--gold); font-size: 1.2rem; letter-spacing: 1px; }
.price-box { margin-top: 20px; background: #1a1a1a; border-top: 1px solid var(--gold); padding: 10px; }
.price-row { display: flex; justify-content: space-between; font-size: 0.85rem; padding: 5px 0; border-bottom: 1px solid #333; color: #ccc; }
.price-row:last-child { border-bottom: none; }
.price-row span:last-child { color: white; font-weight: bold; }

/* MOBILE ADJUSTMENTS */
@media (max-width: 768px) {
    /* Stack the Navigation */
    nav { 
        flex-direction: column; 
        padding: 15px 10px; 
    }
    .logo { margin-bottom: 10px; }
    .links { 
        display: flex; 
        justify-content: center; 
        gap: 15px; 
        width: 100%;
    }
    .links a { 
        margin-left: 0; 
        font-size: 0.8rem; 
        text-transform: uppercase;
    }
    .links .btn-main { padding: 5px 10px; }

    /* Resize Hero Text */
    .hero { height: 70vh; margin-top: 100px; } /* Adjust for taller nav */
    .hero-content h1 { font-size: 2.8rem; }
    
    /* Stack Info Section */
    .info-split { flex-direction: column-reverse; } /* Put image on top of text */
    .info-text { padding: 40px 20px; }
    .info-image { min-height: 300px; }
    
    /* Single Column Grids */
    .beer-grid, .review-grid { grid-template-columns: 1fr; }
}