/* ===== CSS VARIABLES ===== */
:root {
    --primary-color: #ff6b35;
    --secondary-color: #f7931e;
    --dark-color: #1a1a1a;
    --light-color: #ffffff;
    --gray-color: #6c757d;
    --gray-light: #f8f9fa;
    --success-color: #28a745;
    --border-radius: 12px;
    --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-heading: 'Georgia', serif;
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
}

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

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

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

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

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

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 15px;
    color: inherit;
}

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

.section--dark .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    text-align: center;
}

.btn--primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--light-color);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

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

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

.btn--large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* ===== BADGES ===== */
.badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin: 4px;
}

.badge--halal {
    background-color: var(--success-color);
    color: var(--light-color);
}

.badge--price {
    background-color: var(--secondary-color);
    color: var(--light-color);
}

.badge--delivery,
.badge--takeout {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--light-color);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

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

.badge--special {
    background-color: var(--secondary-color);
    color: var(--light-color);
}

.badge--kids {
    background-color: #6f42c1;
    color: var(--light-color);
}

.badge--accessible,
.badge--parking {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light-color);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ===== STARS RATING ===== */
.stars {
    display: inline-flex;
    gap: 3px;
}

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

.star.filled {
    color: #ffc107;
}

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

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--light-color);
    box-shadow: var(--box-shadow);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

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

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

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

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

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

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

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

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

.navbar__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
}

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

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 70px;
}

.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-in-out;
}

.hero__slide.active {
    opacity: 1;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
}

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

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

.hero__subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    margin-bottom: 30px;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

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

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

.hero__buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

.hero__badges {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.8s backwards;
}

.hero__arrow {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: var(--light-color);
    background: none;
    cursor: pointer;
    animation: bounce 2s infinite;
}

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

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

/* ===== ABOUT SECTION ===== */
.about__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.about__card {
    background-color: var(--gray-light);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
}

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

.about__icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.about__card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background-color: var(--gray-light);
    border-radius: 8px;
}

.feature__icon {
    font-size: 1.5rem;
    color: var(--success-color);
    font-weight: bold;
}

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

.service__card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service__card:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

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

.service__card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--light-color);
}

.service__card p {
    opacity: 0.8;
}

/* ===== MENU SECTION ===== */
.menu__categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.menu__category {
    padding: 12px 24px;
    border-radius: 25px;
    background-color: var(--gray-light);
    color: var(--dark-color);
    font-weight: 600;
    transition: var(--transition);
}

.menu__category:hover,
.menu__category.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--light-color);
}

.menu__items {
    display: grid;
    gap: 20px;
    margin-bottom: 40px;
}

.menu__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background-color: var(--gray-light);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

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

.menu__item-content {
    flex: 1;
}

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

.menu__item-description {
    color: var(--gray-color);
    margin-bottom: 10px;
}

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

.menu__item-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    white-space: nowrap;
}

.menu__cta {
    text-align: center;
}

/* ===== GALLERY SECTION ===== */
.gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 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);
}

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

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

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

.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, 255, 255, 0.1);
    color: var(--light-color);
    font-size: 2rem;
    padding: 15px 20px;
    cursor: pointer;
    transition: var(--transition);
}

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

.lightbox__close:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.lightbox__prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox__next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox__prev:hover,
.lightbox__next:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* ===== REVIEWS SECTION ===== */
.reviews__summary {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.reviews__summary-rating {
    text-align: center;
}

.reviews__score {
    font-size: 4rem;
    font-weight: bold;
    color: var(--secondary-color);
    display: block;
    margin-bottom: 10px;
}

.reviews__count {
    display: block;
    margin-top: 10px;
    opacity: 0.7;
}

.reviews__distribution {
    min-width: 300px;
}

.reviews__bar {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.reviews__bar span:first-child {
    min-width: 30px;
}

.bar {
    flex: 1;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.bar__fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.reviews__slider {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.review__card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.review__date {
    font-size: 0.9rem;
    opacity: 0.6;
}

.review__text {
    margin-bottom: 15px;
    line-height: 1.6;
}

.review__rating-details {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 10px;
}

.review__context {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.review__context span {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.85rem;
}

.review__badge {
    display: inline-block;
    background-color: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.85rem;
}

.review__badge--guide {
    background-color: rgba(40, 167, 69, 0.2);
    color: #28a745;
}

.reviews__tags {
    margin-top: 50px;
    text-align: center;
}

.reviews__tags h3 {
    margin-bottom: 20px;
}

.tags__list {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.tag {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* ===== HOURS SECTION ===== */
.hours__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    align-items: start;
}

.hours__list {
    background-color: var(--gray-light);
    padding: 30px;
    border-radius: var(--border-radius);
}

.hours__item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
}

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

.hours__day {
    font-weight: 600;
}

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

.hours__item--special {
    background-color: rgba(255, 107, 53, 0.1);
    padding: 15px;
    margin: 10px -15px;
    border-radius: 8px;
}

.info__card {
    background-color: var(--gray-light);
    padding: 30px;
    border-radius: var(--border-radius);
}

.info__card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.info__card ul {
    margin: 15px 0;
}

.info__card li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

.info__card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.info__tip {
    margin-top: 20px;
    padding: 15px;
    background-color: rgba(255, 193, 7, 0.1);
    border-left: 4px solid #ffc107;
    border-radius: 4px;
}

/* ===== CONTACT SECTION ===== */
.contact__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 50px;
}

.contact__item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact__icon {
    font-size: 2rem;
    min-width: 50px;
}

.contact__item h3 {
    margin-bottom: 10px;
    color: var(--light-color);
}

.contact__item p,
.contact__item a {
    opacity: 0.8;
}

.contact__item a:hover {
    color: var(--secondary-color);
}

.contact__location {
    font-style: italic;
    margin-top: 5px;
}

.contact__social {
    margin-top: 30px;
}

.contact__social h3 {
    margin-bottom: 20px;
}

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

/* ===== FOOTER ===== */
.footer {
    background-color: #0d0d0d;
    color: var(--light-color);
    padding: 60px 0 30px;
}

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

.footer__logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.footer__section h4 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.footer__section p,
.footer__section a {
    opacity: 0.8;
    margin-bottom: 8px;
    display: block;
}

.footer__section a:hover {
    color: var(--secondary-color);
}

.footer__section ul li {
    padding: 5px 0;
}

.footer__rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}

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

.footer__bottom p {
    opacity: 0.6;
    margin-bottom: 15px;
}

.footer__badges {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

/* ===== ANIMATIONS ===== */
.fade-in {
    animation: fadeIn 0.6s ease;
}

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

.slide-in-left {
    animation: slideInLeft 0.6s ease;
}

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

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

@media (max-width: 768px) {
    .navbar__menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--light-color);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--box-shadow);
        transform: translateY(-150%);
        transition: var(--transition);
    }

    .navbar__menu.active {
        transform: translateY(0);
    }

    .navbar__toggle {
        display: flex;
    }

    .hero__buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero__buttons .btn {
        width: 100%;
    }

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

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

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

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

    .lightbox__prev,
    .lightbox__next {
        padding: 10px 15px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 2.5rem;
    }

    .menu__item {
        flex-direction: column;
        align-items: flex-start;
    }

    .menu__item-price {
        align-self: flex-end;
    }

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

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

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

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 3px;
}

/* ===== PRINT STYLES ===== */
@media print {
    .navbar,
    .hero__arrow,
    .lightbox,
    .btn,
    .footer__badges {
        display: none;
    }

    body {
        color: #000;
    }

    .section--dark {
        background-color: #fff;
        color: #000;
    }
}