/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --bg: #ffffff;
    --bg-muted: #fafafa;
    --text: #111111;
    --muted: #666666;
    --border: #e5e7eb;
    --accent: #111111;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--bg);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.4rem;
}

p {
    margin-bottom: 1rem;
    color: var(--muted);
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--text);
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent);
}

.booking-btn {
    background-color: var(--accent);
    color: white !important;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.booking-btn:hover {
    background-color: #000000;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--text);
    margin: 3px 0;
    transition: 0.3s;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--accent);
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #000000;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
}

.btn-secondary:hover {
    background-color: var(--accent);
    color: #ffffff;
}

/* Hero Section */
.hero {
    min-height: 80vh;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    margin-top: 70px;
    border-bottom: 1px solid var(--border);
}

.hero-content {
    max-width: 1200px;
    padding: 0 20px;
    width: 100%;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-title {
    font-size: 3.25rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--muted);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-media img {
    display: block;
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid var(--border);
}

/* Page Header */
.page-header {
    background-color: var(--bg-muted);
    padding: 120px 0 80px;
    text-align: center;
    margin-top: 70px;
}

.page-header h1 {
    color: var(--text);
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: #666;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: var(--bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    text-align: center;
}

.feature-card {
    padding: 2rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--text);
    margin-bottom: 1rem;
}

/* Dishes Section */
.dishes {
    padding: 80px 0;
    background-color: var(--bg-muted);
    text-align: center;
}

.dishes h2 {
    color: var(--text);
    margin-bottom: 0.5rem;
}

.dishes p {
    color: var(--muted);
    margin-bottom: 2.5rem;
}

.dishes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.dish {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
}

