/* --- Variables & Setup --- */
:root {
    --primary: #d35400; /* Deep Saffron */
    --primary-hover: #e67e22; /* Lighter Saffron */
    --dark: #2c2a29; /* Warm Charcoal */
    --light: #fef5e7; /* Cream */
    --white: #ffffff;
    --gray-100: #fbf8f1;
    --gray-600: #5c5552;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-body);
    color: var(--dark);
    background-color: var(--gray-100);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    color: var(--dark);
}

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

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

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

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

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

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

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

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* Fade in animation */
.fade-in {
    animation: fadeIn 0.8s ease-in-out;
}

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

/* --- Header & Navigation --- */
.site-header {
    background-color: var(--dark);
    color: var(--white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

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

.brand-logo {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
}

.brand-logo span {
    color: var(--primary);
}

.desktop-nav {
    display: flex;
    gap: 25px;
}

.nav-link {
    color: var(--white);
    font-weight: 400;
    font-size: 16px;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

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

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
}

/* Mobile Overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--dark);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    transition: transform 0.4s ease-in-out;
}

.mobile-overlay.active {
    transform: translateY(0);
}

.close-overlay {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 30px;
    cursor: pointer;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
}

.mobile-nav .nav-link {
    font-size: 24px;
    font-family: var(--font-heading);
}

/* --- Hero Section --- */
.hero-section {
    height: 85vh;
    background: linear-gradient(rgba(17, 24, 39, 0.6), rgba(17, 24, 39, 0.6)), url('https://images.unsplash.com/photo-1585937421612-70a008356fbe?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-content h1 {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: var(--primary);
    font-style: italic;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* --- Common Sections --- */
.section-title {
    text-align: center;
    margin: 60px 0 40px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--dark);
}

.section-title p {
    color: var(--gray-600);
    font-style: italic;
}

/* Page Headers */
.page-header {
    height: 40vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(17, 24, 39, 0.6);
}

.page-header-content {
    position: relative;
    z-index: 1;
}

.page-header-content h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 10px;
}

/* --- Index: Specials & Categories --- */
.specials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.special-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.special-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px rgba(0,0,0,0.1);
}

.special-card .card-img {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.card-content {
    padding: 25px;
    text-align: center;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.card-content p {
    color: var(--gray-600);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.price {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    font-family: var(--font-heading);
}

.visual-categories {
    display: flex;
    height: 400px;
}

.category-item {
    flex: 1;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: var(--transition);
    cursor: pointer;
}

.category-item:hover {
    flex: 1.5;
}

.category-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.category-item:hover .category-overlay {
    background: rgba(0,0,0,0.2);
}

.category-overlay h3 {
    color: var(--white);
    font-size: 2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* --- Menu Page --- */
.menu-section {
    padding: 60px 20px;
}

.menu-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.filter-btn {
    padding: 8px 20px;
    background: transparent;
    border: 1px solid var(--gray-600);
    color: var(--gray-600);
    border-radius: 30px;
    cursor: pointer;
    font-family: var(--font-body);
    transition: var(--transition);
}

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

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

.menu-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
    animation: fadeIn 0.5s ease-in-out;
}

.menu-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.menu-item-img {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    object-fit: cover;
}

.menu-item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
}

.menu-item-header h3 {
    font-size: 1.25rem;
    margin-bottom: 0;
}

.tags-wrapper {
    margin-bottom: 10px;
}

.tag {
    font-size: 0.7rem;
    padding: 3px 8px;
    border-radius: 12px;
    margin-right: 5px;
    font-family: var(--font-body);
    font-weight: 500;
}

.tag.vegan { background: #10b981; color: white; }
.tag.vegetarian { background: #84cc16; color: white; }
.tag.gf { background: #f59e0b; color: white; }
.tag.signature { background: var(--primary); color: white; }

.menu-item p {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin-bottom: 15px;
    flex: 1;
}

.order-cta {
    align-self: flex-start;
    padding: 8px 16px;
    font-size: 0.85rem;
}

/* --- About Page --- */
.about-section {
    padding: 80px 20px;
}

.about-grid, .chef-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

.about-content h2, .chef-content h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 25px;
}

.about-content p, .chef-content p {
    margin-bottom: 20px;
    color: var(--gray-600);
    font-size: 1.1rem;
}

.about-image, .chef-image {
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* --- Booking Page --- */
.booking-section {
    padding: 80px 20px;
    display: flex;
    justify-content: center;
}

.booking-container {
    background: var(--white);
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 800px;
}

.booking-container h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary);
}

.booking-form .form-row {
    display: flex;
    gap: 20px;
}

.booking-form .form-row .form-group {
    flex: 1;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.2);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    padding: 50px;
    border-radius: 12px;
    text-align: center;
    max-width: 500px;
    width: 90%;
}

.success-icon {
    font-size: 4rem;
    color: #10b981;
    margin-bottom: 20px;
}

/* --- Contact Page --- */
.contact-section {
    padding: 80px 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.contact-info {
    padding: 50px;
}

.contact-info h2 {
    color: var(--primary);
    margin-bottom: 20px;
}

.contact-info > p {
    color: var(--gray-600);
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 5px;
}

.info-item h4 {
    margin-bottom: 5px;
}

.info-item p {
    color: var(--gray-600);
}

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

.hours-table {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.hours-table table {
    width: 100%;
    border-collapse: collapse;
}

.hours-table td {
    padding: 10px 0;
    color: var(--gray-600);
}

.hours-table td:last-child {
    text-align: right;
    font-weight: 600;
    color: var(--dark);
}

.contact-map {
    min-height: 400px;
}

/* --- Gallery Page --- */
.gallery-section {
    padding: 80px 20px;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 300px;
}

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

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

.gallery-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    right: 0;
    background: rgba(17, 24, 39, 0.8);
    padding: 20px;
    text-align: center;
    transition: bottom 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    bottom: 0;
}

.gallery-overlay h3 {
    color: var(--white);
    margin-bottom: 0;
    font-size: 1.25rem;
}

/* --- Events Page --- */
.events-section {
    padding: 80px 20px;
}

.event-card {
    display: flex;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.event-img {
    width: 40%;
    min-height: 300px;
    background-size: cover;
    background-position: center;
}

.event-content {
    width: 60%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-date {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.event-content h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.event-content p {
    color: var(--gray-600);
    margin-bottom: 25px;
}

@media (max-width: 768px) {
    .event-card {
        flex-direction: column;
    }
    .event-img {
        width: 100%;
        height: 250px;
    }
    .event-content {
        width: 100%;
        padding: 30px 20px;
    }
}

/* --- Footer --- */
.site-footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 80px 0 20px;
    margin-top: 60px;
}

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

.footer-col h3 {
    color: var(--primary);
    font-size: 1.8rem;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary);
}

.footer-col p {
    color: #ccc;
    margin-bottom: 15px;
}

.footer-col a {
    display: block;
    color: #ccc;
    margin-bottom: 12px;
}

.footer-col a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 0;
}

.social-links a:hover {
    background: var(--primary);
    color: var(--white);
    padding-left: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #888;
}

@media (max-width: 1200px) {
    .desktop-nav {
        display: none;
    }
    .mobile-toggle {
        display: block;
    }
}

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    .about-grid, .chef-section {
        grid-template-columns: 1fr;
    }
    .chef-section .chef-image {
        order: -1;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }
    .visual-categories {
        flex-direction: column;
        height: auto;
    }
    .category-item {
        height: 250px;
    }
    .booking-form .form-row {
        flex-direction: column;
        gap: 0;
    }
    .menu-grid {
        grid-template-columns: 1fr;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .menu-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .menu-item-img {
        width: 100%;
        height: 200px;
    }
    .order-cta {
        align-self: center;
        margin-top: 15px;
    }
}

/* --- New Sections Added --- */
.testimonials-section {
    padding: 60px 20px;
    background-color: var(--white);
    margin-bottom: 60px;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.testimonial-card {
    background: var(--gray-100);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}
.stars {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 15px;
}
.review-text {
    font-style: italic;
    color: var(--gray-600);
    margin-bottom: 20px;
}
.reviewer h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}
.reviewer span {
    font-size: 0.9rem;
    color: var(--gray-600);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
}
.value-card {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05);
}
.value-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}
.value-card h3 {
    margin-bottom: 15px;
}
.value-card p {
    color: var(--gray-600);
}

.contact-form-container {
    padding: 50px;
    background: var(--gray-100);
}
.contact-form-container h2 {
    color: var(--primary);
    margin-bottom: 20px;
}
.mt-5 {
    margin-top: 3rem;
}
.full-width-map iframe {
    border-radius: 12px;
}
