/* Baymeadows Cafe & Grill - Custom Styles */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Lato:wght@300;400;700&display=swap');

:root {
    --primary-dark: #1a1a1a;
    --chalkboard-bg: #2b2b2b;
    --accent-gold: #d4af37;
    --accent-orange: #ff6b35;
    --white: #ffffff;
    --light-gray: #e0e0e0;
    --cream: #f8f5f0;
    --dark-overlay: rgba(0, 0, 0, 0.7);
}

* {
    font-family: 'Lato', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

body {
    background-color: var(--chalkboard-bg);
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-attachment: fixed;
}

/* Hero Section */
.hero-section {
    background:
        linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(26, 26, 26, 0.85) 100%),
        url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?w=1920&q=80') center/cover no-repeat;
    min-height: 75vh;
    position: relative;
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.5);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    font-size: 4rem;
    font-weight: 900;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    letter-spacing: 2px;
}

.hero-section .lead {
    font-size: 1.3rem;
    font-weight: 300;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    max-width: 800px;
    margin: 0 auto;
}

/* Navbar */
.navbar {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.9)) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--white) !important;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    color: var(--accent-gold) !important;
    transform: scale(1.02);
}

.navbar-brand img {
    height: 120px;
    width: auto;
    margin-right: 12px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
    object-fit: contain;
    margin-top: -10px;
    margin-bottom: -10px;
}

.nav-link {
    color: var(--light-gray) !important;
    font-weight: 500;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 1.2rem !important;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-gold) !important;
}

/* Cards */
.info-card {
    background: linear-gradient(145deg, rgba(40, 40, 40, 0.95), rgba(20, 20, 20, 0.95)) !important;
    border: none;
    border-left: 4px solid var(--accent-gold);
    transition: all 0.4s ease;
    color: var(--white);
    backdrop-filter: blur(10px);
    overflow: hidden;
    position: relative;
}

.info-card .text-muted {
    color: rgba(255, 255, 255, 0.85) !important;
}

.info-card .card-text {
    color: rgba(255, 255, 255, 0.9) !important;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s ease;
}

.info-card:hover::before {
    left: 100%;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
    border-left-width: 6px;
}

.info-card .card-title {
    color: var(--accent-gold);
    font-size: 1.8rem;
    font-weight: 600;
}

.info-card .text-primary {
    color: var(--accent-gold) !important;
}

.info-card a {
    color: var(--accent-gold);
    font-weight: 500;
}

.info-card a:hover {
    color: var(--accent-orange);
}

/* Footer */
.footer {
    background: linear-gradient(to top, #000000, #1a1a1a);
    border-top: 3px solid var(--accent-gold);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

/* Menu Section */
.menu-section {
    background:
        linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.9)),
        url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1920&q=80') center/cover fixed;
    position: relative;
}

.menu-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.menu-header {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(26, 26, 26, 0.95) 100%);
    border-bottom: 4px solid var(--accent-gold);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.menu-header h1 {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: 3px;
}

.menu-category {
    background: linear-gradient(145deg, rgba(35, 35, 35, 0.98), rgba(20, 20, 20, 0.98)) !important;
    border: none;
    border-top: 3px solid var(--accent-gold);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.menu-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.2);
}

.menu-category h2 {
    color: var(--accent-gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.5rem;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
    padding-bottom: 0.5rem;
}

.menu-item {
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.menu-item:hover {
    background: rgba(212, 175, 55, 0.05);
    padding-left: 0.5rem;
    margin-left: -0.5rem;
    border-left: 3px solid var(--accent-gold);
}

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

.menu-item h5 {
    color: var(--white);
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
}

.menu-item p {
    color: rgba(224, 224, 224, 0.8) !important;
    font-size: 0.95rem;
    font-style: italic;
}

.menu-price {
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 1.2rem;
    font-family: 'Playfair Display', serif;
    white-space: nowrap;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #c99d2e 100%);
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.8rem 2rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #e5c14f 0%, var(--accent-gold) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
}

.btn-outline-primary {
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.8rem 2rem;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.3);
}

.btn-light {
    background-color: var(--white);
    color: var(--primary-dark);
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.8rem 2rem;
    transition: all 0.3s ease;
}

.btn-light:hover {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #c99d2e 100%);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
}

.btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.8rem 2rem;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.3);
}

/* Social Icons */
.social-icon {
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(60, 60, 60, 0.8), rgba(30, 30, 30, 0.8));
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    font-size: 1.3rem;
}

.social-icon:hover {
    background: linear-gradient(145deg, var(--accent-gold), #c99d2e);
    border-color: var(--accent-gold);
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

/* Hours Table */
.hours-table td {
    padding: 0.5rem 1rem;
    color: var(--white);
}

/* PDF Download Section */
.pdf-download-section {
    background: linear-gradient(145deg, rgba(35, 35, 35, 0.95), rgba(20, 20, 20, 0.95));
    border: 3px solid var(--accent-gold);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.pdf-download-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.3);
}

.pdf-download-section h3 {
    color: var(--accent-gold);
    font-size: 2rem;
}

.pdf-link {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.pdf-link:hover {
    color: var(--accent-orange);
}

/* Call to Action Box */
.cta-box {
    background: linear-gradient(145deg, rgba(35, 35, 35, 0.95), rgba(20, 20, 20, 0.95)) !important;
    border: 3px solid var(--accent-gold);
    color: var(--white);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.cta-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.3);
}

.cta-box h3 {
    color: var(--accent-gold);
    font-size: 2rem;
}

/* About Section */
.about-section {
    background:
        linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.85)),
        url('https://images.unsplash.com/photo-1555396273-367ea4eb4db5?w=1920&q=80') center/cover fixed;
    color: var(--white);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.about-section .container {
    position: relative;
    z-index: 1;
}