.dish img {
    display: block;
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.dish figcaption {
    padding: 0.75rem 1rem;
    font-weight: 600;
    color: var(--text);
}

/* Testimonials Section */
.testimonials {
    background-color: var(--bg-muted);
    padding: 80px 0;
}

.testimonials h2 {
    text-align: center;
    color: var(--text);
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid var(--border);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-3px);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-info h4 {
    color: var(--text);
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.author-info span {
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 500;
}

.rating {
    color: var(--text);
    font-size: 1.2rem;
}

/* Chef Special Section */
.chef-special {
    padding: 80px 0;
    background: var(--bg-muted);
}

.chef-special-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.chef-special-text h2 {
    color: var(--text);
    margin-bottom: 0.5rem;
}

.chef-special-text h3 {
    color: var(--text);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.chef-special-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.special-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.special-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid var(--border);
}

.special-label {
    font-weight: 600;
    color: var(--text);
}

.special-value {
    color: var(--text);
    font-weight: 600;
}

.chef-special-image {
    display: flex;
    justify-content: center;
}

.chef-special-image img {
    height: 400px;
    width: 100%;
    max-width: 500px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid var(--border);
}

/* Events Section */
.events {
    background-color: #ffffff;
    color: var(--text);
    padding: 80px 0;
}

.events h2 {
    text-align: center;
    color: var(--text);
    margin-bottom: 3rem;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.event-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    transition: transform 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
    border-radius: 10px;
    padding: 1rem;
    min-width: 80px;
    height: 80px;
}

.event-date .day {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.event-date .month {
    font-size: 0.9rem;
    font-weight: 600;
}

.event-info h3 {
    color: var(--text);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.event-info p {
    color: var(--muted);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.event-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.event-time,
.event-price {
    color: var(--text);
    font-weight: 600;
    font-size: 0.9rem;
}

.events-cta {
    text-align: center;
}

/* Gallery Preview Section */
.gallery-preview {
    padding: 80px 0;
    background-color: var(--bg-muted);
}

.gallery-preview h2 {
    text-align: center;
    color: var(--text);
    margin-bottom: 1rem;
}

.gallery-preview p {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-3px);
}

.gallery-item img {
    display: block;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* Awards Section */
.awards {
    padding: 80px 0;
}

.awards h2 {
    text-align: center;
    color: var(--text);
    margin-bottom: 3rem;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.award-item {
    text-align: center;
    padding: 2rem;
    background: #ffffff;
    border-radius: 10px;
    border: 1px solid var(--border);
    transition: transform 0.3s ease;
}

.award-item:hover {
    transform: translateY(-3px);
}

.award-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.award-item h3 {
    color: var(--text);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.award-item p {
    color: var(--muted);
    font-weight: 600;
    margin: 0;
}

/* CTA Section */
.cta {
    background-color: var(--bg-muted);
    color: var(--text);
    padding: 80px 0;
    text-align: center;
}

.cta h2 {
    color: var(--text);
    margin-bottom: 1rem;
}

.cta p {
    color: var(--muted);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* About Page Styles */
.about-story {
    padding: 80px 0;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
    color: var(--text);
    margin-bottom: 2rem;
}

.image-placeholder {
    height: 400px;
    background-color: #f8f9fa;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 1.2rem;
    border: 2px dashed #dee2e6;
}

.team {
    background-color: var(--bg-muted);
    padding: 80px 0;
}

.team h2 {
    text-align: center;
    color: var(--text);
    margin-bottom: 3rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.team-member {
    text-align: center;
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid var(--border);
}

.member-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: #f8f9fa;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    border: 2px dashed #dee2e6;
}

.member-role {
    color: var(--text);
    font-weight: 600;
    margin-bottom: 1rem;
}

.values {
    padding: 80px 0;
}

.values h2 {
    text-align: center;
    color: var(--text);
    margin-bottom: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
}

.value-item h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

/* Menu Page Styles */
.menu-categories {
    padding: 80px 0;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    background: none;
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tab-btn.active,
.tab-btn:hover {
    background-color: var(--accent);
    color: #ffffff;
}

.menu-section {
    display: none;
}

.menu-section.active {
    display: block;
}

.menu-section h2 {
    text-align: center;
    color: var(--text);
    margin-bottom: 3rem;
}

.menu-items {
    max-width: 800px;
    margin: 0 auto;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.5rem 0;
    border-bottom: 1px solid #eee;
}

.menu-item:last-child {
    border-bottom: none;
}

.item-info h3 {
    color: var(--text);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.item-info p {
    color: #666;
    margin: 0;
}

.price {
    font-weight: 600;
    color: var(--text);
    font-size: 1.2rem;
    white-space: nowrap;
    margin-left: 1rem;
}

/* Contact Page Styles */
.contact-info {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-card {
    text-align: center;
    padding: 2rem;
    background: #ffffff;
    border-radius: 10px;
    border: 1px solid var(--border);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    color: var(--text);
    margin-bottom: 1rem;
}

.contact-form-section {
    background-color: var(--bg-muted);
    padding: 80px 0;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    padding: 3rem;
    border-radius: 10px;
    border: 1px solid var(--border);
}

.form-container h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid #eee;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.map-section {
    padding: 80px 0;
}

.map-section h2 {
    text-align: center;
    color: var(--text);
    margin-bottom: 3rem;
}

.map-container {
    max-width: 800px;
    margin: 0 auto;
}

.map-placeholder {
    height: 400px;
    background-color: var(--bg-muted);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 1.2rem;
    border: 2px dashed var(--border);
}

.directions {
    background-color: var(--bg-muted);
    padding: 80px 0;
}

.directions h2 {
    text-align: center;
    color: var(--text);
    margin-bottom: 3rem;
}

.directions-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.directions-text h3,
.parking-info h3 {
    color: var(--text);
    margin-bottom: 1rem;
}

.directions-text ul {
    list-style: none;
    padding: 0;
}

.directions-text li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.directions-text li::before {
    content: '•';
    color: var(--accent);
    position: absolute;
    left: 0;
}

.parking-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.parking-option {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid var(--border);
}

.parking-option h4 {
    color: var(--text);
    margin-bottom: 0.5rem;
}

/* Booking Page Styles */
.booking-section {
    padding: 80px 0;
}

.booking-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.booking-form-container {
    background: #ffffff;
    padding: 3rem;
    border-radius: 10px;
    border: 1px solid var(--border);
}

.booking-form-container h2 {
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.booking-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.booking-info h3 {
    color: var(--text);
    text-align: center;
}

.info-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid var(--border);
}

.info-card h4 {
    color: var(--text);
    margin-bottom: 1rem;
}

.info-card ul {
    list-style: none;
    padding: 0;
}

.info-card li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.info-card li::before {
    content: '•';
    color: var(--accent);
    position: absolute;
    left: 0;
}

.contact-info {
    background: var(--bg-muted);
    color: var(--text);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.contact-info h4 {
    color: var(--text);
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--muted);
    margin: 0;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

/* Modal Styles */
.confirmation-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.modal-header {
    padding: 2rem 2rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
}

.modal-header h2 {
    color: #2c3e50;
    margin: 0;
}

.close-modal {
    font-size: 2rem;
    cursor: pointer;
    color: #666;
    line-height: 1;
}

.close-modal:hover {
    color: #333;
}

.modal-body {
    padding: 2rem;
}

.reservation-details {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 5px;
    margin: 1rem 0;
}

.modal-footer {
    padding: 1rem 2rem 2rem;
    text-align: center;
}

/* Footer */
.footer {
    background-color: var(--bg);
    color: var(--text);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--text);
    margin-bottom: 1rem;
}

.footer-section p {
    color: var(--muted);
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #000000;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    color: #9ca3af;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .directions-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .booking-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .category-tabs {
        flex-direction: column;
        align-items: center;
    }

    .tab-btn {
        width: 200px;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .form-container,
    .booking-form-container {
        padding: 2rem 1.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .chef-special-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    .event-card {
        flex-direction: column;
        text-align: center;
    }

    .event-date {
        align-self: center;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .form-container,
    .booking-form-container {
        padding: 2rem 1.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .chef-special-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .awards-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}
