/* Pint & Barrel Drafthouse - Styles */
:root {
    --gold: #d4a54e;
    --gold-dark: #b8923f;
    --dark: #1a1a1a;
    --darker: #0f0f0f;
    --light: #f5f5f5;
    --gray: #888;
    --red: #8b2635;
}

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

body {
    font-family: 'Open Sans', sans-serif;
    background: var(--dark);
    color: var(--light);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--light);
}

/* Navigation */
.main-nav {
    background: var(--darker);
    padding: 1rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

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

.logo {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
}

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

.nav-links a {
    color: var(--light);
    font-weight: 600;
    padding: 0.5rem;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--gold);
    transition: 0.3s;
}

/* Hero */
.hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
                url('images/wood-bg.jpg') center/cover;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

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

.tagline {
    font-size: 1.4rem;
    color: var(--gray);
    font-style: italic;
    margin-bottom: 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s;
}

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

.btn-primary:hover {
    background: var(--light);
    color: var(--dark);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--dark);
}

/* Info Cards */
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: var(--darker);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--gold);
}

.card h2 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.card address {
    font-style: normal;
    line-height: 1.8;
}

.hours-list {
    list-style: none;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #333;
}

.hours-list li:last-child {
    border-bottom: none;
}

/* Featured Section */
.featured {
    background: var(--darker);
    padding: 4rem 2rem;
    text-align: center;
}

.featured h2 {
    color: var(--gold);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.feature {
    padding: 1.5rem;
}

.feature-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.feature h3 {
    color: var(--light);
    margin-bottom: 0.5rem;
}

.feature p {
    color: var(--gray);
}

/* Footer */
footer {
    background: var(--darker);
    padding: 2rem;
    text-align: center;
    border-top: 1px solid #333;
}

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

footer p {
    color: var(--gray);
    margin-bottom: 0.5rem;
}

/* Menu Page Styles */
.page-header {
    background: var(--darker);
    padding: 3rem 2rem;
    text-align: center;
}

.page-header h1 {
    color: var(--gold);
    font-size: 3rem;
}

.page-header p {
    color: var(--gray);
    margin-top: 0.5rem;
}

.menu-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
}

.menu-section {
    margin-bottom: 3rem;
}

.menu-section h2 {
    color: var(--gold);
    font-size: 1.8rem;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.menu-section-note {
    color: var(--gray);
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1rem 0;
    border-bottom: 1px solid #333;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item-info {
    flex: 1;
    padding-right: 1rem;
}

.menu-item-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--light);
    text-transform: uppercase;
}

.menu-item-desc {
    color: var(--gray);
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

.menu-item-price {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    color: var(--gold);
    font-weight: 600;
}

.menu-subsection {
    background: var(--darker);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.menu-subsection h3 {
    color: var(--red);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.toppings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.5rem;
}

.topping-item {
    display: flex;
    justify-content: space-between;
    padding: 0.25rem 0;
    font-size: 0.9rem;
}

.topping-item span:last-child {
    color: var(--gold);
}

/* Events Page */
.events-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

.event-card {
    background: var(--darker);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--gold);
}

.event-date {
    color: var(--gold);
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.event-card h3 {
    color: var(--light);
    margin-bottom: 0.5rem;
}

.event-card p {
    color: var(--gray);
}

.no-events {
    text-align: center;
    padding: 3rem;
    color: var(--gray);
}

/* Location Page */
.location-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.map-container {
    background: #333;
    border-radius: 8px;
    overflow: hidden;
    min-height: 300px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 300px;
    border: none;
}

/* Mobile Responsive */
/* Taps Page */
.taps-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem;
}

.taps-section {
    margin-bottom: 3rem;
}

.taps-section h2 {
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.tap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.tap-card {
    background: var(--darker);
    border-radius: 8px;
    padding: 1.5rem;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
}

.tap-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.tap-card.rotating {
    border-left: 4px solid var(--gold);
}

.tap-card.staple {
    border-left: 4px solid var(--gray);
}

.tap-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gold);
    color: var(--dark);
    font-family: 'Oswald', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 3px;
    text-transform: uppercase;
}

.tap-name {
    color: var(--light);
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
    padding-right: 3rem;
}

.tap-style {
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.tap-details {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    margin-bottom: 0.75rem;
}

.tap-abv {
    background: rgba(212, 165, 78, 0.2);
    color: var(--gold);
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    font-size: 0.8rem;
    font-weight: 600;
}

.tap-brewery {
    color: var(--gray);
    font-size: 0.8rem;
}

.tap-desc {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

.taps-cta {
    background: var(--darker);
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 8px;
    margin-top: 2rem;
}

.taps-cta h2 {
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.taps-cta p {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

/* Gallery Page */
.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.filter-btn {
    background: var(--darker);
    color: var(--gray);
    border: 2px solid #333;
    padding: 0.5rem 1.5rem;
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 4px;
}

.filter-btn:hover,
.filter-btn.active {
    color: var(--gold);
    border-color: var(--gold);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}

.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: var(--light);
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--light);
    font-size: 2rem;
    cursor: pointer;
}

/* Newsletter Form */
.newsletter-section {
    background: var(--darker);
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 8px;
    margin: 2rem 0;
}

.newsletter-section h2 {
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.newsletter-section p {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input[type="email"] {
    flex: 1;
    min-width: 200px;
    padding: 1rem;
    border: 2px solid #333;
    border-radius: 4px;
    background: var(--dark);
    color: var(--light);
    font-size: 1rem;
}

.newsletter-form input[type="email"]:focus {
    border-color: var(--gold);
    outline: none;
}

.newsletter-form button {
    padding: 1rem 2rem;
    background: var(--gold);
    color: var(--dark);
    border: none;
    border-radius: 4px;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background: var(--light);
}

.form-message {
    width: 100%;
    padding: 0.5rem;
    border-radius: 4px;
    text-align: center;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
}

.form-message.error {
    display: block;
    background: rgba(220, 53, 69, 0.2);
    color: #dc3545;
}

/* Order Online Button */
.order-btn {
    background: var(--red);
    color: var(--light) !important;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 700;
    animation: pulse 2s infinite;
}

.order-btn:hover {
    background: #a62f40;
    color: var(--light);
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(139, 38, 53, 0.7); }
    50% { box-shadow: 0 0 0 8px rgba(139, 38, 53, 0); }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--darker);
        flex-direction: column;
        padding: 1rem;
        gap: 0;
        text-align: center;
        box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    }

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

    .nav-links li {
        padding: 0.75rem 0;
        border-bottom: 1px solid #333;
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 1.1rem;
    }

    .featured h2 {
        font-size: 2rem;
    }

    .menu-item {
        flex-direction: column;
    }

    .menu-item-price {
        margin-top: 0.5rem;
    }
}
