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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
    color: #1e293b;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Typography */
h1, h2, h3, .hero-title, .section-title, .logo {
    font-family: 'Crimson Text', 'Times New Roman', serif;
    font-weight: 700;
}

/* Header */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.875rem;
    color: #0f172a;
    font-weight: 700;
}

.desktop-nav {
    display: none;
    gap: 2rem;
}

.desktop-nav a {
    color: #1e293b;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.desktop-nav a:hover {
    color: #64748b;
}

.header-actions {
    display: none;
    gap: 1rem;
    align-items: center;
}

.phone-link {
    color: #1e293b;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.phone-link:hover {
    color: #64748b;
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid #e5e7eb;
    margin-top: 1rem;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav a {
    color: #1e293b;
    text-decoration: none;
    padding: 0.5rem 0;
    font-weight: 500;
}

/* Buttons */
.btn-primary {
    background: #0f172a;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-primary:hover {
    background: #1e293b;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background: transparent;
    color: #0f172a;
    border: 2px solid #0f172a;
    border-radius: 6px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-secondary:hover {
    background: #0f172a;
    color: white;
    transform: translateY(-1px);
}

.btn-full {
    width: 100%;
}

/* Hero Section */
.hero {
    background: #ECEC75;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-title {
    font-size: 3rem;
    color: #0f172a;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #1e293b;
    font-family: 'Crimson Text', serif;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    transition: box-shadow 0.2s;
}

.feature-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.875rem;
    font-weight: 600;
    color: #0f172a;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.hero-image img:hover {
    transform: scale(1.05);
}

.rating-badge {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s;
}

.rating-badge:hover {
    transform: rotate(3deg);
}

.rating-stars {
    font-size: 1.875rem;
    font-weight: 700;
    color: #0f172a;
    font-family: 'Crimson Text', serif;
}

.rating-text {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
}

/* Menu Section */
.menu {
    background: #ECEC75;
    padding: 6rem 0;
}

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

.section-title {
    font-size: 3.5rem;
    color: #0f172a;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.25rem;
    color: #374151;
    max-width: 42rem;
    margin: 0 auto;
}

.menu-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    background: transparent;
    border: 2px solid #0f172a;
    color: #0f172a;
    border-radius: 6px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.filter-btn.active,
.filter-btn:hover {
    background: #0f172a;
    color: white;
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.menu-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.menu-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(-8px);
}

.menu-card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.menu-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.menu-card:hover .menu-card-image img {
    transform: scale(1.1);
}

.menu-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #0f172a;
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.menu-card-content {
    padding: 1.5rem;
}

.menu-card-title {
    font-size: 1.5rem;
    color: #0f172a;
    margin-bottom: 0.5rem;
    font-family: 'Crimson Text', serif;
    font-weight: 700;
}

.menu-card-description {
    color: #64748b;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.menu-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-price {
    font-size: 1.875rem;
    font-weight: 700;
    color: #0f172a;
    font-family: 'Crimson Text', serif;
}

/* About Section */
.about {
    background: white;
    padding: 6rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

.about-text {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 1.5rem;
    transition: box-shadow 0.2s;
}

.stat-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f172a;
    font-family: 'Crimson Text', serif;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #64748b;
    font-weight: 500;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-box {
    background: #f8fafc;
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    gap: 1rem;
    transition: all 0.3s;
}

.feature-box:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.feature-icon-lg {
    background: #0f172a;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-title {
    font-size: 1.5rem;
    color: #0f172a;
    margin-bottom: 0.5rem;
    font-family: 'Crimson Text', serif;
}

.feature-desc {
    color: #64748b;
    line-height: 1.6;
}

/* Gallery Section */
.gallery {
    background: #ECEC75;
    padding: 6rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.gallery-item:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(-8px);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-text {
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
}

/* Reviews Section */
.reviews {
    background: white;
    padding: 6rem 0;
}

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

.review-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s;
}

.review-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(-8px);
}

.review-stars {
    color: #0f172a;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.review-text {
    color: #374151;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.review-author {
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.review-name {
    font-weight: 700;
    color: #0f172a;
    font-size: 1.125rem;
    font-family: 'Crimson Text', serif;
}

.review-date {
    font-size: 0.875rem;
    color: #9ca3af;
}

.average-rating {
    text-align: center;
    margin-top: 4rem;
}

.rating-box {
    display: inline-block;
    background: #f8fafc;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.rating-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.avg-rating {
    font-size: 3.75rem;
    font-weight: 700;
    color: #0f172a;
    font-family: 'Crimson Text', serif;
}

.stars {
    color: #0f172a;
    font-size: 1.5rem;
}

.rating-count {
    font-size: 0.875rem;
    color: #64748b;
    margin-top: 0.25rem;
}

/* Booking Section */
.booking {
    background: #ECEC75;
    padding: 6rem 0;
}

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

.booking-description {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.booking-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.booking-feature {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
}

.booking-form-container {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #0f172a;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    border: 1px solid #d1d5db;
    border-radius: 6px;
    padding: 0.75rem;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0f172a;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Contact Section */
.contact {
    background: white;
    padding: 6rem 0;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    transition: box-shadow 0.2s;
}

.contact-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    background: #0f172a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-title {
    font-size: 1.25rem;
    color: #0f172a;
    margin-bottom: 0.5rem;
    font-family: 'Crimson Text', serif;
    font-weight: 700;
}

.contact-text {
    color: #64748b;
}

.contact-link {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-link:hover {
    color: #0f172a;
}

.social-section {
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-btn {
    background: #0f172a;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
    display: inline-block;
}

.social-btn:hover {
    background: #1e293b;
    transform: translateY(-2px);
}

.map-container {
    background: #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 600px;
}

/* Footer */
.footer {
    background: #0f172a;
    color: white;
    padding: 4rem 0;
}

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

.footer-title {
    font-size: 1.875rem;
    margin-bottom: 1rem;
    font-family: 'Crimson Text', serif;
}

.footer-text {
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: #9ca3af;
}

.footer-heading {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-family: 'Crimson Text', serif;
}

.footer-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-nav a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: white;
}

.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-contact-list a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact-list a:hover {
    color: white;
}

.footer-hours {
    color: #9ca3af;
    font-size: 0.875rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #374151;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.875rem;
}

.footer-legal a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: white;
}

/* Cart Badge */
.cart-badge {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #0f172a;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
    z-index: 999;
}

.cart-badge:hover {
    transform: scale(1.05);
}

#cart-icon {
    font-size: 1.5rem;
}

/* Toast Notification */
.toast {
    position: fixed;
    top: 5rem;
    right: 2rem;
    background: #0f172a;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: translateX(400px);
    transition: transform 0.3s;
    z-index: 1001;
}

.toast.show {
    transform: translateX(0);
}

/* Responsive Design */
@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
    }

    .header-actions {
        display: flex;
    }

    .mobile-menu-btn {
        display: none;
    }

    .hero-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-title {
        font-size: 4.5rem;
    }

    .hero-buttons {
        flex-direction: row;
    }

    .hero-image img {
        height: 600px;
    }

    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .booking-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-about {
        grid-column: span 2;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

@media (min-width: 1024px) {
    .menu-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .reviews-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}
