/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*, *::before, *::after {
    box-sizing: border-box;
  }

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0a0a0a;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 2000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(179, 58, 43, 0.2);
}

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

.nav-logo {
    position: relative;
    z-index: 2002;
}

.nav-logo .logo {
    height: 50px;
    width: auto;
    display: block !important;
    position: relative;
    z-index: 2003;
}

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

.nav-link {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.nav-link:hover {
    color: #b33a2b;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #b33a2b;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #111;
    padding: 0 0 0 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23b33a2b" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    position: relative;
    z-index: 2;
    padding-left: 100px;
    padding-top: 100px;
    padding-bottom: 100px;
    
}

.hero-image-diagonal {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    clip-path: polygon(55% 0%, 100% 0%, 100% 100%, 25% 100%);
    opacity: 1;
    transition: opacity 0.3s;
    overflow: hidden;
    background: #1a1a1a; /* Fallback background color */
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    z-index: 10;
}

.hero-slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 100% 100%;
    display: block;
    opacity: 1 !important;
}

/* Specific positioning for Reuben.JPG */
.hero-slide:nth-child(2) .hero-slide-image {
    object-fit: cover;
    object-position: 30% 50%;
}

/* Specific positioning for Smoothie1.JPG */
.hero-slide:nth-child(3) .hero-slide-image {
    object-fit: cover;
    object-position: 0% 80%;
    transform: scale(1.2) translateX(18%) translateY(-7%);
}

/* Specific positioning for Burger2.JPG */
.hero-slide:nth-child(4) .hero-slide-image {
    object-fit: cover;
    object-position: 100% 100%;
    transform: scale(1.16) translateX(18%) translateY(-5%);
}

/* Specific positioning for All3.JPG
.hero-slide:nth-child(5) .hero-slide-image {
    object-fit: cover;
    object-position: 100% 50%;
    transform: scale(1) translateX(20%) translateY(3%);
} */

/* Specific positioning for All6.JPG */
.hero-slide:nth-child(5) .hero-slide-image {
    object-fit: cover;
    object-position: 60% 50%;
    transform: scale(0.9) translateX(27%) translateY(7%)
}



.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: linear-gradient(45deg, #fff, #b33a2b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* white-space: nowrap; */
    min-height: 4.5rem;
    max-width: 900px;
    overflow-wrap: break-word;
    /* padding-right: 120px; */
    overflow: visible;
    text-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.8;
    line-height: 1.8;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 35px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-primary {
    background: #b33a2b;
    color: white;
    border: 2px solid #b33a2b;
}

.btn-primary:hover {
    background: #8c2417;
    border-color: #8c2417;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(179, 58, 43, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid #ffffff;
}

.btn-secondary:hover {
    background: #ffffff;
    color: #0a0a0a;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.hero-image { display: none; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}



/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 1rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #9ca3af;
    margin-bottom: 3rem;
    font-weight: 300;
}

/* Menu Section */
.menu-section {
    padding: 80px 0;
    background: #111111;
    position: relative;
}

.menu-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #b33a2b, transparent);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.menu-item {
    background: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(179, 58, 43, 0.1);
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(179, 58, 43, 0.2);
    border-color: rgba(179, 58, 43, 0.3);
}

.menu-item-image {
    height: 200px;
    background: linear-gradient(45deg, #b33a2b, #991b1b);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.menu-item-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.3), transparent);
}

.menu-item-content {
    padding: 1.5rem;
}

.menu-item-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-weight: 700;
}

.menu-item-content p {
    color: #9ca3af;
    margin-bottom: 1rem;
    line-height: 1.6;
    font-weight: 300;
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #b33a2b;
}

.sides-section {
    background: #1a1a1a;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(179, 58, 43, 0.1);
}

.sides-section h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.side-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #0a0a0a;
    border-radius: 10px;
    transition: background 0.3s ease;
    border: 1px solid rgba(179, 58, 43, 0.1);
}

.side-item:hover {
    background: #111111;
    border-color: rgba(179, 58, 43, 0.3);
}

