/* Base Styles & Variables */
:root {
    --primary: #F39428;
    --secondary: #63473d;
    --light: #ffffff;
    --accent: #eeb77b;
    --gray: #E7E2E1;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--light);
    overflow-x: hidden;
}

/* Futuristic Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 254, 254, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding: 0 1.5rem;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    margin-right: auto;
}



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

.nav-item .nav-link {
    position: relative;
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-item .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

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

.nav-item .nav-link:hover {
    color: var(--primary);
}

.nav-item .nav-link.active {
    color: var(--primary);
}

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

.cta-button {
    background-color: var(--primary);
    color: var(--light) !important;
    padding: 0.8rem 1.5rem !important;
    border-radius: 50px;
    transition: all 0.3s ease;
    margin-left: 1rem;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(243, 148, 40, 0.3);
}

.cta-button::after {
    display: none;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--secondary);
    transition: all 0.3s ease;
}

/* Jaw-dropping Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
    background: linear-gradient(135deg, var(--light) 0%, var(--gray) 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    gap: 5rem;
}

.hero-text {
    flex: 1;
    z-index: 2;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.hero-title span {
    color: var(--primary);
    position: relative;
}

.hero-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 15px;
    background-color: rgba(243, 148, 40, 0.2);
    z-index: -1;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 2.5rem;
    max-width: 600px;
    opacity: 0.9;
}

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

.btn-primary {
    background-color: var(--primary);
    color: var(--light);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(243, 148, 40, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(243, 148, 40, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--secondary);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid var(--secondary);
}

.btn-secondary:hover {
    background-color: var(--secondary);
    color: var(--light);
    transform: translateY(-3px);
}

.hero-image {
    flex: 1;
    position: relative;
    height: 500px;
    z-index: 1;
}

.image-container {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url('images/biytanibannerimage.webp');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.floating-spice {
    position: absolute;
    background-color: var(--primary);
    opacity: 0.7;
    border-radius: 50%;
    animation: float 15s infinite linear;
}

.floating-spice:nth-child(1) {
    width: 100px;
    height: 100px;
    top: 10%;
    left: -5%;
    animation-delay: 0s;
}

.floating-spice:nth-child(2) {
    width: 150px;
    height: 150px;
    bottom: 5%;
    right: -5%;
    animation-delay: 3s;
}

.floating-spice:nth-child(3) {
    width: 70px;
    height: 70px;
    top: 50%;
    right: -3%;
    animation-delay: 6s;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }

    100% {
        transform: translateY(0) rotate(360deg);
    }
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--secondary);
    font-weight: 600;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.hero-scroll-indicator:hover {
    opacity: 1;
}

.scroll-line {
    width: 2px;
    height: 50px;
    background: linear-gradient(to bottom, var(--primary), transparent);
    margin-bottom: 10px;
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
    0% {
        opacity: 1;
        height: 50px;
    }

    50% {
        opacity: 0.5;
        height: 70px;
    }

    100% {
        opacity: 1;
        height: 50px;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }

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

@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
        padding-top: 100px;
    }

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

    .hero-image {
        width: 80%;
        height: 400px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background-color: var(--light);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

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

    .cta-button {
        margin-left: 0;
        margin-top: 1rem;
    }

    .nav-right .nav-menu {
        display: flex;
    }
}

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .hero {
        height: 80vh;
    }

    .about-card {
        margin-bottom: 0 !important;
    }

    .menu-section {
        padding-top: 0 !important;
    }
}

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

    .hero-image {
        width: 100%;
        height: 300px;
    }
}

/* Menu Section Styles */
.menu-section {
    padding: 5rem 5%;
    background-color: var(--light);
    position: relative;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: rgba(243, 148, 40, 0.3);
    z-index: -1;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--secondary);
    opacity: 0.8;
    margin-bottom: 2rem;
}

.filter-options {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    background-color: transparent;
    border: 2px solid var(--secondary);
    color: var(--secondary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--light);
}

.filter-btn:not(.active):hover {
    background-color: var(--secondary);
    color: var(--light);
}

/* Menu Categories Grid */
.menu-categories {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.menu-category-card {
    background-color: var(--light);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(164, 142, 134, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid var(--gray);
}

.menu-category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(164, 142, 134, 0.2);
}

.menu-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--primary);
}

.menu-category-card[data-type="veg"]::before {
    background-color: green;
}

.menu-category-card[data-type="non-veg"]::before {
    background-color: var(--primary);
}

