/* ===================================
   CSS Variables & Root Styles
   =================================== */
:root {
    /* Fast Food Restaurant Color Scheme */
    --primary-color: #ff6b35;
    --primary-dark: #e55527;
    --primary-light: #ff8c5a;
    --secondary-color: #ffc107;
    --accent-color: #ff0000;

    /* Neutral Colors */
    --dark: #1a1a1a;
    --dark-secondary: #2d2d2d;
    --light: #ffffff;
    --light-gray: #f5f5f5;
    --medium-gray: #999;
    --border-color: #e0e0e0;

    /* Typography */
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-heading: 'Georgia', serif;

    /* Spacing */
    --section-padding: 5rem 0;
    --container-padding: 0 1.5rem;
    --border-radius: 8px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.2);

    /* Transitions */
    --transition: all 0.3s ease;
}

/* ===================================
   Reset & Base Styles
   =================================== */
* {
    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;
    background-color: var(--light);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    transition: var(--transition);
}

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

.section {
    padding: var(--section-padding);
}

.section--dark {
    background-color: var(--dark);
    color: var(--light);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.section--dark .section-title {
    color: var(--light);
}

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

/* ===================================
   Navigation
   =================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.nav__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
}

.nav__logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 0.5rem;
}

.nav__toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--light);
    border-radius: 2px;
    transition: var(--transition);
}

.nav__menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav__link {
    color: var(--light);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

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

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

.nav__link--cta {
    background-color: var(--primary-color);
    color: var(--light);
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
}

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

.nav__link--cta:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

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

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

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

@keyframes kenburns {
    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(26,26,26,0.8) 0%, rgba(26,26,26,0.4) 100%);
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--light);
    max-width: 800px;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

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

.hero__title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    letter-spacing: 2px;
}

.hero__subtitle {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.hero__rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero__stars {
    display: flex;
    gap: 0.25rem;
}

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

.star.half {
    background: linear-gradient(90deg, var(--secondary-color) 50%, transparent 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.hero__buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    font-size: 1rem;
}

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

.btn--primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

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

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

.hero__badge {
    display: flex;
    justify-content: center;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(255, 193, 7, 0.9);
    color: var(--dark);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    color: var(--light);
    cursor: pointer;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

.hero__scroll-arrow {
    font-size: 2rem;
}

/* ===================================
   About Section
   =================================== */
.about__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about__description {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-secondary);
}

.about__features {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature__icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.feature__title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.feature__text {
    color: var(--medium-gray);
}

.about__image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 500px;
}

.about__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about__image:hover img {
    transform: scale(1.05);
}

/* ===================================
   Services Section
   =================================== */
.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--dark-secondary);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    background-color: var(--primary-color);
}

.service-card__icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card__title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--light);
}

.service-card__text {
    color: var(--light-gray);
    font-size: 0.95rem;
}

/* ===================================
   Gallery Section
   =================================== */
.gallery__categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.gallery__category {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: 25px;
    background-color: transparent;
    color: var(--dark);
    font-weight: 600;
    transition: var(--transition);
}

.gallery__category:hover,
.gallery__category--active {
    background-color: var(--primary-color);
    color: var(--light);
    border-color: var(--primary-color);
}

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

.gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 107, 53, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery__item:hover .gallery__overlay {
    opacity: 1;
}

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

.gallery__view {
    padding: 1rem 2rem;
    background-color: var(--light);
    color: var(--primary-color);
    border-radius: var(--border-radius);
    font-weight: 700;
    font-size: 1.1rem;
}

.gallery__view:hover {
    background-color: var(--dark);
    color: var(--light);
}

/* ===================================
   Reviews Section
   =================================== */
.reviews__summary {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 4rem;
    padding: 3rem;
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
}

.reviews__score {
    text-align: center;
}

.reviews__score-number {
    font-size: 5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.reviews__score .reviews__stars {
    font-size: 2rem;
    margin: 1rem 0;
}

.reviews__count {
    color: var(--medium-gray);
}

.reviews__distribution {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.distribution__row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
    align-items: center;
}

.distribution__label {
    font-weight: 600;
    color: var(--secondary-color);
}

.distribution__bar {
    height: 10px;
    background-color: var(--border-color);
    border-radius: 5px;
    overflow: hidden;
}

.distribution__fill {
    height: 100%;
    background-color: var(--secondary-color);
    transition: width 1s ease;
}

.distribution__count {
    font-weight: 600;
    color: var(--medium-gray);
    min-width: 3ch;
    text-align: right;
}

.reviews__carousel {
    position: relative;
    overflow: hidden;
}

.reviews__slider {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.reviews__slider::-webkit-scrollbar {
    display: none;
}

.review-card {
    flex: 0 0 350px;
    background-color: var(--light);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    scroll-snap-align: start;
}

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

.review-card__rating .star {
    font-size: 1.2rem;
}

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

.review-card__text {
    margin-bottom: 1rem;
    line-height: 1.6;
    font-style: italic;
}

.review-card__context {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.context__badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: var(--light-gray);
    border-radius: 15px;
    font-size: 0.85rem;
    color: var(--dark-secondary);
}

.review-card__details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.review-card__detail {
    font-size: 0.9rem;
    color: var(--dark-secondary);
}

.review-card__detail .star {
    color: var(--secondary-color);
    font-size: 1rem;
}

.review-card__source {
    color: var(--medium-gray);
    font-size: 0.85rem;
    font-weight: 600;
}

.carousel__button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--primary-color);
    color: var(--light);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: var(--shadow-md);
}

