:root {
    --dark-bg: #111111;
    --accent-red: #E63946;
    --accent-gold: #F5B400;
    --accent-white: #FFFFFF;
    --accent-gray: #AAAAAA;
    --card-bg: #1E1E1E;
    --section-padding: 80px 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-bg);
    color: var(--accent-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Styles */
header {
    padding: 10px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background-color: rgba(17, 17, 17, 0.029);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-gold);
    color: var(--dark-bg);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    margin-right: 10px;
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
}

.logo-text span {
    color: var(--accent-gold);
}

.logo-tagline {
    font-size: 10px;
    display: block;
    color: var(--accent-gray);
    letter-spacing: 1px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: var(--accent-white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--accent-gold);
}

.header-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
    background-color: var(--accent-red);
    color: var(--accent-white);
}

.btn-primary:hover {
    background-color: #c1121f;
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: var(--accent-gold);
    color: var(--dark-bg);
}

.btn-secondary:hover {
    background-color: #e6ac00;
    transform: translateY(-3px);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1513104890138-7c749659a591?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--accent-gray);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Menu Section */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent-gold);
}

.section-title p {
    color: var(--accent-gray);
    max-width: 600px;
    margin: 20px auto 0;
}

.menu {
    padding: var(--section-padding);
}

.menu-categories {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.category-btn {
    background: var(--card-bg);
    border: none;
    color: var(--accent-white);
    padding: 10px 25px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
}

.category-btn.active,
.category-btn:hover {
    background: var(--accent-red);
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 30px;
}

.menu-item {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s;
}

.menu-item:hover {
    transform: translateY(-10px);
}

.menu-item-img {
    height: 200px;
    overflow: hidden;
}

.menu-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.menu-item:hover .menu-item-img img {
    transform: scale(1.1);
}

.menu-item-content {
    padding: 20px;
}

.menu-item-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
}

.menu-item-price {
    color: var(--accent-gold);
}

.menu-item-desc {
    color: var(--accent-gray);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.menu-item-order {
    background: var(--accent-red);
    color: var(--accent-white);
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s;
}

.menu-item-order:hover {
    background: #c1121f;
}




/* Delivery Section */
.delivery {
    padding: var(--section-padding);
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1572802419224-296b0aeee0d9?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2015&q=80') no-repeat center center/cover;
}

.delivery-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.delivery-info h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.delivery-info p {
    margin-bottom: 20px;
    color: var(--accent-gray);
}

.delivery-times {
    margin-top: 30px;
}

.delivery-times h4 {
    margin-bottom: 15px;
    color: var(--accent-gold);
}

.time-slots {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.time-slot {
    background: var(--card-bg);
    padding: 10px 15px;
    border-radius: 8px;
    text-align: center;
}

.time-slot span {
    display: block;
    font-weight: 600;
}

.time-slot .days {
    font-size: 0.9rem;
    color: var(--accent-gray);
}

.time-slot .hours {
    color: var(--accent-gold);
    font-size: 1.1rem;
}

.map-container {
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Hours Section */
.hours {
    padding: var(--section-padding);
    position: relative;
}

.hours-container {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 0;
    align-items: center;
}

.hours-image {
    height: 400px;
    overflow: hidden;
    border-radius: 15px;
}

.hours-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hours-content {
    padding: 0 40px;
    text-align: center;
}

.hours-content h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--accent-gold);
}

.opening-hours {
    margin-bottom: 30px;
}

.hour-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hour-row:last-child {
    border-bottom: none;
}

.hour-day {
    font-weight: 500;
}

.hour-time {
    color: var(--accent-gold);
    font-weight: 600;
}



/* Recipe Grid Section */


.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.container .special-dish .section-title {
    text-align: center;
    margin-top: 10%;
}


.recipe-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    position: relative;
    padding: 40px 0;
}

.recipe-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.plate {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: #000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7),
        inset 0 0 0 2px rgba(230, 199, 134, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.plate:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.9),
        0 0 20px rgba(230, 199, 134, 0.4),
        inset 0 0 0 2px rgba(230, 199, 134, 0.5);
}

