/* What's For Dinner - Route 6 Bar & Grill - Industrial/Music Theme */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Roboto:wght@400;500;700&family=Oswald:wght@400;500;600;700&display=swap');

:root {
    /* Industrial concrete/steel palette */
    --steel-dark: #1a1a1a;
    --steel-medium: #2d2d2d;
    --steel-light: #4a4a4a;
    --concrete: #5c5c5c;
    --concrete-light: #808080;
    --chrome: #c0c0c0;
    --silver: #e8e8e8;
    --white: #ffffff;

    /* Accent colors - music/bar vibe */
    --neon-red: #ff3b3b;
    --neon-orange: #ff6b35;
    --warm-amber: #f5a623;
    --gold: #d4af37;
    --cream: #f5f0e1;

    /* Shadows */
    --shadow-dark: rgba(0, 0, 0, 0.75);
    --shadow-soft: rgba(0, 0, 0, 0.45);
    --shadow-deep: 0 15px 50px rgba(0, 0, 0, 0.6), 0 5px 15px rgba(0, 0, 0, 0.4);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--steel-dark);
    color: var(--silver);
    min-height: 100vh;
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

/* Parallax Background Layer */
body::before {
    content: '';
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: 300%;
    background: var(--steel-dark) url('../images/icons/concrete tile.png');
    background-size: 400px;
    z-index: -1;
    will-change: transform;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

/* Header */
header {
    background: linear-gradient(180deg, var(--steel-dark) 0%, rgba(26, 26, 26, 0.98) 100%);
    border-bottom: 3px solid var(--neon-orange);
    padding: 0.25rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px var(--shadow-dark);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--white);
}

.logo-img {
    height: 50px;
    width: auto;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.logo-img.header-main-logo {
    height: 128px;
    max-width: 400px;
    object-fit: contain;
    margin: 0.25rem 0;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.8));
}

.logo-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Navigation */
nav ul {
    display: flex;
    list-style: none;
    gap: 0.25rem;
    flex-wrap: wrap;
}

nav ul li a {
    display: block;
    padding: 0.6rem 1rem;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--silver);
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
    background: var(--neon-orange);
    color: var(--white);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 3rem 1rem;
    background: linear-gradient(rgba(26, 26, 26, 0.85), rgba(45, 45, 45, 0.9));
    border-bottom: 3px solid var(--neon-orange);
}

.hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--white);
    text-shadow: 3px 3px 6px var(--shadow-dark);
    margin-bottom: 0.5rem;
    letter-spacing: 3px;
}

.hero .tagline {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    color: var(--chrome);
    font-weight: 400;
    letter-spacing: 1px;
}