.carousel__button:hover {
    background-color: var(--primary-dark);
}

.carousel__button--prev {
    left: -25px;
}

.carousel__button--next {
    right: -25px;
}

/* ===================================
   Order Section
   =================================== */
.order__subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--light-gray);
}

.order__platforms {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.order__platform {
    background-color: var(--dark-secondary);
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    max-width: 350px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.order__platform:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.order__platform-icon {
    font-size: 4rem;
}

.order__platform-name {
    font-size: 1.8rem;
    color: var(--light);
    margin-bottom: 0.5rem;
}

.order__platform-text {
    color: var(--light-gray);
    margin-bottom: 1rem;
}

/* ===================================
   Hours Section
   =================================== */
.hours__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.hours__column {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: var(--border-radius);
}

.hours__column-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-align: center;
}

.hours__schedule {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hours__row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem;
    border-bottom: 1px solid var(--border-color);
}

.hours__row--special {
    background-color: var(--primary-light);
    color: var(--light);
    border-radius: var(--border-radius);
    border: none;
    font-weight: 600;
}

.hours__day {
    font-weight: 600;
}

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

.hours__row--special .hours__time {
    color: var(--light);
}

.hours__note {
    text-align: center;
    padding: 2rem;
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
}

.status-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--secondary-color);
    color: var(--dark);
    border-radius: 20px;
    font-weight: 600;
}

/* ===================================
   Contact Section
   =================================== */
.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

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

.contact__item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact__icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.contact__title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.contact__text {
    color: var(--light-gray);
    line-height: 1.6;
}

.contact__text a {
    color: var(--primary-color);
    text-decoration: underline;
}

.contact__text a:hover {
    color: var(--primary-light);
}

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

/* ===================================
   Footer
   =================================== */
.footer {
    background-color: var(--dark);
    color: var(--light);
    padding: 4rem 0 2rem;
}

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

.footer__title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.footer__subtitle {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--light);
}

.footer__text {
    color: var(--light-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

.footer__stars {
    display: flex;
    gap: 0.25rem;
}

.footer__links,
.footer__contacts,
.footer__services {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer__links a,
.footer__contacts a {
    color: var(--light-gray);
    transition: var(--transition);
}

.footer__links a:hover,
.footer__contacts a:hover {
    color: var(--primary-color);
    padding-left: 0.5rem;
}

.footer__bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--dark-secondary);
    color: var(--medium-gray);
}

.footer__copyright {
    margin-bottom: 0.5rem;
}

/* ===================================
   Lightbox Modal
   =================================== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: none;
    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-color: rgba(255, 107, 53, 0.8);
    color: var(--light);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
    background-color: var(--primary-color);
}

.lightbox__close {
    top: 2rem;
    right: 2rem;
}

.lightbox__prev {
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox__next {
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

/* ===================================
   Utilities
   =================================== */
.hidden {
    display: none !important;
}

/* ===================================
   Animations
   =================================== */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* ===================================
   Media Queries - Responsive Design
   =================================== */

/* Tablet (768px - 1023px) */
@media (max-width: 1023px) {
    :root {
        --section-padding: 4rem 0;
    }

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

    .hero__title {
        font-size: 3rem;
    }

    .about__content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about__image {
        height: 400px;
    }

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

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

    .carousel__button--prev {
        left: 10px;
    }

    .carousel__button--next {
        right: 10px;
    }
}

/* Mobile (320px - 767px) */
@media (max-width: 767px) {
    :root {
        --section-padding: 3rem 0;
    }

    .container {
        padding: 0 1rem;
    }

    /* Navigation */
    .nav__toggle {
        display: flex;
    }

    .nav__menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background-color: var(--dark);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        transition: left 0.3s ease;
    }

    .nav__menu.active {
        left: 0;
    }

    .nav__link--cta {
        text-align: center;
    }

    /* Hero */
    .hero {
        min-height: 500px;
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .hero__subtitle {
        font-size: 1.2rem;
    }

    .hero__buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    /* Sections */
    .section-title {
        font-size: 1.8rem;
    }

    .about__image {
        height: 300px;
    }

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

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

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

    .review-card {
        flex: 0 0 280px;
    }

    .carousel__button {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

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

    .lightbox__close,
    .lightbox__prev,
    .lightbox__next {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .lightbox__close {
        top: 1rem;
        right: 1rem;
    }

    .lightbox__prev {
        left: 1rem;
    }

    .lightbox__next {
        right: 1rem;
    }
}