/* ===========================
   CSS Variables & Reset
   =========================== */
:root {
    /* Colors - Fast Food Theme */
    --primary: #FF6B35;
    --primary-dark: #E55A2B;
    --primary-light: #FF8556;
    --secondary: #FFD23F;
    --secondary-dark: #F4C430;
    --accent: #4ECDC4;
    --dark: #1a1a1a;
    --dark-light: #2d2d2d;
    --gray: #6c757d;
    --gray-light: #f8f9fa;
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-strong: rgba(0, 0, 0, 0.2);

    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-display: 'Playfair Display', serif;

    /* Spacing */
    --section-padding: 80px 20px;
    --container-max: 1140px;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ===========================
   Layout Components
   =========================== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

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

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 20px auto 0;
}

/* ===========================
   Navigation
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 2px 20px var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 4px 30px var(--shadow-strong);
}

.navbar__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.navbar__logo {
    font-size: 1.5rem;
    font-weight: 700;
}

.navbar__title {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar__toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.navbar__toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    border-radius: 3px;
    transition: var(--transition);
}

.navbar__menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.navbar__link {
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.navbar__link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.navbar__link:hover::after {
    width: 100%;
}

.navbar__link--cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    padding: 10px 25px;
    border-radius: 50px;
}

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

.navbar__link--cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

/* ===========================
   Hero Section
   =========================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero__image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomIn 20s ease-in-out infinite alternate;
}

@keyframes zoomIn {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.8), rgba(255, 210, 63, 0.6));
}

.hero__content {
    position: relative;
    z-index: 1;
    color: var(--white);
    text-align: center;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 5rem);
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out;
}

.hero__subtitle {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero__rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.stars {
    display: flex;
    gap: 5px;
}

.star {
    color: var(--secondary);
    font-size: 1.5rem;
}

.stars--small .star {
    font-size: 1rem;
}

.stars--large .star {
    font-size: 2rem;
}

.hero__rating-text {
    font-size: 1.1rem;
    font-weight: 500;
}

.hero__buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

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

/* ===========================
   Buttons
   =========================== */
.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

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

.btn--primary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.btn--secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

.btn--small {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* ===========================
   About Section
   =========================== */
.about {
    padding: var(--section-padding);
    background: var(--gray-light);
}

.about__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about__text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--gray);
}

.about__features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.feature {
    text-align: center;
    padding: 25px;
    background: var(--white);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow);
}

.feature__icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.feature__title {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.feature__text {
    font-size: 0.95rem;
    color: var(--gray);
}

.about__info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px var(--shadow);
}

.info-card__title {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.info-card__text {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ===========================
   Services Section
   =========================== */
.services {
    padding: var(--section-padding);
    background: var(--white);
}

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

.service-card {
    text-align: center;
    padding: 35px 25px;
    border-radius: var(--radius-lg);
    background: var(--gray-light);
    transition: var(--transition);
}

.service-card:hover {
    background: var(--white);
    box-shadow: 0 15px 40px var(--shadow);
    transform: translateY(-5px);
}

.service-card__icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.service-card__title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.service-card__text {
    color: var(--gray);
    line-height: 1.8;
}

/* ===========================
   Menu Section
   =========================== */
.menu-section {
    padding: var(--section-padding);
    background: var(--gray-light);
}

.menu-highlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    background: var(--white);
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px var(--shadow);
    margin-bottom: 40px;
}

.menu-highlight__title {
    font-size: 0.9rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.menu-highlight__name {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.menu-highlight__description {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 25px;
    line-height: 1.8;
}

.menu-highlight__price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 30px;
}

.menu-highlight__image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-md);
}

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