.side-item h4 {
    color: #ffffff;
    font-weight: 600;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: #0a0a0a;
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #b33a2b, transparent);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    color: #9ca3af;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-weight: 300;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    text-align: center;
    padding: 1.5rem;
    background: #1a1a1a;
    border-radius: 10px;
    border: 1px solid rgba(179, 58, 43, 0.1);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    border-color: rgba(179, 58, 43, 0.3);
}

.feature i {
    font-size: 2.5rem;
    color: #b33a2b;
    margin-bottom: 1rem;
}

.feature h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-weight: 600;
}

.feature p {
    color: #9ca3af;
    font-size: 0.9rem;
    font-weight: 300;
}

.about-showcase {
    position: relative;
    width: 100%;
    max-width: 650px;
    height: 450px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(179, 58, 43, 0.2);
    margin-left: auto;
    margin-right: -50px;
    margin-top: -80px;
}

.about-slick-carousel {
    width: 100%;
    height: 100%;
}

.about-slick-carousel .slick-slide {
    height: 100%;
}

.about-slick-carousel .slick-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Custom Slick arrow styling */
.about-slick-carousel .slick-prev,
.about-slick-carousel .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(179, 58, 43, 0.8);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-slick-carousel .slick-prev:hover,
.about-slick-carousel .slick-next:hover {
    background: rgba(179, 58, 43, 1);
    transform: translateY(-50%) scale(1.1);
}

.about-slick-carousel .slick-prev {
    left: 5px !important;
}

.about-slick-carousel .slick-next {
    right: 5px !important;
}

/* Custom Slick dots styling */
.about-slick-carousel .slick-dots {
    position: absolute;
    bottom: 15px;
    left: 94%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 20;
    list-style: none;
    margin: 0;
    padding: 0;
}

.about-slick-carousel .slick-dots li {
    margin: 0;
}

.about-slick-carousel .slick-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0;
    padding: 0;
}

.about-slick-carousel .slick-dots .slick-active button {
    background: rgba(179, 58, 43, 1);
    transform: scale(1.2);
}

.about-slick-carousel .slick-dots button:hover {
    background: rgba(179, 58, 43, 0.8);
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #111111;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #b33a2b, transparent);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #1a1a1a;
    border-radius: 10px;
    border: 1px solid rgba(179, 58, 43, 0.1);
}

.contact-item:hover {
    border-color: rgba(179, 58, 43, 0.3);
}

.contact-item i {
    font-size: 1.5rem;
    color: #b33a2b;
    margin-top: 0.2rem;
}

.contact-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-weight: 600;
}

.contact-item p {
    color: #9ca3af;
    line-height: 1.6;
    font-weight: 300;
}

.contact-form {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(179, 58, 43, 0.1);
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #333333;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: #0a0a0a;
    color: #ffffff;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #b33a2b;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #6b7280;
}

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

