/* CSS Variables */
:root {
    --primary-color: #d4a574;
    --secondary-color: #2c2c2c;
    --accent-color: #ff6b6b;
    --text-primary: #1a1a1a;
    --text-secondary: #666;
    --bg-primary: #ffffff;
    --bg-secondary: #f8f7f4;
    --bg-dark: #1a1a1a;
    --border-color: #e0e0e0;
    --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);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
    --max-width: 1140px;
}

/* 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(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
}

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

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

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

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

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

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

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

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

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

.btn--secondary:hover {
    background-color: #3c3c3c;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

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

.navbar__title {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.navbar__toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
}

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

.navbar__menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.navbar__link {
    color: var(--text-primary);
    font-weight: 500;
    padding: 5px 0;
    position: relative;
}

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

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

.navbar__link--cta {
    background-color: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: var(--radius-md);
}

.navbar__link--cta:hover {
    background-color: #c49560;
}

/* 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%;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    animation: heroZoom 20s infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

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

.hero__content {
    text-align: center;
    color: white;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

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

.hero__title {
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero__subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero__rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.rating__stars {
    display: flex;
    gap: 5px;
    font-size: 1.5rem;
}

.star {
    color: var(--primary-color);
}

.star.filled {
    color: var(--primary-color);
}

.rating__count {
    font-size: 1.1rem;
    opacity: 0.9;
}

.hero__buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
}

.hero__price {
    font-size: 1.1rem;
}

.price__label {
    opacity: 0.8;
}

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

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    color: var(--text-primary);
    margin-bottom: 15px;
}

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

/* About Section */
.about {
    padding: 80px 0;
    background-color: var(--bg-primary);
}

.about__content {
    display: grid;
    gap: 50px;
}

.about__info h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about__info p {
    margin-bottom: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
}

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

.highlight__card {
    padding: 30px;
    background-color: var(--bg-secondary);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
}

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

.highlight__icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.highlight__card h4 {
    color: var(--text-primary);
    margin-bottom: 10px;
}

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

/* Features Section */
.features {
    padding: 80px 0;
    background-color: var(--bg-secondary);
}

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