.category-content {
    padding: 2rem;
    text-align: center;
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.category-title {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.category-desc {
    color: var(--secondary);
    opacity: 0.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    height: 50px;
}

.view-items-btn {
    background-color: var(--primary);
    color: var(--light);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.view-items-btn:hover {
    background-color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(243, 148, 40, 0.3);
}

/* Menu Items Container */
.menu-items-container {
    display: none;
    margin-top: 3rem;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.back-to-categories {
    background-color: transparent;
    border: none;
    color: var(--secondary);
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.back-to-categories:hover {
    color: var(--primary);
}

.items-category-title {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.items-category-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: var(--primary);
}

/* Menu Items Grid */
.menu-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.menu-item-card {
    background-color: var(--light);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(164, 142, 134, 0.1);
    transition: all 0.3s ease;
    border: 1px solid var(--gray);
    position: relative;
}

.menu-item-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--primary);
}

.menu-item-card.veg::before {
    background-color: green;
}

.menu-item-card.non-veg::before {
    background-color: var(--primary);
}

.menu-item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(164, 142, 134, 0.2);
}

.menu-item-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.menu-item-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    height: calc(100% - 200px);
    /* image height minus */
}

.menu-item-title {
    font-size: 1.2rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
}


.menu-item-desc {
    color: var(--secondary);
    opacity: 0.8;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    margin-top: 10px;
    height: 50px;
}

.menu-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}


.menu-item-rating {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--primary);
    font-weight: 600;
}