/* Footer */
.footer {
    background: #0a0a0a;
    color: white;
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(179, 58, 43, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo .logo {
    height: 40px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-logo p {
    color: #9ca3af;
    font-size: 0.9rem;
    font-weight: 300;
}

.footer-links h4,
.footer-social h4 {
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 300;
}

.footer-links a:hover {
    color: #b33a2b;
}

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

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #b33a2b;
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #8c2417;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333333;
    color: #9ca3af;
    font-size: 0.9rem;
    font-weight: 300;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        position: relative;
        z-index: 1000;
    }



    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background-color: #0a0a0a;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 5rem 0 2rem 0;
        border-top: 1px solid rgba(179, 58, 43, 0.2);
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }
    
    .hamburger.active {
        position: fixed;
        top: 1rem;
        right: 20px;
        z-index: 1001;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 120px 0 0;
        position: relative;
    }

    .hero-content {
        position: relative;
        z-index: 10;
        margin-bottom: 2rem;
        padding: 0 20px;
        display: flex;
        flex-direction: column;
        overflow-x: hidden;
        max-width: 100%;
    }

    .hero-title {
        font-size: 2.5rem;
        order: 0;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        order: 1;
    }

    .hero-image-diagonal {
        position: relative;
        width: 100%;
        height: 300px;
        clip-path: none !important;
        margin-top: 2rem;
        margin-left: 0px;
        margin-right: 0px;
        left: 50%;
        transform: translateX(-50%);
        order: 2;
        overflow-x: hidden;
        max-width: 100%;
        justify-content: center;
    }

    .hero-description {
        order: 3;
        margin-top: 2rem;
    }

    .hero-buttons {
        justify-content: center;
        order: 4;
    }

    .hero-slide-image {
        width: 100%;
        height: 100%;
        max-width: 100%;
        max-height: 100%;
        object-fit: cover;
        object-position: 100% 100%;
        display: block;
        overflow-x: hidden;
        /* justify-content: center; */
    }

    /* Override specific slide positioning on mobile */
    .hero-slide:nth-child(1) .hero-slide-image {
        object-position: 10% center !important;
        transform: scale(1.2) translatex(-8%) !important;
    }

    .hero-slide:nth-child(2) .hero-slide-image {
        object-position: 10% center !important;
        transform: scale(1.2) translatex(-8%) !important;
    }

    .hero-slide:nth-child(3) .hero-slide-image {
        object-position: 10% center !important;
        transform: scale(1.5) translateX(0%) translateY(-10%) !important;
    }

    .hero-slide:nth-child(4) .hero-slide-image {
        object-position: 10% center !important;
        transform: scale(1.5) translateX(2%) translateY(-10%) !important;
    }

    .hero-slide:nth-child(5) .hero-slide-image {
        object-position: 10% center !important;
        transform: scale(1.38) translateX(2%) translateY(-10%) !important;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-showcase {
        height: 280px;
        max-width: 400px;
        margin: 0 auto;
        margin-right: 0;
        margin-top: 0;
    }
    


    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .sides-grid {
        grid-template-columns: 1fr;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    


    .section-title {
        font-size: 2rem;
    }

    .btn {
        padding: 12px 25px;
        font-size: 0.8rem;
    }

    .container {
        padding: 0 15px;
    }
}

@media (max-width: 899px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-content {
        padding-left: 30px;
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .hero-image-diagonal {
        clip-path: polygon(40% 0%, 100% 0%, 100% 100%, 15% 100%);
    }
    
    .hero-slide-image {
        object-position: 100% 100%;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-item,
.feature,
.contact-item {
    animation: fadeInUp 0.6s ease forwards;
}

/* Hover Effects */
.menu-item:hover .menu-item-image {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.feature:hover i {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Order Modal */
.order-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.order-modal-content {
    background-color: #1a1a1a;
    margin: 15% auto;
    padding: 2rem;
    border: 1px solid rgba(179, 58, 43, 0.3);
    border-radius: 15px;
    width: 90%;
    max-width: 400px;
    position: relative;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.order-modal-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.order-modal-close:hover,
.order-modal-close:focus {
    color: #b33a2b;
}

.order-modal-content h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.order-modal-content p {
    color: #9ca3af;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.delivery-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.delivery-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #ffffff;
}

.doordash-btn {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
}

.doordash-btn:hover {
    background: linear-gradient(135deg, #e55a2b, #e0851a);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.grubhub-btn {
    background: linear-gradient(135deg, #f27a1a, #d73a1a);
}

.grubhub-btn:hover {
    background: linear-gradient(135deg, #d66a15, #b32a15);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(242, 122, 26, 0.3);
}

.delivery-btn i {
    font-size: 1.2rem;
}

.pickup-reminder {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(179, 58, 43, 0.1);
    border: 1px solid rgba(179, 58, 43, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #b33a2b;
    font-size: 0.9rem;
    font-weight: 500;
}

.pickup-reminder i {
    font-size: 1rem;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: #b33a2b;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #8c2417;
}

.menu-images {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    margin-top: 2rem;
}

.menu-img {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.15);
    background: #222;
    object-fit: contain;
    opacity: 1 !important;
}