:root {
    --primary-red: #982121;
    --dark-red: #813531;
    --bright-orange: #ff611d;
    --primary-yellow: #ffb80e;
    --white: #ffffff;
    --off-white: #f9f9f9;
    --text-dark: #333;
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Montserrat', sans-serif;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--white);
    color: var(--text-dark);
    overflow-x: hidden;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.navbar {
    width: 100%;
    height: 80px;
    background-color: var(--primary-red);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.logo-container {
    font-size: 28px;
    font-weight: 900;
    font-family: var(--font-heading);
}

.logo-white { color: var(--white); font-family: serif; }
.logo-yellow { color: var(--primary-yellow); }

.nav-links-container {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-list a {
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    font-size: 16px;
    transition: 0.3s;
}

.nav-list a:hover {
    color: var(--primary-yellow);
}

.desktop-buttons {
    display: flex;
    gap: 15px;
}

.mobile-buttons {
    display: none;
}

.create-meal-btn, .order-now-btn {
    height: 40px;
    padding: 0 20px;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    font-size: 14px;
    transition: 0.3s;
    border: none;
}

.create-meal-btn {
    background-color: transparent;
    border: 2px solid var(--primary-yellow);
    color: var(--white);
}

.create-meal-btn:hover {
    background-color: var(--primary-yellow);
    color: var(--primary-red);
}

.order-now-btn {
    background-color: var(--primary-yellow);
    color: var(--white);
}

.order-now-btn:hover {
    background-color: var(--bright-orange);
}

.hamburger {
    display: none;
    font-size: 24px;
    color: var(--white);
    cursor: pointer;
}

.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 5%;
    background-color: #fffbf0;
    min-height: 90vh;
}

.hero-content {
    flex: 1;
    padding-right: 20px;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--dark-red);
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
    max-width: 500px;
    line-height: 1.6;
}

.hero-cta {
    background-color: var(--primary-yellow);
    color: var(--white);
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(255, 184, 14, 0.4);
}

.hero-cta:hover {
    background-color: var(--bright-orange);
    transform: translateY(-2px);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.hero-image img {
    width: 100%;
    max-width: 600px;
    border-radius: 20px;
    box-shadow: 20px 20px 0px rgba(152, 33, 33, 0.1);
}

.menu-section {
    padding: 80px 5%;
    background-color: var(--white);
}

.section-title {
    text-align: center;
    font-family: var(--font-heading);
    color: var(--primary-red);
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.carousel-container {
    width: 100%;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.menu-card {
    min-width: 25%;
    padding: 10px;
}

.card-inner {
    background: var(--white);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: 0.3s;
    border: 1px solid #eee;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-inner:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(152, 33, 33, 0.15);
}

.image-box {
    width: 100px;
    height: 100px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-yellow);
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content h3 {
    color: var(--dark-red);
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.desc {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 15px;
    flex-grow: 1;
}

.price {
    color: var(--primary-red);
    font-weight: 700;
    font-size: 1.1rem;
}

.nav-btn {
    background: var(--white);
    border: 2px solid var(--primary-yellow);
    color: var(--primary-yellow);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    z-index: 2;
    transition: 0.3s;
}

.nav-btn:hover {
    background: var(--primary-yellow);
    color: var(--white);
}

.prev-btn { margin-right: 15px; }
.next-btn { margin-left: 15px; }

.offers-section {
    background-color: var(--primary-yellow);
    padding: 80px 5%;
    overflow: hidden;
}

.offers-container .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.main-headline {
    color: var(--primary-red);
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
}

.subtext {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-red);
    margin-top: 10px;
}

.slider-wrapper {
    overflow-x: auto;
    padding-bottom: 20px;
    scrollbar-width: none;
}

.slider-wrapper::-webkit-scrollbar {
    display: none;
}

.slider-track {
    display: flex;
    gap: 30px;
    width: max-content;
}

.offer-card {
    background: var(--white);
    border-radius: 20px;
    width: 320px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    position: relative;
    transition: transform 0.3s;
}

.offer-card:hover {
    transform: translateY(-8px);
}

.discount-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-red);
    color: var(--white);
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: rotate(-15deg);
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: rotate(-15deg) scale(1); }
    50% { transform: rotate(-15deg) scale(1.1); }
    100% { transform: rotate(-15deg) scale(1); }
}

.img-box {
    height: 200px;
    width: 100%;
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-body {
    padding: 20px;
}

.card-title {
    font-size: 1.4rem;
    color: var(--dark-red);
    font-weight: 700;
    margin-bottom: 5px;
}

.card-desc {
    color: #666;
    margin-bottom: 20px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.add-btn {
    background: var(--bright-orange);
    color: var(--white);
    border: none;
    padding: 8px 18px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.add-btn:hover {
    background: var(--dark-red);
}

.bestsellers-section {
    padding: 80px 5%;
    background-color: var(--off-white);
}

.bs-header {
    text-align: center;
    margin-bottom: 50px;
}

.sub-heading {
    color: var(--bright-orange);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

.main-heading {
    font-family: var(--font-heading);
    color: var(--primary-red);
    font-size: 2.5rem;
    margin-top: 5px;
}

.heading-line {
    width: 60px;
    height: 4px;
    background: var(--primary-yellow);
    margin: 15px auto 0;
}

.bs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.food-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: 0.3s;
    position: relative;
}

.food-card:hover {
    transform: translateY(-8px);
}

.card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--bright-orange);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 2;
}

.image-wrapper {
    height: 220px;
    width: 100%;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.food-card:hover .image-wrapper img {
    transform: scale(1.1);
}

.card-details {
    padding: 20px;
}

.rating {
    color: var(--primary-yellow);
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.rating span {
    color: #999;
    font-size: 0.8rem;
    margin-left: 5px;
}

.food-title {
    font-size: 1.3rem;
    color: var(--dark-red);
    margin-bottom: 5px;
}

.food-desc {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f4f4f4;
    padding-top: 15px;
}

.cart-btn {
    background: var(--primary-yellow);
    color: var(--dark-red);
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.cart-btn:hover {
    background: var(--dark-red);
    color: var(--white);
}

.why-choose-section {
    padding: 80px 5%;
    background-color: #fffbf0;
}

.why-choose-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.why-image {
    flex: 1;
}

.why-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 20px 20px 0 var(--primary-yellow);
}

.why-content {
    flex: 1;
}

.why-title {
    font-family: var(--font-heading);
    color: var(--dark-red);
    font-size: 2.8rem;
    margin-bottom: 10px;
}

.why-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-icon {
    background: var(--primary-red);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-text h3 {
    color: var(--dark-red);
    margin-bottom: 5px;
}

.feature-text p {
    color: #666;
    font-size: 0.95rem;
}

.site-footer {
    background-color: var(--dark-red);
    color: var(--white);
    padding-top: 70px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding: 0 5% 50px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 20px;
}

.footer-desc {
    color: #e0e0e0;
    line-height: 1.6;
}

.footer-heading {
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--bright-orange);
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--primary-yellow);
    padding-left: 5px;
}

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

.contact-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    color: #e0e0e0;
}

.contact-list i {
    color: var(--bright-orange);
    margin-top: 5px;
}

.time-box {
    background: rgba(0,0,0,0.2);
    padding: 15px;
    border-radius: 8px;
    border-left: 3px solid var(--bright-orange);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.time-box span {
    font-weight: 700;
}

.sub-hours {
    font-size: 0.85rem;
    color: #ccc;
    margin-bottom: 15px;
}

.footer-images-row {
    display: flex;
    gap: 10px;
}

.footer-images-row img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.2);
}

.footer-bottom {
    padding: 25px 5%;
    background: rgba(0,0,0,0.2);
}

.bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: #ccc;
    font-size: 0.9rem;
}

