/* Menu Category Headings */
.menu-category {
    text-align: center;
    font-size: 2.2rem;
    font-family: 'Playfair Display', serif;
    color: #d4af37;
    margin: 2.5rem 0 1.5rem 0;
    letter-spacing: 1px;
    font-weight: 700;
    text-shadow: 0 2px 12px rgba(212, 175, 55, 0.08), 0 1px 0 #fff;
    border-bottom: 2px solid #d4af37;
    display: inline-block;
    padding: 0 32px 8px 32px;
    background: rgba(255,255,255,0.7);
    border-radius: 12px 12px 0 0;
}
/* Skip link for accessibility - appears when focused */
.skip-link {
    position: absolute;
    left: -999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    z-index: 2000;
}
.skip-link:focus {
    left: 50%;
    transform: translateX(-50%);
    top: 1rem;
    width: auto;
    height: auto;
    padding: 10px 16px;
    background: #2c5aa0;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Navigation */
.navbar {
    background: #1a2332;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.navbar:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

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

.nav-logo h2 {
    color: #d4af37;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    transition: all 0.3s ease;
    cursor: pointer;
}

.nav-logo h2:hover {
    transform: scale(1.05);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

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

.nav-link {
    color: #ecf0f1;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 16px;
    border-radius: 5px;
}

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

.nav-link:hover {
    color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.nav-link:hover::before {
    width: 80%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: scale(1.1);
}

.bar {
    width: 25px;
    height: 3px;
    background: #ecf0f1;
    margin: 3px 0;
    transition: all 0.3s ease;
}

.hamburger:hover .bar {
    background: #d4af37;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/home_img.avif');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.hero-content h1:hover {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    transform: scale(1.02);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 600px;
    transition: all 0.3s ease;
}

.hero-content p:hover {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.cta-button {
    display: inline-block;
    background: #2c5aa0;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: all 0.5s;
}

.cta-button:hover {
    background: #1e3f73;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(44, 90, 160, 0.4);
}

.cta-button:hover::before {
    left: 100%;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a2332;
    transition: all 0.3s ease;
}

.about-text h2:hover {
    color: #2c5aa0;
    transform: translateX(10px);
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 5px;
}

.about-text p:hover {
    background: rgba(44, 90, 160, 0.05);
    transform: translateX(5px);
    box-shadow: -3px 0 0 #2c5aa0;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.about-image:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.1);
}

.about-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(44, 90, 160, 0.1), rgba(26, 35, 50, 0.1));
    opacity: 0;
    transition: all 0.3s ease;
}

.about-image:hover::after {
    opacity: 1;
}

/* Menu Section */
.menu {
    padding: 100px 0;
    background: white;
}

.menu h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a2332;
    transition: all 0.3s ease;
}

.menu h2:hover {
    color: #2c5aa0;
    transform: scale(1.05);
    text-shadow: 0 0 10px rgba(44, 90, 160, 0.2);
}

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

.menu-item {
    background: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    cursor: pointer;
    border: 2px solid transparent;
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.05), rgba(26, 35, 50, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    border-radius: 8px;
}

.menu-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: #2c5aa0;
}

.menu-item:hover::before {
    opacity: 1;
}

.menu-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.4s ease;
}

.menu-item:hover img {
    transform: scale(1.05);
    filter: brightness(1.1) contrast(1.1);
}

.menu-item h3 {
    font-size: 1.3rem;
    margin: 1rem;
    color: #1a2332;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    font-weight: 600;
}

.menu-item:hover h3 {
    color: #2c5aa0;
    transform: translateX(8px);
}

.menu-item p {
    margin: 0 1rem;
    color: #666;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    line-height: 1.6;
}

.menu-item:hover p {
    color: #444;
    transform: translateX(4px);
}

.menu-item .price {
    display: block;
    margin: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: #d4af37;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    z-index: 2;
    padding: 8px 12px;
    border-radius: 20px;
    background: rgba(212, 175, 55, 0.1);
    display: inline-block;
    margin-top: 1.5rem;
}

/* Discount and price variants */
.price-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 1rem;
}
.price-discount {
    font-size: 1.25rem;
    font-weight: 800;
    color: #d35400; /* warm accent for discounted price */
}
.price-old {
    font-size: 1rem;
    color: #888;
    text-decoration: line-through;
}
.discount-badge {
    background: #d4af37;
    color: #1a2332;
    padding: 4px 8px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.85rem;
}

.menu-item .price::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #d4af37, #b8941f);
    opacity: 0;
    border-radius: 20px;
    transition: all 0.3s ease;
    z-index: -1;
}

