/* CSS Variables */
:root {
    --color-primary: #d4a574;
    --color-primary-dark: #b8935f;
    --color-secondary: #2c3e50;
    --color-accent: #e74c3c;
    --color-success: #27ae60;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-background: #ffffff;
    --color-background-alt: #f8f9fa;
    --color-border: #e0e0e0;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px rgba(0,0,0,0.15);
    --transition-base: all 0.3s ease;
    --border-radius: 8px;
    --max-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-background);
    overflow-x: hidden;
}

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

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

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

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

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-secondary);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-light);
}

/* Navigation */
.navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    z-index: 1000;
    transition: var(--transition-base);
}

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

.navigation__brand {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

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

.navigation__tagline {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.navigation__toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 5px;
}

.navigation__toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-secondary);
    transition: var(--transition-base);
}

.navigation__menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

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

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

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

.navigation__link--cta {
    background: var(--color-primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: var(--border-radius);
}

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

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

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

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

.hero__slide--active {
    opacity: 1;
}

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

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 2rem;
}

.hero__title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero__subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: both;
}

.hero__badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s;
    animation-fill-mode: both;
}

.badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    font-weight: 500;
}

.badge--rating {
    background: rgba(39, 174, 96, 0.2);
}

.badge--halal {
    background: rgba(231, 76, 60, 0.2);
}

.hero__buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s;
    animation-fill-mode: both;
}

.btn {
    padding: 0.875rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    display: inline-block;
    transition: var(--transition-base);
    cursor: pointer;
}

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

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

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

.btn--secondary:hover {
    background: var(--color-background-alt);
    transform: translateY(-2px);
}

.btn--small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.hero__scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    animation: bounce 2s infinite;
}

.hero__arrow {
    margin-top: 0.5rem;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: var(--color-background);
}

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

.feature-card {
    text-align: center;
    padding: 2rem;
    background: var(--color-background-alt);
    border-radius: var(--border-radius);
    transition: var(--transition-base);
}

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

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

.feature-card__title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-secondary);
}

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

.about__stats {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 3rem 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.stat {
    text-align: center;
}

.stat__number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-primary);
}

.stat__label {
    color: var(--color-text-light);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Specialties Section */
.specialties {
    padding: 5rem 0;
    background: var(--color-background-alt);
}

.specialties__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.specialty-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.specialty-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.specialty-card__tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--color-accent);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.specialty-card__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-secondary);
}

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

.specialty-card__mentions {
    font-size: 0.875rem;
    color: var(--color-primary);
    font-weight: 500;
}

/* Gallery Section */
.gallery {
    padding: 5rem 0;
    background: var(--color-background);
}

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

.gallery__filter {
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    background: var(--color-background-alt);
    color: var(--color-text);
    font-weight: 500;
    transition: var(--transition-base);
}

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

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

.gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition-base);
}

.gallery__item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-xl);
}

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

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

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    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;
    color: white;
    font-size: 2rem;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

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

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

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

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

/* Reviews Section */
.reviews {
    padding: 5rem 0;
    background: var(--color-background-alt);
}

.reviews__summary {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.reviews__rating {
    text-align: center;
    padding: 2rem;
}

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

.reviews__stars {
    font-size: 1.5rem;
    margin: 0.5rem 0;
}

.star {
    color: #ddd;
}

.star--filled {
    color: #ffc107;
}

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

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

.reviews__bar {
    display: grid;
    grid-template-columns: 30px 1fr 40px;
    gap: 1rem;
    align-items: center;
}

.reviews__label {
    text-align: right;
    font-size: 0.875rem;
}

.reviews__progress {
    background: var(--color-border);
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
}

.reviews__progress-fill {
    height: 100%;
    background: var(--color-primary);
    transition: width 1s ease;
}

.reviews__number {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

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

.reviews__track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s ease;
}

.review-card {
    flex: 0 0 350px;
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

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

.review-card__rating {
    color: #ffc107;
}

.review-card__date {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

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

.review-card__footer {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.review-card__badge,
.review-card__price,
.review-card__meal,
.review-card__service {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    background: var(--color-background-alt);
    border-radius: 12px;
    color: var(--color-text-light);
}

.reviews__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    font-size: 1.5rem;
    color: var(--color-text);
    transition: var(--transition-base);
    z-index: 5;
}

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

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

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

/* Hours Section */
.hours {
    padding: 5rem 0;
    background: var(--color-background);
}

.hours__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.hours__schedule {
    background: var(--color-background-alt);
    padding: 2rem;
    border-radius: var(--border-radius);
}

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

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

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

.hours__day-name {
    font-weight: 500;
}

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

.hours__status {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.hours__indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hours__indicator--open {
    background: var(--color-success);
}

.hours__indicator--closed {
    background: var(--color-accent);
}

.hours__text {
    font-weight: 600;
    font-size: 1.125rem;
}

.hours__popular {
    background: var(--color-background-alt);
    padding: 2rem;
    border-radius: var(--border-radius);
}

.hours__popular-title {
    margin-bottom: 1rem;
    color: var(--color-secondary);
}

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

.hours__chart {
    display: flex;
    align-items: flex-end;
    height: 100px;
    gap: 4px;
}

.hours__bar-item {
    flex: 1;
    background: var(--color-primary);
    opacity: 0.3;
    border-radius: 2px 2px 0 0;
    transition: var(--transition-base);
}

.hours__bar-item:hover {
    opacity: 1;
}

/* Order Section */
.order {
    padding: 5rem 0;
    background: var(--color-background-alt);
}

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

.order__platform {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
}

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

.order__platform-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

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

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

.order__services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.service-info {
    text-align: center;
}

.service-info__icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.service-info__title {
    font-size: 1.125rem;
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
}

.service-info__text {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: var(--color-background);
}

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

.contact__item {
    margin-bottom: 2rem;
}

.contact__label {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
}

.contact__text {
    color: var(--color-text-light);
    font-style: normal;
    line-height: 1.8;
}

.contact__link {
    color: var(--color-primary);
    font-weight: 500;
    display: inline-block;
    margin-top: 0.5rem;
}

.contact__link:hover {
    text-decoration: underline;
}

.contact__phone {
    font-size: 1.5rem;
    color: var(--color-primary);
    font-weight: 600;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.payment-method {
    padding: 0.5rem 1rem;
    background: var(--color-background-alt);
    border-radius: 20px;
    font-size: 0.875rem;
}

.amenities-list {
    list-style: none;
    line-height: 2;
}

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

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

/* Footer */
.footer {
    background: var(--color-secondary);
    color: white;
    padding: 3rem 0 1rem;
}

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

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

.footer__text {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.footer__badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.badge--small {
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
}

.footer__title {
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.footer__list {
    list-style: none;
}

.footer__item {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer__link {
    color: rgba(255, 255, 255, 0.8);
}

.footer__link:hover {
    color: var(--color-primary);
}

.footer__buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

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

.footer__copyright,
.footer__info {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-base);
    z-index: 999;
}

.scroll-to-top--visible {
    opacity: 1;
    pointer-events: all;
}

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

/* Animations */
@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);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(39, 174, 96, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(39, 174, 96, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(39, 174, 96, 0);
    }
}

/* Media Queries */
@media (max-width: 768px) {
    .navigation__toggle {
        display: flex;
    }

    .navigation__menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .navigation__menu--active {
        transform: translateX(0);
    }

    .hero__title {
        font-size: 2rem;
    }

    .hero__subtitle {
        font-size: 1.125rem;
    }

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

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

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

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

    .reviews__track {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }

    .review-card {
        scroll-snap-align: start;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero__title {
        font-size: 1.75rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }

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

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