/* Status Banner */
.status-banner {
    margin-top: 1.5rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    display: inline-block;
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.status-banner.open {
    background: linear-gradient(135deg, #2d5a27, #1a4d1a);
    border: 2px solid #4caf50;
}

.status-banner.closed {
    background: linear-gradient(135deg, #5a2727, #4d1a1a);
    border: 2px solid var(--neon-red);
}

/* Panels */
.panel {
    background: linear-gradient(145deg, rgba(45, 45, 45, 0.95), rgba(26, 26, 26, 0.98));
    border: 3px solid var(--concrete);
    border-radius: 8px;
    padding: 2rem;
    margin: 1.5rem 0;
    box-shadow: 0 8px 25px var(--shadow-dark);
}

.panel h2 {
    font-family: 'Bebas Neue', sans-serif;
    color: var(--neon-orange);
    font-size: 2rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    border-bottom: 2px solid var(--concrete-light);
    padding-bottom: 0.5rem;
}

.panel p {
    color: var(--silver);
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

/* Contact Banner */
.contact-banner {
    background: linear-gradient(135deg, var(--steel-medium), var(--steel-dark));
    border: 3px solid var(--neon-orange);
    border-radius: 8px;
    padding: 2rem;
    margin: 1.5rem 0;
    text-align: center;
    box-shadow: 0 8px 30px var(--shadow-dark);
}

.contact-banner h2 {
    font-family: 'Bebas Neue', sans-serif;
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.contact-info-large {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.contact-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem;
    border-radius: 8px;
    min-width: 200px;
    flex: 1;
    max-width: 280px;
}

.contact-item h3 {
    font-family: 'Bebas Neue', sans-serif;
    color: var(--steel-dark);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.contact-item p {
    color: #333;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.phone-number a {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    color: var(--neon-orange);
    text-decoration: none;
    font-weight: 600;
}

.phone-number a:hover {
    color: var(--neon-red);
}

.map-link {
    display: inline-block;
    margin-top: 0.5rem;
    color: var(--steel-medium);
    text-decoration: none;
    font-size: 0.9rem;
}

.map-link:hover {
    color: var(--neon-orange);
}

/* Hours Table */
.hours-table {
    width: 100%;
    max-width: 500px;
    margin: 1rem auto;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    overflow: hidden;
}

.hours-table tr:nth-child(even) {
    background: rgba(0, 0, 0, 0.05);
}

.hours-table td {
    padding: 1rem;
    font-size: 1.1rem;
    color: #1a1a1a;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.hours-table td:first-child {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    color: var(--steel-dark);
}

.hours-table td:last-child {
    text-align: right;
    color: #333;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid var(--neon-orange);
}

.info-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    color: var(--steel-dark);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.info-card p {
    color: #444;
    font-size: 0.95rem;
    margin: 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    background: var(--neon-orange);
    color: var(--white);
}

.btn:hover {
    background: var(--neon-red);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--neon-orange);
    color: var(--neon-orange);
}

.btn-outline:hover {
    background: var(--neon-orange);
    color: var(--white);
}

/* Menu Styles */
.menu-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.menu-tab {
    background: var(--steel-medium);
    border: 2px solid var(--concrete);
    color: var(--silver);
    padding: 0.8rem 1.2rem;
    min-height: 48px;
    border-radius: 4px;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu-tab:hover {
    background: var(--concrete);
    border-color: var(--chrome);
}

.menu-tab.active {
    background: var(--neon-orange);
    border-color: var(--neon-orange);
    color: var(--white);
}

.menu-section {
    display: none;
}

.menu-section.active {
    display: block;
}

.menu-section h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: var(--neon-orange);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--concrete);
    letter-spacing: 2px;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1rem;
    margin-bottom: 0.75rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 6px;
    border-left: 4px solid var(--neon-orange);
}

.menu-item-name {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 1.15rem;
    color: #1a1a1a;
}

.menu-item-desc {
    font-size: 0.95rem;
    color: #555;
    margin-top: 0.25rem;
}

.menu-item-price {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--neon-orange);
    background: var(--steel-dark);
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    white-space: nowrap;
}

/* Carousel Styles */
.carousel-section {
    background: linear-gradient(145deg, rgba(45, 45, 45, 0.95), rgba(26, 26, 26, 0.98));
    border: 3px solid var(--concrete);
    border-radius: 8px;
    padding: 2rem;
    margin: 1.5rem 0;
    position: relative;
    overflow: hidden;
}

.carousel-section h2 {
    font-family: 'Bebas Neue', sans-serif;
    color: var(--white);
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.carousel-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}

.carousel-track {
    display: flex;
    gap: 1rem;
    transition: transform 0.1s linear;
}

.carousel-item {
    flex-shrink: 0;
    width: 280px;
    height: 200px;
    border-radius: 6px;
    overflow: hidden;
    border: 2px solid var(--concrete);
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-speed-zone {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 10;
    cursor: pointer;
}

.carousel-speed-zone.left {
    left: 0;
    background: linear-gradient(90deg, rgba(26, 26, 26, 0.5), transparent);
}

.carousel-speed-zone.right {
    right: 0;
    background: linear-gradient(-90deg, rgba(26, 26, 26, 0.5), transparent);
}

/* Photo Gallery */
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.photo-item {
    height: 200px;
    border-radius: 6px;
    overflow: hidden;
    border: 2px solid var(--concrete);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.photo-item:hover {
    transform: scale(1.02);
    border-color: var(--neon-orange);
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    color: var(--chrome);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid var(--concrete);
    border-radius: 4px;
    color: #1a1a1a;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* Footer */
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, #2d2d2d, #1a1a1a);
    border-top: 3px solid var(--neon-orange);
    padding: 1rem 1.25rem;
    z-index: 1000;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.5);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.5));
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer-title {
    font-family: 'Bebas Neue', sans-serif;
    color: var(--white);
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.footer-address {
    color: var(--chrome);
    font-size: 0.85rem;
}

.footer-address a {
    color: var(--chrome);
    text-decoration: none;
}

.footer-address a:hover {
    color: var(--neon-orange);
}

.footer-center {
    text-align: center;
}

.footer-hours {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    letter-spacing: 1px;
}

.footer-hours.open {
    background: rgba(76, 175, 80, 0.3);
    color: #4caf50;
    border: 1px solid #4caf50;
}

.footer-hours.closed {
    background: rgba(255, 59, 59, 0.2);
    color: var(--neon-red);
    border: 1px solid var(--neon-red);
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.social-links {
    display: flex;
    gap: 0.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--steel-medium);
    border: 2px solid var(--concrete);
    border-radius: 4px;
    color: var(--chrome);
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--neon-orange);
    border-color: var(--neon-orange);
    color: var(--white);
}

.footer-credit {
    font-size: 0.75rem;
    color: var(--concrete-light);
}

.footer-credit a {
    color: var(--concrete-light);
    text-decoration: none;
}

.footer-credit a:hover {
    color: var(--neon-orange);
}

.footer-secret {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
}

.footer-secret a {
    color: rgba(128, 128, 128, 0.3);
    text-decoration: none;
    font-size: 0.7rem;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

/* Main content padding for fixed footer */
main {
    padding-bottom: 120px;
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        justify-content: center;
    }

    .logo-img.header-main-logo {
        height: 60px;
    }

    .logo-text {
        font-size: 1.4rem;
    }

    footer {
        padding: 0.5rem 0.75rem;
    }

    .footer-content {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 0.5rem;
    }

    .footer-left {
        gap: 0.5rem;
    }

    .footer-logo {
        height: 35px;
    }

    .footer-title {
        font-size: 0.85rem;
    }

    .footer-address {
        font-size: 0.7rem;
    }

    .footer-center {
        order: 3;
        width: 100%;
        text-align: center;
    }

    .footer-hours {
        font-size: 0.7rem;
        padding: 0.2rem 0.5rem;
    }

    .footer-right .social-links {
        display: none;
    }

    .footer-credit {
        font-size: 0.6rem;
    }

    .footer-secret {
        display: none;
    }

    main {
        padding-bottom: 85px;
    }

    .contact-info-large {
        flex-direction: column;
        align-items: center;
    }

    .contact-item {
        max-width: 100%;
    }

    .menu-item {
        flex-direction: column;
        gap: 0.5rem;
    }

    .menu-item-price {
        align-self: flex-start;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 0.3rem 0.5rem;
    }

    .footer-content {
        gap: 0.3rem;
    }

    .footer-logo {
        height: 25px;
    }

    .footer-title {
        font-size: 0.75rem;
    }

    .footer-address {
        display: none;
    }

    .footer-hours {
        font-size: 0.65rem;
        padding: 0.15rem 0.35rem;
    }

    .footer-credit {
        font-size: 0.55rem;
    }

    main {
        padding-bottom: 70px;
    }
}