.social-icons {
    display: flex;
    gap: 15px;
}

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

.social-icons a:hover {
    background: var(--bright-orange);
    transform: translateY(-3px);
}

@media (max-width: 1024px) {
    .menu-card { min-width: 33.33%; }
    .footer-container { grid-template-columns: 1fr 1fr; }
    .hero-content h1 { font-size: 2.8rem; }
}

@media (max-width: 768px) {
    .navbar { padding: 0 20px; }
    .nav-links-container {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--primary-red);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 50px;
        transition: 0.4s;
    }
    
    .nav-links-container.active { left: 0; }
    
    .nav-list { flex-direction: column; align-items: center; gap: 40px; }
    .nav-list a { font-size: 1.5rem; }
    
    .desktop-buttons { display: none; }
    .mobile-buttons { display: flex; flex-direction: column; gap: 15px; width: 80%; }
    .mobile-buttons button { width: 100%; }
    
    .hamburger { display: block; }
    
    .hero-section {
        flex-direction: column-reverse;
        padding: 40px 20px;
        text-align: center;
    }
    
    .hero-content { padding-right: 0; margin-top: 30px; }
    .hero-content p { margin: 0 auto 30px; }
    
    .menu-card { min-width: 100%; }
    .carousel-wrapper { padding: 0; }
    .nav-btn { display: none; }
    .carousel-container { overflow-x: auto; scroll-snap-type: x mandatory; }
    .carousel-track { width: max-content; }
    .menu-card { scroll-snap-align: center; }
    
    .why-choose-container { flex-direction: column; }
    .footer-container { grid-template-columns: 1fr; gap: 30px; }
    .bottom-container { flex-direction: column; gap: 20px; text-align: center; }
}