.menu-info__card {
    background: linear-gradient(135deg, var(--accent), #3ab8af);
    color: var(--white);
    padding: 30px;
    border-radius: var(--radius-md);
}

.menu-info__card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.menu-info__card p {
    line-height: 1.8;
}

/* ===========================
   Gallery Section
   =========================== */
.gallery {
    padding: var(--section-padding);
    background: var(--white);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    cursor: pointer;
    aspect-ratio: 1;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery__item:hover img {
    transform: scale(1.1);
}

.gallery__item::after {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 3rem;
    opacity: 0;
    transition: var(--transition);
}

.gallery__item:hover::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox__image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: none;
    font-size: 2rem;
    padding: 15px 20px;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox__close {
    top: 20px;
    right: 20px;
    border-radius: 50%;
    width: 60px;
    height: 60px;
}

.lightbox__prev {
    left: 20px;
    border-radius: 50%;
}

.lightbox__next {
    right: 20px;
    border-radius: 50%;
}

.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
    background: rgba(255, 255, 255, 0.4);
}

/* ===========================
   Reviews Section
   =========================== */
.reviews {
    padding: var(--section-padding);
    background: var(--gray-light);
}

.reviews__summary {
    margin-bottom: 50px;
}

.reviews__rating-big {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.reviews__score {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary);
}

.reviews__count {
    color: var(--gray);
    font-size: 1.1rem;
}

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

.review-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: 0 5px 20px var(--shadow);
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-strong);
}

.review-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.review-card__date {
    color: var(--gray);
    font-size: 0.9rem;
}

.review-card__text {
    color: var(--dark);
    line-height: 1.8;
    margin-bottom: 20px;
}

.review-card__details {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.review-detail {
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-detail__label {
    font-size: 0.9rem;
    color: var(--gray);
}

.review-card__context {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.badge {
    display: inline-block;
    padding: 5px 12px;
    background: var(--gray-light);
    color: var(--gray);
    border-radius: 20px;
    font-size: 0.85rem;
}

/* ===========================
   Hours Section
   =========================== */
.hours {
    padding: var(--section-padding);
    background: var(--white);
}

.hours__grid {
    max-width: 600px;
    margin: 0 auto;
    background: var(--gray-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.hours__day {
    display: flex;
    justify-content: space-between;
    padding: 20px 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.hours__day:last-child {
    border-bottom: none;
}

.hours__day:nth-child(even) {
    background: rgba(255, 255, 255, 0.5);
}

.hours__day-name {
    font-weight: 600;
    color: var(--dark);
}

.hours__time {
    color: var(--primary);
    font-weight: 500;
}

/* ===========================
   Contact Section
   =========================== */
.contact {
    padding: var(--section-padding);
    background: var(--gray-light);
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

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

.contact__card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: 0 5px 20px var(--shadow);
}

.contact__card-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.contact__card p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.contact__map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 500px;
    box-shadow: 0 10px 30px var(--shadow);
}

/* ===========================
   Footer
   =========================== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 20px 30px;
}

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

.footer__title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer__heading {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.footer__text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer__link {
    color: var(--primary);
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

.footer__link:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

.footer__bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 1024px) {
    .about__content {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 768px) {
    .navbar__toggle {
        display: flex;
    }

    .navbar__menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        padding: 40px 20px;
        transition: var(--transition);
        box-shadow: 0 10px 30px var(--shadow);
    }

    .navbar__menu.active {
        left: 0;
    }

    .navbar__link--cta {
        width: 100%;
        text-align: center;
    }

    .hero__buttons {
        flex-direction: column;
    }

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

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

    .menu-highlight {
        padding: 30px;
    }

    .menu-highlight__image img {
        height: 300px;
    }

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

    .contact__map {
        height: 400px;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 60px 20px;
    }

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

    .hero__title {
        font-size: 2.5rem;
    }

    .hero__subtitle {
        font-size: 1.1rem;
    }

    .menu-highlight {
        padding: 20px;
    }

    .menu-highlight__name {
        font-size: 2rem;
    }

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

    .service-card {
        padding: 25px 15px;
    }
}

/* ===========================
   Animations & Effects
   =========================== */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
}

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

.slide-up {
    opacity: 0;
    transform: translateY(50px);
    animation: slideUp 0.8s ease-out forwards;
}

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

/* Loading State */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    to {
        left: 100%;
    }
}