.food-content {
    width: 85%;
    height: 85%;
    border-radius: 50%;
    background: linear-gradient(45deg, #2c1f0f, #4a3c2a);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #e6c786;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    text-align: center;
    padding: 20px;
    overflow: hidden;
    position: relative;
}

.food-content img {
    width: 120%;
    height: 120%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.5s ease;
}

.calorie-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(145deg, #e6c786, #c9a866);
    color: #1a1a1a;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.recipe-info {
    text-align: center;
    margin-top: 25px;
}

.recipe-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: #e6c786;
}

.recipe-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #d0d0d0;
    max-width: 280px;
}

/* Decorative elements */
.garnish {
    position: absolute;
    z-index: 3;
    opacity: 0.7;
}

.garnish-1 {
    top: 30%;
    left: 15%;
    transform: rotate(25deg);
    font-size: 2rem;
    color: #4a8c5f;
}

.garnish-2 {
    bottom: 25%;
    right: 18%;
    transform: rotate(-15deg);
    font-size: 1.8rem;
    color: #c4534d;
}

.garnish-3 {
    top: 20%;
    right: 20%;
    font-size: 1.5rem;
    color: #4a8c5f;
}

.garnish-4 {
    bottom: 30%;
    left: 20%;
    transform: rotate(10deg);
    font-size: 1.7rem;
    color: #c4534d;
}

/* Connecting lines */
.connector {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.curve {
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg,
            transparent,
            rgba(230, 199, 134, 0.6),
            transparent);
    transform-origin: left center;
}

.curve-1 {
    top: 30%;
    left: 33%;
    width: 34%;
    transform: rotate(-5deg);
}

.curve-2 {
    top: 30%;
    left: 67%;
    width: 34%;
    transform: rotate(5deg);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .recipe-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .connector {
        display: none;
    }
    .container .special-dish .section-title {
        margin-top: 20%;
    }
}

@media (max-width: 576px) {
    .recipe-grid {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 2.5rem;
    }

    .container .special-dish .section-title {
        margin-top: 20%;
    }
}



/* About Section */
.about {
    padding: var(--section-padding);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 20px;
    color: var(--accent-gray);
}

.about-image {
    position: relative;
}

.about-image-main {
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
}

.about-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image-decoration {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    bottom: -30px;
    right: -30px;
    border: 5px solid var(--dark-bg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about-image-decoration img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}






/* Gallery Section */
.gallery {
    padding: var(--section-padding);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.gallery-filter {
    background: var(--card-bg);
    border: none;
    color: var(--accent-white);
    padding: 8px 20px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
}

.gallery-filter.active,
.gallery-filter:hover {
    background: var(--accent-red);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-overlay i {
    font-size: 2rem;
    color: var(--accent-white);
}

/* Footer */
footer {
    background: #0A0A0A;
    padding: 60px 0 30px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-gold);
}

.footer-col p {
    color: var(--accent-gray);
    margin-bottom: 15px;
}

.footer-contact-item {
    display: flex;
    margin-bottom: 15px;
}

.footer-contact-item i {
    color: var(--accent-gold);
    margin-right: 10px;
    margin-top: 5px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: var(--card-bg);
    border-radius: 50%;
    color: var(--accent-white);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--accent-red);
    transform: translateY(-5px);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--accent-gray);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    opacity: 1;
    color: yellow;
    padding-left: 5px;
}

.footer-newsletter p {
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    margin-bottom: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 5px 0 0 5px;
    background: var(--card-bg);
    color: var(--accent-white);
}

.newsletter-form button {
    padding: 0 20px;
    border: none;
    background: var(--accent-red);
    color: var(--accent-white);
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background: #c1121f;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--accent-gray);
    font-size: 0.9rem;
}

.aditya-links {
    text-align: center;
    margin-top: 10px;
    font-size: 0.9rem;
    color: var(--accent-gray);
}
.aditya-links a {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;    
}


/* Decorative Elements */
.floating-chili {
    position: absolute;
    top: 20%;
    right: 5%;
    animation: float 6s ease-in-out infinite;
}

.floating-onion {
    position: absolute;
    bottom: 15%;
    left: 5%;
    animation: float 8s ease-in-out infinite;
}

.floating-herb {
    position: absolute;
    top: 40%;
    left: 3%;
    animation: float 7s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }

    100% {
        transform: translateY(0) rotate(0deg);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {

    .delivery-container,
    .about-container {
        grid-template-columns: 1fr;
    }

    .hours-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hours-image:last-child {
        display: none;
    }

    .hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
    }

    .header-buttons {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .menu-items {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}