.about-section h2 {
    color: var(--accent-gold);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.about-section .lead {
    font-size: 1.2rem;
    line-height: 1.8;
}

.about-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

/* Uber Eats CTA */
.uber-eats-cta {
    background: linear-gradient(145deg, #000000, #1a1a1a) !important;
    border: 4px solid #06c167;
    color: var(--white);
    box-shadow: 0 8px 30px rgba(6, 193, 103, 0.4), 0 0 40px rgba(6, 193, 103, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.uber-eats-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(6, 193, 103, 0.15) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.uber-eats-cta:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(6, 193, 103, 0.6), 0 0 60px rgba(6, 193, 103, 0.3);
    border-width: 5px;
}

.uber-eats-cta h2 {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 900;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 20px rgba(6, 193, 103, 0.6), 0 0 40px rgba(6, 193, 103, 0.4), 2px 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 1px;
}

.uber-eats-cta i.bi-basket2 {
    color: #06c167;
    display: block;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 15px rgba(6, 193, 103, 0.8)) drop-shadow(0 0 30px rgba(6, 193, 103, 0.4));
}

.uber-eats-cta .lead {
    color: #ffffff;
    font-weight: 500;
    font-size: 1.3rem;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9), 0 0 10px rgba(6, 193, 103, 0.3);
}

.btn-uber-eats {
    background: linear-gradient(135deg, #06c167 0%, #05a857 100%);
    border: 3px solid #ffffff;
    color: #ffffff;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 1.2rem 3.5rem;
    box-shadow: 0 6px 25px rgba(6, 193, 103, 0.5), 0 0 30px rgba(6, 193, 103, 0.3);
    transition: all 0.3s ease;
    font-size: 1.3rem;
    position: relative;
    z-index: 1;
    overflow: hidden;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
}

.btn-uber-eats::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.btn-uber-eats:hover::before {
    width: 400px;
    height: 400px;
}

.btn-uber-eats:hover {
    background: linear-gradient(135deg, #07e076 0%, #06c167 100%);
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 12px 40px rgba(6, 193, 103, 0.7), 0 0 50px rgba(6, 193, 103, 0.5);
    color: #ffffff;
    border-color: #06c167;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    /* Navbar adjustments for mobile */
    .navbar-brand {
        font-size: 1.1rem;
        letter-spacing: 0.5px;
    }

    .navbar-brand img {
        height: 60px;
        margin-right: 8px;
        margin-top: -5px;
        margin-bottom: -5px;
    }

    /* Hero section text sizing */
    .hero-section h1 {
        font-size: 2.2rem;
        letter-spacing: 1px;
    }

    .hero-section .lead {
        font-size: 1rem;
    }

    /* Menu header */
    .menu-header h1 {
        font-size: 2.2rem;
        letter-spacing: 1px;
    }

    /* About section */
    .about-section h2 {
        font-size: 2rem;
    }

    /* Uber Eats CTA */
    .uber-eats-cta h2 {
        font-size: 1.8rem;
        text-shadow: 0 0 15px rgba(6, 193, 103, 0.6), 0 0 30px rgba(6, 193, 103, 0.4), 2px 2px 4px rgba(0, 0, 0, 0.8);
    }

    .uber-eats-cta {
        padding: 2rem 1.5rem !important;
    }

    .uber-eats-cta .lead {
        font-size: 1.1rem;
    }

    .btn-uber-eats {
        font-size: 1.1rem;
        padding: 1rem 2.5rem;
        letter-spacing: 1.5px;
    }
}

@media (max-width: 576px) {
    /* Extra small devices */
    .navbar-brand {
        font-size: 0.95rem;
        letter-spacing: 0.3px;
    }

    .navbar-brand img {
        height: 50px;
        margin-right: 6px;
    }

    .hero-section h1 {
        font-size: 1.8rem;
    }

    .menu-header h1 {
        font-size: 1.8rem;
    }

    .uber-eats-cta h2 {
        font-size: 1.5rem;
        text-shadow: 0 0 12px rgba(6, 193, 103, 0.6), 0 0 25px rgba(6, 193, 103, 0.4), 2px 2px 4px rgba(0, 0, 0, 0.8);
    }

    .uber-eats-cta {
        padding: 1.5rem 1rem !important;
    }

    .uber-eats-cta .lead {
        font-size: 1rem;
    }

    .btn-uber-eats {
        font-size: 1rem;
        padding: 0.9rem 2rem;
        letter-spacing: 1px;
    }
}