.feature__item {
    text-align: center;
    padding: 25px;
    background-color: white;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

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

.feature__icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.feature__item h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.feature__item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

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

.features__subtitle {
    margin-bottom: 25px;
}

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

.tag {
    padding: 8px 16px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
    background-color: var(--bg-primary);
}

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

.gallery__item {
    border-radius: var(--radius-md);
    overflow: hidden;
    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;
}

.gallery__more {
    display: block;
    margin: 30px auto 0;
    background-color: var(--secondary-color);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.gallery__more:hover {
    background-color: #3c3c3c;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    animation: fadeIn 0.3s ease;
}

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

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

.lightbox__close {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 3rem;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
}

.lightbox__prev,
.lightbox__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    padding: 20px;
}

.lightbox__prev {
    left: 20px;
}

.lightbox__next {
    right: 20px;
}

/* Reviews Section */
.reviews {
    padding: 80px 0;
    background-color: var(--bg-secondary);
}

.reviews__summary {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    margin-bottom: 50px;
    padding: 30px;
    background-color: white;
    border-radius: var(--radius-lg);
}

.summary__score {
    text-align: center;
    padding: 20px;
}

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

.score__stars {
    display: flex;
    justify-content: center;
    gap: 5px;
    font-size: 1.5rem;
    margin: 10px 0;
}

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

.summary__distribution {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
}

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

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

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

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

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

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

.reviews__track {
    display: flex;
    gap: 20px;
    transition: transform 0.3s ease;
}

.review__card {
    min-width: 350px;
    padding: 25px;
    background-color: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

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

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

.review__date {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

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

.review__details {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.review__detail {
    padding: 5px 10px;
    background-color: var(--bg-secondary);
    border-radius: 15px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.carousel__prev,
.carousel__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: white;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.carousel__prev:hover,
.carousel__next:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.carousel__prev {
    left: 10px;
}

.carousel__next {
    right: 10px;
}

/* Popular Times Section */
.popular-times {
    padding: 80px 0;
    background-color: var(--bg-primary);
}

.popular-times__status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.status__indicator {
    width: 12px;
    height: 12px;
    background-color: #4caf50;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.6; }
    100% { transform: scale(1); opacity: 1; }
}

.status__text {
    font-size: 1.1rem;
    color: var(--text-primary);
}

.popular-times__chart {
    background-color: white;
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-sm);
}

.chart__days {
    display: flex;
    gap: 5px;
    justify-content: space-between;
    margin-bottom: 30px;
}

.day-btn {
    flex: 1;
    padding: 10px;
    background-color: var(--bg-secondary);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

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

.chart__graph {
    height: 200px;
    position: relative;
    margin-bottom: 20px;
}

.chart__hours {
    display: flex;
    justify-content: space-between;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Order Section */
.order {
    padding: 80px 0;
    background-color: var(--bg-secondary);
}

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

.order__card {
    padding: 30px;
    background-color: white;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

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

.order__logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-secondary);
    border-radius: 50%;
}

.order__platform {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.order__description {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

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

.order__info {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background-color: white;
    border-radius: var(--radius-md);
}

.order__info p {
    margin: 10px 0;
    color: var(--text-secondary);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: var(--bg-primary);
}

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

.contact__info h3,
.contact__hours h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact__info address {
    font-style: normal;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.hours__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

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

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

.hours__status {
    margin-top: 20px;
    padding: 10px;
    background-color: var(--bg-secondary);
    border-radius: var(--radius-md);
    text-align: center;
    font-weight: 600;
}

.hours__status.open {
    background-color: #e8f5e9;
    color: #2e7d32;
}

.hours__status.closed {
    background-color: #ffebee;
    color: #c62828;
}

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

.contact__similar {
    margin-top: 50px;
}

.contact__similar h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.similar__item {
    padding: 15px;
    background-color: var(--bg-secondary);
    border-radius: var(--radius-md);
}

.similar__item h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.similar__rating {
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background-color: var(--bg-dark);
    color: white;
    padding: 50px 0 20px;
}

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

.footer__brand h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.footer__brand p {
    opacity: 0.8;
}

.footer__links h4,
.footer__info h4,
.footer__badges h4 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.footer__links ul {
    list-style: none;
}

.footer__links li {
    margin-bottom: 8px;
}

.footer__links a {
    opacity: 0.8;
    transition: var(--transition);
}

.footer__links a:hover {
    opacity: 1;
    color: var(--primary-color);
}

.footer__info p {
    opacity: 0.8;
    line-height: 1.6;
}

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

.badge {
    padding: 5px 10px;
    background-color: rgba(212, 165, 116, 0.2);
    border-radius: 15px;
    font-size: 0.85rem;
}

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

.footer__bottom p {
    opacity: 0.6;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 900;
}

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

.scroll-to-top:hover {
    background-color: #c49560;
    transform: translateY(-5px);
}

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

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

/* Media Queries */
@media (max-width: 1023px) {
    .container {
        max-width: 720px;
    }

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

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

@media (max-width: 767px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }

    .navbar__toggle {
        display: flex;
    }

    .navbar__menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: white;
        flex-direction: column;
        padding: 30px 20px;
        transition: left 0.3s ease;
    }

    .navbar__menu.active {
        left: 0;
    }

    .navbar__link--cta {
        display: inline-block;
        width: fit-content;
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .hero__subtitle {
        font-size: 1.2rem;
    }

    .hero__buttons {
        flex-direction: column;
        gap: 10px;
    }

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

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

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

    .review__card {
        min-width: 280px;
    }

    .chart__days {
        flex-wrap: wrap;
    }

    .day-btn {
        flex: 0 1 calc(14.28% - 5px);
    }

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

    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 479px) {
    body {
        font-size: 14px;
    }

    .container {
        padding: 0 15px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .hero__title {
        font-size: 2rem;
    }

    .review__card {
        min-width: 100%;
    }
}