/* CSS Variables */
:root {
    --primary-color: #d4292f;
    --primary-dark: #a31f23;
    --secondary-color: #ffc107;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #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 25px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

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

/* Section */
.section {
    padding: 80px 0;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-family: 'Georgia', serif;
}

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
    z-index: 1000;
    transition: var(--transition);
}

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

.navbar__logo h1 {
    font-size: 1.75rem;
    color: var(--primary-color);
    font-family: 'Georgia', serif;
}

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

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

.navbar__toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

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

.navbar__menu a {
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
}

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

.btn-reserve {
    background: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
}

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

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    margin-top: 70px;
    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%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero__slide.active {
    opacity: 1;
}

.hero__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero__badge {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--text-dark);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero__title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Georgia', serif;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero__subtitle {
    font-size: 1.75rem;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.hero__description {
    font-size: 1.125rem;
    max-width: 700px;
    margin: 0 auto 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

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

.btn {
    padding: 15px 35px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    display: inline-block;
}

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

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

.btn--outline {
    border: 2px solid white;
    color: white;
}

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

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

.hero__controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    padding: 0 20px 30px;
}

.hero__arrow {
    background: rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.hero__arrow:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

/* Highlights */
.highlights {
    background: var(--bg-light);
    padding: 60px 0;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

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

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

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

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

.highlight h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

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

/* About Section */
.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about__content h3 {
    font-size: 1.75rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.about__features {
    display: grid;
    gap: 15px;
    margin-top: 30px;
}

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

.feature__icon {
    width: 24px;
    height: 24px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.about__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Specialties */
.specialties {
    background: var(--bg-light);
}

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

.specialty-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

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

.specialty-card__badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--secondary-color);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.875rem;
    font-weight: 600;
}

.specialty-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.specialty-card p {
    color: var(--text-light);
    margin-bottom: 15px;
}

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

.tag {
    background: var(--bg-light);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.875rem;
    color: var(--text-dark);
}

/* Menu Section */
.menu__categories h3 {
    font-size: 1.75rem;
    margin-bottom: 20px;
    text-align: center;
}

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

.menu-tag {
    background: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 500;
    transition: var(--transition);
}

.menu-tag:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

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

.menu-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.menu-feature__icon {
    font-size: 2rem;
}

.menu-feature h4 {
    margin-bottom: 5px;
}

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

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

.menu__info h4 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Delivery Section */
.delivery {
    background: var(--bg-light);
}

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

.delivery-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.delivery-card__icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.delivery-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.delivery-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

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

.delivery__services {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 15px 25px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

.service-icon {
    color: var(--primary-color);
    font-weight: 700;
}

/* Gallery */
.gallery__categories {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.gallery-filter {
    padding: 10px 25px;
    border: 2px solid var(--border-color);
    border-radius: 20px;
    background: white;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
}

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

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

.gallery__item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

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

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

/* Reviews */
.reviews {
    background: var(--bg-light);
}

.reviews__stats {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    margin-bottom: 40px;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

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

.rating-summary__score {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.rating-summary__stars {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

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

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

.rating-bar {
    display: flex;
    align-items: center;
    gap: 15px;
}

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

.rating-bar__track {
    flex: 1;
    height: 10px;
    background: var(--bg-light);
    border-radius: 5px;
    overflow: hidden;
}

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

.rating-bar__count {
    width: 60px;
    text-align: right;
    color: var(--text-light);
}

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

.review-tag {
    background: white;
    padding: 8px 16px;
    border-radius: 15px;
    font-size: 0.875rem;
    box-shadow: var(--shadow-sm);
}

.reviews__slider {
    position: relative;
    overflow: hidden;
    padding: 0 60px;
}

.review-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
}

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

.review-card__rating .stars {
    color: var(--secondary-color);
    font-size: 1.25rem;
}

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

.review-card__text {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.review-card__text p {
    margin-bottom: 10px;
}

.review-card__details {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    padding: 15px;
    background: var(--bg-light);
    border-radius: 5px;
}

.detail-item {
    font-size: 0.875rem;
    color: var(--text-dark);
}

.detail-item strong {
    color: var(--text-dark);
}

.review-card__ratings {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.sub-rating {
    font-size: 0.875rem;
    color: var(--text-dark);
    background: var(--bg-light);
    padding: 5px 12px;
    border-radius: 15px;
}

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

.review-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.review-arrow:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

/* Hours Section */
.hours__grid {
    display: grid;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto 30px;
}

.hours__item {
    display: flex;
    justify-content: space-between;
    padding: 15px 25px;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.hours__day {
    font-weight: 600;
}

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

.hours__note {
    text-align: center;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 10px;
    max-width: 600px;
    margin: 0 auto;
}

/* Reservation Section */
.reservation {
    background: var(--bg-light);
}

.reservation__content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.reservation__info h3 {
    font-size: 1.75rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.reservation__info ul {
    list-style: none;
    margin-bottom: 30px;
}

.reservation__info li {
    padding: 10px 0;
    color: var(--text-light);
}

.reservation__platforms {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.reservation__contact {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.reservation__contact h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.phone-number {
    display: block;
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 15px;
}

.phone-number:hover {
    color: var(--primary-dark);
}

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

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

.amenity-category {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.amenity-category h3 {
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.amenity-category ul {
    list-style: none;
}

.amenity-category li {
    padding: 8px 0;
    color: var(--text-light);
    border-bottom: 1px solid var(--bg-light);
}

.amenity-category li:last-child {
    border-bottom: none;
}

/* Contact Section */
.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

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

.contact-item {
    display: flex;
    gap: 20px;
}

.contact-item__icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item__content h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.contact-item__content p {
    color: var(--text-light);
    line-height: 1.6;
}

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

.contact-item__content a:hover {
    color: var(--primary-dark);
}

.contact-item__detail {
    font-size: 0.875rem;
    margin-top: 5px;
}

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

.map__links {
    margin-top: 20px;
    text-align: center;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 30px;
}

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

.footer__about h3 {
    font-size: 1.75rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.footer__tagline {
    color: #999;
    margin-top: 10px;
}

.footer__rating {
    margin-top: 15px;
}

.footer__rating .stars {
    color: var(--secondary-color);
    margin-right: 10px;
}

.footer__links h4,
.footer__contact h4,
.footer__categories h4 {
    font-size: 1.125rem;
    margin-bottom: 20px;
    color: white;
}

.footer__links ul,
.footer__categories ul {
    list-style: none;
}

.footer__links li,
.footer__categories li {
    margin-bottom: 10px;
}

.footer__links a {
    color: #999;
    transition: var(--transition);
}

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

.footer__contact p {
    color: #999;
    margin-bottom: 10px;
}

.footer__contact a {
    color: var(--primary-color);
}

.footer__categories li {
    color: #999;
}

.footer__bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    text-align: center;
}

.footer__bottom p {
    color: #999;
    margin-bottom: 15px;
}

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

.badge {
    background: #333;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
}

/* Scroll to Top */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
    .section-title {
        font-size: 2rem;
    }

    .hero__title {
        font-size: 3rem;
    }

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

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

@media (max-width: 768px) {
    .navbar__toggle {
        display: flex;
    }

    .navbar__menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        padding: 30px;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
    }

    .navbar__menu.active {
        left: 0;
    }

    .hero {
        margin-top: 70px;
        height: 70vh;
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .hero__subtitle {
        font-size: 1.25rem;
    }

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

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

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

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

    .reviews__slider {
        padding: 0;
    }

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

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

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

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

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

    .hero__title {
        font-size: 2rem;
    }

    .btn {
        padding: 12px 25px;
    }

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

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

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

.animate-fade-in {
    animation: fadeIn 0.6s ease-out;
}

.animate-slide-in {
    animation: slideIn 0.6s ease-out;
}