.add-to-cart {
    background-color: var(--primary);
    color: var(--light);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-to-cart:hover {
    background-color: var(--secondary);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-categories {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .menu-items-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 576px) {
    .filter-options {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

/* Contact Section Styles */
.contact-section {
    padding: 5rem 5%;
    background-color: var(--gray);
    position: relative;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form {
    background-color: var(--light);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(164, 142, 134, 0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--secondary);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 0;
    border: none;
    background-color: transparent;
    border-bottom: 1px solid var(--accent);
    color: var(--secondary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--primary);
}

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

.underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.form-group input:focus~.underline,
.form-group select:focus~.underline,
.form-group textarea:focus~.underline {
    width: 100%;
}

.submit-btn {
    background-color: var(--primary);
    color: var(--light);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.submit-btn:hover {
    background-color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(243, 148, 40, 0.3);
}

/* Contact Info Styles */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background-color: var(--light);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(164, 142, 134, 0.1);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(164, 142, 134, 0.2);
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(243, 148, 40, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--primary);
    font-size: 1.2rem;
}

.info-title {
    font-size: 1.2rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.info-text {
    color: var(--secondary);
    opacity: 0.8;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

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

.social-icon {
    width: 40px;
    height: 40px;
    background-color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background-color: var(--primary);
    color: var(--light);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-info {
        grid-row: 1;
    }
}

@media (max-width: 576px) {
    .contact-form {
        padding: 1.5rem;
    }

    .info-card {
        padding: 1rem;
    }
}

/* Footer Styles */
.footer-section {
    background-color: var(--secondary);
    color: var(--light);
    padding: 4rem 5% 2rem;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto 3rem;
}

.footer-column {
    margin-bottom: 2rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer-logo-img {
    width: 50px;
    height: 50px;
    background: #ffffff;
    border-radius: 8px;
    object-fit: contain;
}

.logo-text {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.4px;
}

.footer-logo .logo-icon {
    font-size: 2rem;
    color: var(--primary);
}

.footer-logo .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-description {
    color: var(--accent);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--light);
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary);
}

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

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

.footer-links a {
    color: var(--accent);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.footer-contact i {
    color: var(--primary);
    margin-top: 3px;
}

.footer-contact span {
    color: var(--accent);
    line-height: 1.5;
}

.newsletter-text {
    color: var(--accent);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.newsletter-form input {
    padding: 0.8rem 1rem;
    border-radius: 5px;
    border: none;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light);
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.2);
}

.newsletter-form input::placeholder {
    color: var(--accent);
}

.newsletter-form button {
    background-color: var(--primary);
    color: var(--light);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: fit-content;
}

.newsletter-form button:hover {
    background-color: var(--light);
    color: var(--primary);
}

.payment-methods {
    display: flex;
    gap: 1rem;
    font-size: 1.5rem;
    color: var(--accent);
}

.payment-methods i {
    transition: all 0.3s ease;
    cursor: pointer;
}

.payment-methods i:hover {
    color: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(235, 205, 173, 0.2);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 1400px;
    margin: 0 auto;
}

.copyright {
    color: var(--accent);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: var(--accent);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-legal a:hover {
    color: var(--primary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        margin-top: 1rem;
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        max-width: 100%;
    }
}

/* About Us Section Styles */
.about-section {
    padding: 5rem 5%;
    background-color: var(--light);
    position: relative;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-card {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 5rem;
}

.about-card:nth-child(even) {
    flex-direction: row-reverse;
}

.about-text {
    flex: 1;
}

.about-title {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary);
    animation: expandLine 0.8s ease 0.3s forwards;
}

@keyframes expandLine {
    to {
        width: 80px;
    }
}

.about-desc {
    color: var(--secondary);
    opacity: 0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    animation: fadeIn 0.6s ease 0.2s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 0.9;
    }
}

.about-image {
    flex: 1;
    position: relative;
    height: 400px;
    min-height: 250px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(164, 142, 134, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-image:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(164, 142, 134, 0.25);
}

.image-frame {
    width: 100%;
    height: 100%;
    min-height: inherit;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform 0.5s ease;
}

.about-image:hover .image-frame {
    transform: scale(1.05);
}


.spice-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(243, 148, 40, 0.2);
}

/* Philosophy Points */
.philosophy-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.point {
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInLeft 0.5s ease forwards;
}

.point:nth-child(1) { animation-delay: 0.1s; }
.point:nth-child(2) { animation-delay: 0.2s; }
.point:nth-child(3) { animation-delay: 0.3s; }
.point:nth-child(4) { animation-delay: 0.4s; }
.point:nth-child(5) { animation-delay: 0.5s; }

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.point-icon {
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.point:hover .point-icon {
    transform: scale(1.2);
}

.point-text {
    color: var(--secondary);
    font-weight: 500;
    transition: color 0.3s ease;
}

.point:hover .point-text {
    color: var(--primary);
}

/* Team Section */
.team-section {
    margin: 5rem 0;
    text-align: center;
}

.team-title {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.team-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: var(--primary);
}

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

.team-card {
    background-color: var(--light);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(164, 142, 134, 0.1);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(164, 142, 134, 0.2);
}

.team-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.team-card:nth-child(1) .team-image {
    background-image: url('images/kitchen.webp');
}

.team-card:nth-child(2) .team-image {
    background-image: url('images/chulha.webp');
}

.team-card:nth-child(3) .team-image {
    background-image: url('images/yunushbhaipicture.webp');
}

.team-info {
    padding: 1.5rem;
    text-align: center;
}

.team-name {
    font-size: 1.3rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.team-desc {
    color: var(--secondary);
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Awards Section */
.awards-section {
    margin: 5rem 0;
    text-align: center;
}

.awards-title {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.awards-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: var(--primary);
}

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

.award-card {
    background-color: var(--light);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(164, 142, 134, 0.1);
    transition: all 0.3s ease;
}

.award-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(164, 142, 134, 0.2);
}

.award-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.award-name {
    font-size: 1.2rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.award-year {
    color: var(--secondary);
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-card {
        flex-direction: column;
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .about-card:nth-child(even) {
        flex-direction: column;
    }

    .about-image {
        width: 100%;
        height: 300px;
        min-height: 250px;
        flex: none;
        margin-top: 1.5rem;
    }

    .philosophy-points {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-image {
        height: 280px;
        min-height: 220px;
        margin-top: 1.5rem;
    }

    .about-card {
        margin-bottom: 2.5rem;
    }
}

@media (max-width: 576px) {
    .about-title {
        font-size: 1.5rem;
    }

    .about-image {
        height: 220px;
        min-height: 180px;
        border-radius: 10px;
        margin-top: 1rem;
    }

    .about-card {
        margin-bottom: 2rem;
    }

    .image-frame {
        background-size: cover;
        background-position: center;
    }

    .team-title,
    .awards-title {
        font-size: 1.5rem;
    }

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


/* Cart Icon in Navbar */
.cart-icon {
    position: relative;
    cursor: pointer;
    font-size: 1.3rem;
    color: var(--secondary);
    transition: color 0.3s ease;
}

.cart-icon:hover {
    color: var(--primary);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background-color: var(--primary);
    color: var(--light);
    font-size: 0.7rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Cart Sidebar */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 380px;
    max-width: 90%;
    height: 100%;
    background-color: var(--light);
    z-index: 2000;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.15);
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--gray);
}

.cart-header h3 {
    color: var(--secondary);
    font-size: 1.3rem;
}

.close-cart {
    background: none;
    border: none;
    font-size: 1.3rem;
    color: var(--secondary);
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-cart:hover {
    color: var(--primary);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: var(--gray);
    border-radius: 10px;
    margin-bottom: 1rem;
    position: relative;
}

.cart-item-img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    color: var(--secondary);
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.qty-btn {
    width: 25px;
    height: 25px;
    border: none;
    background-color: var(--primary);
    color: var(--light);
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.qty-btn:hover {
    background-color: var(--secondary);
}

.qty-value {
    font-weight: 600;
    color: var(--secondary);
    min-width: 20px;
    text-align: center;
}

.remove-item {
    position: absolute;
    top: 5px;
    right: 5px;
    background: none;
    border: none;
    color: #e74c3c;
    cursor: pointer;
    font-size: 0.9rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.remove-item:hover {
    opacity: 1;
}

.cart-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--secondary);
    opacity: 0.7;
}

.cart-empty i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--gray);
}

.process-order-btn {
    width: 100%;
    padding: 1rem;
    background-color: #25D366;
    color: var(--light);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.process-order-btn:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
}

/* Toast Notification */
.toast-notification {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background-color: var(--secondary);
    color: var(--light);
    padding: 1rem 2rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 3000;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.toast-notification.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.toast-notification i {
    color: #2ecc71;
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 992px) {
    .navbar-container {
        padding: 0 1rem;
    }

    .nav-right {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .cart-icon {
        margin-right: 0;
    }
}

@media (max-width: 576px) {
    .cart-sidebar {
        width: 100%;
    }
}