.menu-item:hover .price {
    transform: scale(0.9) translateY(-2px);
    color: #1a2332;
    background: transparent;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #f8f9fa;
}

.contact h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a2332;
    transition: all 0.3s ease;
}

.contact h2:hover {
    color: #2c5aa0;
    transform: scale(1.05);
}

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

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-item:hover {
    background: white;
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-left: 4px solid #2c5aa0;
}

.contact-item i {
    color: #d4af37;
    font-size: 1.5rem;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
}

.contact-item:hover i {
    transform: scale(1.2) rotate(5deg);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.contact-item h3 {
    color: #1a2332;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.contact-item:hover h3 {
    color: #2c5aa0;
}

.contact-item p {
    color: #666;
    line-height: 1.8;
    transition: all 0.3s ease;
}

.contact-item:hover p {
    color: #444;
}

.contact-item a {
    transition: all 0.3s ease;
}

.contact-item a:hover {
    text-decoration: underline;
    transform: scale(1.05);
}

/* Footer */
.footer {
    background: #1a2332;
    color: #ecf0f1;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #d4af37;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    transition: all 0.3s ease;
}

.footer-section h3:hover {
    transform: translateX(5px);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.8;
    transition: all 0.3s ease;
}

.footer-section p:hover {
    color: #ecf0f1;
    transform: translateX(3px);
}

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

.social-links a {
    color: #bdc3c7;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover {
    color: #d4af37;
    background: rgba(212, 175, 55, 0.2);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.social-links a:nth-child(1):hover { background: rgba(59, 89, 152, 0.8); }
.social-links a:nth-child(2):hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-links a:nth-child(3):hover { background: rgba(29, 161, 242, 0.8); }
.social-links a:nth-child(4):hover { background: rgba(0, 119, 181, 0.8); }
.social-links a:nth-child(5):hover { background: rgba(37, 244, 238, 0.8); color: black; }

.footer-bottom {
    border-top: 1px solid #2c3e50;
    padding-top: 2rem;
    text-align: center;
    color: #bdc3c7;
    transition: all 0.3s ease;
}

.footer-bottom:hover {
    color: #ecf0f1;
}

/* Delivery Section */
.delivery {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

.delivery h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a2332;
    transition: all 0.3s ease;
}

.delivery h2:hover {
    color: #2c5aa0;
    transform: scale(1.05);
}

.delivery-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.delivery-platforms {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.delivery-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.delivery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.05), rgba(212, 175, 55, 0.05));
    opacity: 0;
    transition: all 0.3s ease;
}

.delivery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.delivery-item:hover::before {
    opacity: 1;
}

.delivery-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.delivery-item:hover .delivery-logo {
    transform: scale(1.1);
    background: rgba(44, 90, 160, 0.1);
}

.delivery-logo img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.delivery-item h3 {
    font-size: 1.5rem;
    color: #1a2332;
    margin-bottom: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.delivery-item:hover h3 {
    color: #2c5aa0;
}

.delivery-item p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.delivery-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #2c5aa0;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.delivery-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: all 0.5s;
}

.delivery-button:hover {
    background: #1e3f73;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(44, 90, 160, 0.3);
}

.delivery-button:hover::before {
    left: 100%;
}

.delivery-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid #e9ecef;
}

.delivery-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-weight: 500;
    transition: all 0.3s ease;
}

.delivery-feature:hover {
    color: #2c5aa0;
    transform: translateY(-2px);
}

.delivery-feature i {
    color: #d4af37;
    font-size: 1.2rem;
}

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

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #1a2332;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

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

    .hero-content p {
        font-size: 1.1rem;
    }

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

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

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

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

    .social-links {
        justify-content: center;
    }

    .delivery-platforms {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .delivery-info {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .delivery h2 {
        font-size: 2rem;
    }
}

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

    .nav-logo h2 {
        font-size: 1.5rem;
    }

    .menu-item {
        margin: 0 10px;
    }
}

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

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

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #2c5aa0;
    border-radius: 4px;
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: #1e3f73;
    box-shadow: 0 0 5px rgba(44, 90, 160, 0.3);
}
::-webkit-scrollbar-thumb:hover {
    background: #c0392b;
    box-shadow: 0 0 5px rgba(231, 76, 60, 0.3);
}

::-webkit-scrollbar-thumb:hover {
    background: #c0392b;
    box-shadow: 0 0 5px rgba(231, 76, 60, 0.3);
}
