/* CSS Variables */
:root {
    --primary-color: #d4a574;
    --secondary-color: #1a1a1a;
    --accent-color: #ff6b6b;
    --text-color: #333333;
    --light-bg: #f8f8f8;
    --white: #ffffff;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 12px;
    --max-width: 1200px;
}

/* Reset & Base Styles */
* {
    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;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-weight: 600;
    line-height: 1.2;
}

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

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

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

/* Navigation */
.navigation {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
}

.navigation.scrolled {
    box-shadow: var(--shadow-md);
}

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

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

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

.navigation__link {
    color: var(--white);
    font-weight: 500;
    position: relative;
    transition: var(--transition);
}

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

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

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

.navigation__link--cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.navigation__toggle span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

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

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

.hero__slide.active {
    opacity: 1;
}

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

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

.hero__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out;
}

.hero__subtitle {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero__stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero__stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.hero__stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

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

.hero__button {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero__button--primary {
    background: var(--primary-color);
    color: var(--secondary-color);
}

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

.hero__button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
}

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

.about__content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about__info p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
}

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

.about__feature {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.about__feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.about__feature h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.about__feature p {
    color: #666;
    font-size: 0.95rem;
}

/* Popular Items Section */
.popular {
    padding: 5rem 0;
}

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

.popular__item {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.popular__item-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.popular__item h3 {
    padding: 1rem 1.5rem 0.5rem;
    font-size: 1.3rem;
    color: var(--secondary-color);
}

.popular__item p {
    padding: 0 1.5rem;
    color: #666;
}

.popular__price {
    display: inline-block;
    padding: 1rem 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

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

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

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

.gallery__item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

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

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

/* Reviews Section */
.reviews {
    padding: 5rem 0;
}

.reviews__summary {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.reviews__rating {
    text-align: center;
}

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

.reviews__stars {
    margin: 0.5rem 0;
}

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

.star.filled {
    color: #ffd700;
}

.reviews__count {
    color: #666;
    font-size: 0.9rem;
}

.reviews__distribution {
    min-width: 300px;
}

.reviews__bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.reviews__bar-label {
    min-width: 40px;
    font-size: 0.9rem;
}

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

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

.reviews__bar-count {
    min-width: 40px;
    text-align: right;
    font-size: 0.9rem;
    color: #666;
}

.reviews__carousel {
    position: relative;
    margin-top: 3rem;
    overflow: hidden;
}

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

.review__card {
    min-width: 100%;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: var(--border-radius);
}

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

.review__date {
    color: #666;
    font-size: 0.9rem;
}

.review__text {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

.review__badge {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
}

.review__context {
    color: #666;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
}

.reviews__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

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

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

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

.hours__content {
    max-width: 600px;
    margin: 0 auto;
}

.hours__schedule {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.hours__day {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

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

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

.hours__time {
    color: #666;
}

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

.hours__badge {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.25rem 0.5rem;
    border-radius: 15px;
    font-size: 0.75rem;
    margin-left: 1rem;
}

.hours__status {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: var(--border-radius);
}

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

.hours__status-indicator.open {
    background: #4caf50;
}

.hours__status-indicator.closed {
    background: #f44336;
}

.hours__status-text {
    font-weight: 600;
    font-size: 1.1rem;
}

/* Amenities Section */
.amenities {
    padding: 5rem 0;
}

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

.amenity {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.amenity__icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.amenity h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.amenity ul {
    list-style: none;
}

.amenity li {
    padding: 0.25rem 0;
    color: #666;
}

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

.order__platforms {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

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

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

.order__platform-logo {
    width: 100px;
    height: 100px;
    margin: 0 auto 1rem;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.order__platform-logo.deliveroo {
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwIiBoZWlnaHQ9IjEwMCIgdmlld0JveD0iMCAwIDEwMCAxMDAiPjxjaXJjbGUgY3g9IjUwIiBjeT0iNTAiIHI9IjQ1IiBmaWxsPSIjMDBDQ0JCIi8+PHRleHQgeD0iNTAlIiB5PSI1NSUiIGZpbGw9IndoaXRlIiB0ZXh0LWFuY2hvcj0ibWlkZGxlIiBmb250LXNpemU9IjI1IiBmb250LXdlaWdodD0iYm9sZCI+RDwvdGV4dD48L3N2Zz4=');
}

.order__platform-logo.justeat {
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwIiBoZWlnaHQ9IjEwMCIgdmlld0JveD0iMCAwIDEwMCAxMDAiPjxyZWN0IHdpZHRoPSIxMDAiIGhlaWdodD0iMTAwIiBmaWxsPSIjRkYwMDAwIi8+PHRleHQgeD0iNTAlIiB5PSI1NSUiIGZpbGw9IndoaXRlIiB0ZXh0LWFuY2hvcj0ibWlkZGxlIiBmb250LXNpemU9IjI1IiBmb250LXdlaWdodD0iYm9sZCI+SkU8L3RleHQ+PC9zdmc+');
}

.order__platform-logo.ubereats {
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwIiBoZWlnaHQ9IjEwMCIgdmlld0JveD0iMCAwIDEwMCAxMDAiPjxyZWN0IHdpZHRoPSIxMDAiIGhlaWdodD0iMTAwIiBmaWxsPSIjMDZDMTY3Ii8+PHRleHQgeD0iNTAlIiB5PSI1NSUiIGZpbGw9IndoaXRlIiB0ZXh0LWFuY2hvcj0ibWlkZGxlIiBmb250LXNpemU9IjI1IiBmb250LXdlaWdodD0iYm9sZCI+VUU8L3RleHQ+PC9zdmc+');
}

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

.order__platform p {
    color: #666;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
}

.contact__content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

.contact__info {
    display: grid;
    gap: 2rem;
}

.contact__item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.contact__item p {
    color: #666;
    line-height: 1.8;
}

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

.contact__link {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 25px;
    transition: var(--transition);
}

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

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

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

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

.footer__section h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer__section p {
    opacity: 0.8;
    line-height: 1.8;
}

.footer__section ul {
    list-style: none;
}

.footer__section ul li {
    padding: 0.25rem 0;
    opacity: 0.8;
    transition: var(--transition);
}

.footer__section ul li:hover {
    opacity: 1;
    transform: translateX(5px);
}

.footer__rating {
    margin-top: 1rem;
}

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

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox__close {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 40px;
    color: var(--white);
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox__close:hover {
    transform: scale(1.2);
}

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

.lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    color: var(--white);
    background: none;
    border: none;
    cursor: pointer;
    padding: 20px;
    transition: var(--transition);
}

.lightbox__nav:hover {
    transform: translateY(-50%) scale(1.2);
}

.lightbox__nav--prev {
    left: 20px;
}

.lightbox__nav--next {
    right: 20px;
}

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

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(76, 175, 80, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
    }
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

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

    .reviews__summary {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .navigation__menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: var(--secondary-color);
        flex-direction: column;
        justify-content: center;
        transition: left 0.3s ease-in-out;
    }

    .navigation__menu.active {
        left: 0;
    }

    .navigation__toggle {
        display: flex;
        z-index: 1001;
    }

    .navigation__toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .navigation__toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .navigation__toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero__stats {
        gap: 1.5rem;
    }

    .hero__stat-value {
        font-size: 1.5rem;
    }

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

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

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

    .reviews__summary {
        flex-direction: column;
        align-items: center;
    }

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

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

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

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

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

    .hero__subtitle {
        font-size: 1rem;
    }

    .hero__buttons {
        flex-direction: column;
    }

    .hero__button {
        width: 100%;
    }

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

    .reviews__nav {
        display: none;
    }
}

/* Print Styles */
@media print {
    .navigation,
    .hero__buttons,
    .gallery,
    .order,
    .lightbox {
        display: none;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
    }

    .contact__map {
        height: 300px;
    }
}