:root {
    --primary-color: #d4351c;
    --primary-dark: #b82e18;
    --primary-light: #ff6b54;
    --secondary-color: #f39c12;
    --accent-color: #27ae60;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --text-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e1e8ed;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.2);
    --transition: all 0.3s ease;
    --border-radius: 12px;
    --header-height: 70px;
}

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

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

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section__header {
    text-align: center;
    margin-bottom: 60px;
}

.section__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    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-color), var(--secondary-color));
    border-radius: 2px;
}

.section__subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: 20px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

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

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

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

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

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.header.scroll-header {
    box-shadow: var(--shadow-md);
}

.nav {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.logo__icon {
    font-size: 1.8rem;
}

.nav__list {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav__link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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

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

.nav__toggle,
.nav__close {
    display: none;
    cursor: pointer;
}

.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    margin-top: var(--header-height);
    overflow: hidden;
}

.hero__slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero__slide.active {
    opacity: 1;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212,53,28,0.85) 0%, rgba(44,62,80,0.85) 100%);
}

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

.hero__title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 16px;
    animation: fadeInUp 0.8s ease;
}

.hero__subtitle {
    font-size: 1.5rem;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero__rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

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

.star {
    font-size: 1.5rem;
    color: #ddd;
}

.star.filled {
    color: #ffd700;
}

.star.partial {
    background: linear-gradient(90deg, #ffd700 50%, #ddd 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rating__text {
    font-size: 1.1rem;
    opacity: 0.95;
}

.hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 500;
}

.hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    animation: fadeInUp 0.8s ease 0.8s backwards;
}

.hero__nav {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 3;
    display: flex;
    gap: 12px;
}

.hero__nav-btn {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    color: var(--text-white);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
}

.hero__nav-btn:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

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

.about {
    background: var(--bg-white);
}

.about__text {
    max-width: 900px;
    margin: 0 auto;
}

.about__description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

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

.feature {
    text-align: center;
    padding: 30px;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

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

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

.feature__title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.feature__text {
    color: var(--text-light);
}

.services {
    background: var(--bg-light);
}

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

.service__card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

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

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

.service__title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.service__description {
    color: var(--text-light);
}

.menu {
    background: var(--bg-white);
}

.menu__categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.menu__category {
    padding: 10px 24px;
    background: var(--bg-light);
    border: 2px solid transparent;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.menu__category:hover,
.menu__category.active {
    background: var(--primary-color);
    color: var(--text-white);
    border-color: var(--primary-color);
}

.menu__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.menu__item {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 25px;
    transition: var(--transition);
}

.menu__item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.menu__item.hide {
    display: none;
}

.menu__item-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.menu__item-description {
    color: var(--text-light);
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.menu__item-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.tag {
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

.tag--halal {
    background: #27ae60;
    color: var(--text-white);
}

.tag--vegan {
    background: #2ecc71;
    color: var(--text-white);
}

.tag--popular {
    background: var(--secondary-color);
    color: var(--text-white);
}

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

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

.info__box {
    background: var(--bg-light);
    padding: 20px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.info__box h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.info__box p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.gallery {
    background: var(--bg-light);
}

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

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

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

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

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    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: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border: none;
    color: var(--text-white);
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

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

.lightbox__close {
    top: 20px;
    right: 20px;
}

.lightbox__prev {
    left: 20px;
}

.lightbox__next {
    right: 20px;
}

.reviews {
    background: var(--bg-white);
}

.reviews__summary {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 60px;
    background: var(--bg-light);
    padding: 40px;
    border-radius: var(--border-radius);
}

.summary__score {
    text-align: center;
}

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

.score__stars {
    margin: 12px 0;
}

.score__count {
    color: var(--text-light);
}

.summary__distribution {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.distribution__item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.distribution__label {
    min-width: 30px;
    font-weight: 600;
}

.distribution__bar {
    flex: 1;
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.distribution__fill {
    height: 100%;
    background: var(--secondary-color);
}

.distribution__count {
    min-width: 40px;
    text-align: right;
    color: var(--text-light);
}

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

.review__card {
    background: var(--bg-light);
    padding: 25px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.review__card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.review__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.review__stars {
    display: flex;
    gap: 2px;
}

.review__stars .star {
    font-size: 1.1rem;
}

.review__date {
    font-size: 0.85rem;
    color: var(--text-light);
}

.review__text {
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.6;
}

.review__details {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.detail__item {
    padding: 4px 10px;
    background: var(--bg-white);
    border-radius: 12px;
    font-size: 0.85rem;
}

.review__ratings {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.rating__badge {
    padding: 4px 10px;
    background: var(--accent-color);
    color: var(--text-white);
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.hours {
    background: var(--bg-light);
}

.hours__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto 30px;
}

.hours__day {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.day__name {
    font-weight: 600;
    color: var(--text-dark);
}

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

.hours__note {
    text-align: center;
    margin-top: 30px;
}

.hours__note p {
    color: var(--text-light);
    margin-bottom: 8px;
}

.contact {
    background: var(--bg-white);
}

.contact__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

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

.info__item {
    display: flex;
    gap: 20px;
}

.info__icon {
    font-size: 2.5rem;
    min-width: 50px;
}

.info__text h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.info__text p {
    color: var(--text-light);
    margin-bottom: 4px;
}

.info__text a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.info__text a:hover {
    text-decoration: underline;
}

.info__extra {
    font-size: 0.9rem;
    color: var(--text-light);
}

.info__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 20px;
}

.contact__map {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    min-height: 400px;
}

.footer {
    background: var(--text-dark);
    color: var(--text-white);
    padding: 60px 0 20px;
}

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

.footer__logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer__description {
    color: rgba(255,255,255,0.7);
    margin-bottom: 16px;
}

.footer__rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer__title {
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.footer__list {
    list-style: none;
}

.footer__list li {
    margin-bottom: 8px;
    color: rgba(255,255,255,0.7);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer__copyright {
    color: rgba(255,255,255,0.7);
}

.footer__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-md);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

@media screen and (max-width: 968px) {
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: var(--bg-white);
        box-shadow: var(--shadow-lg);
        padding: 80px 30px;
        transition: var(--transition);
    }

    .nav__menu.show-menu {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        gap: 24px;
    }

    .nav__toggle,
    .nav__close {
        display: block;
    }

    .nav__close {
        position: absolute;
        top: 20px;
        right: 20px;
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .hero__subtitle {
        font-size: 1.2rem;
    }

    .section__title {
        font-size: 2rem;
    }

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

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

    .footer__bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media screen and (max-width: 576px) {
    .hero__title {
        font-size: 2rem;
    }

    .hero__buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .section {
        padding: 60px 0;
    }

    .section__title {
        font-size: 1.75rem;
    }

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

    .hero__nav {
        bottom: 20px;
        right: 20px;
    }

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