/* ============================================
   White Oak Restaurant - Professional Landing Page
   Color Scheme: Brown/Tan (#8B6F47), Orange (#FF6B35), White/Beige
   ============================================ */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-brown: #8B6F47;
    --dark-brown: #6B5637;
    --light-brown: #A68B6B;
    --accent-orange: #FF6B35;
    --dark-orange: #E55A2B;
    --light-orange: #FF8C5A;
    --white: #FFFFFF;
    --beige: #F5F1EB;
    --light-beige: #FAF8F5;
    --dark-gray: #2C2C2C;
    --medium-gray: #666666;
    --light-gray: #E5E5E5;
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-gray);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }

p {
    margin-bottom: 1rem;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: var(--font-secondary);
    font-size: 14px;
}

.btn-primary {
    background-color: var(--accent-orange);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--dark-orange);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-brown);
    border: 2px solid var(--primary-brown);
}

.btn-secondary:hover {
    background-color: var(--primary-brown);
    color: var(--white);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: 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: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
    display: block;
}

.logo {
    min-width: 60px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img:not([src]),
.logo img[src=""] {
    content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60"><circle cx="30" cy="30" r="28" fill="none" stroke="%238B6F47" stroke-width="2"/><text x="30" y="35" font-family="Arial" font-size="12" fill="%238B6F47" text-anchor="middle" font-weight="bold">LOGO</text></svg>');
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent-orange);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-orange);
}

.btn-reservation {
    background-color: var(--accent-orange);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 4px;
}

.btn-reservation:hover {
    background-color: var(--dark-orange);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--dark-gray);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(135deg, var(--beige) 0%, var(--light-beige) 100%);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 90px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(139, 111, 71, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 4.5rem;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 400;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-tagline {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 25px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 10px;
    background-color: var(--white);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.5; transform: translateX(-50%) translateY(10px); }
}

/* Reservation Widget */
.reservation-widget {
    background-color: var(--white);
    padding: 60px 0;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
    margin-top: -50px;
}

.reservation-box {
    background-color: var(--beige);
    padding: 40px;
    border-radius: 10px;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.reservation-box h3 {
    font-size: 1.2rem;
    color: var(--primary-brown);
    margin-bottom: 5px;
    text-align: center;
}

.reservation-box h4 {
    font-size: 2rem;
    color: var(--dark-gray);
    margin-bottom: 30px;
    text-align: center;
}

.reservation-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-gray);
    font-size: 14px;
}

.form-group select {
    padding: 12px 15px;
    border: 2px solid var(--light-gray);
    border-radius: 5px;
    font-family: var(--font-secondary);
    font-size: 15px;
    background-color: var(--white);
    color: var(--dark-gray);
    transition: border-color 0.3s ease;
}

.form-group select:focus {
    outline: none;
    border-color: var(--accent-orange);
}

.form-note {
    text-align: center;
    font-size: 12px;
    color: var(--medium-gray);
    margin-top: 10px;
}

.reservation-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

/* Welcome Section */
.welcome-section {
    padding: 80px 0;
    background-color: var(--white);
    text-align: center;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.section-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-orange);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 3rem;
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 2rem;
    color: var(--primary-brown);
    margin-bottom: 15px;
    font-weight: 400;
}

.section-description {
    font-size: 1.1rem;
    color: var(--medium-gray);
}

/* Taste Journey Section */
.taste-journey {
    padding: 100px 0;
    background-color: var(--light-beige);
}

.taste-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.taste-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark-gray);
}

.taste-text p {
    font-size: 1.1rem;
    color: var(--medium-gray);
    margin-bottom: 30px;
    line-height: 1.8;
}

.taste-image {
  
}

.taste-image img {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* Three Column Menu Section */
.three-column-menu {
    padding: 100px 0;
    background-color: var(--white);
    position: relative;
}

.menu-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}

.menu-column {
    display: flex;
    flex-direction: column;
}

.column-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-orange);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-family: var(--font-secondary);
}

.column-title {
    font-size: 2.5rem;
    font-family: var(--font-primary);
    color: var(--dark-gray);
    margin-bottom: 40px;
    font-weight: 700;
}

.menu-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.menu-list-item {
    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.1rem;
    font-weight: 600;
    color: var(--dark-gray);
    font-family: var(--font-secondary);
    margin: 0;
    flex: 1;
}

.menu-item-header .menu-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-gray);
    font-family: var(--font-secondary);
    margin-left: 20px;
}

.menu-divider {
    border: none;
    border-top: 1px solid var(--light-gray);
    margin: 8px 0 10px 0;
    width: 100%;
}

.menu-item-desc {
    font-size: 14px;
    color: var(--medium-gray);
    line-height: 1.6;
    margin: 0;
    font-family: var(--font-secondary);
}

.menu-bottom-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 60px;
}

.btn-menu-browse,
.btn-menu-order {
    display: inline-block;
    padding: 14px 40px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid var(--dark-gray);
    background-color: var(--white);
    color: var(--dark-gray);
    font-family: var(--font-secondary);
    font-size: 14px;
}

.btn-menu-browse:hover,
.btn-menu-order:hover {
    background-color: var(--dark-gray);
    color: var(--white);
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--white);
    border: 2px solid var(--dark-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background-color: var(--dark-gray);
    color: var(--white);
    transform: translateY(-5px);
}

.scroll-to-top i {
    color: var(--dark-gray);
    font-size: 18px;
    transition: color 0.3s ease;
}

.scroll-to-top:hover i {
    color: var(--white);
}

/* Menu Section */
.menu-section {
    padding: 0 0 100px;
    background-color: var(--white);
}

.menu-section.main-dishes {
    background-color: var(--beige);
}

.menu-section.beverages {
    background-color: var(--white);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.menu-item {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.menu-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: var(--light-gray);
}

.menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.menu-item:hover .menu-image img {
    transform: scale(1.1);
}

.menu-content {
    padding: 25px;
}

.menu-content h3 {
    font-size: 1.5rem;
    color: var(--dark-gray);
    margin-bottom: 10px;
}

.menu-description {
    color: var(--medium-gray);
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.menu-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-orange);
    font-family: var(--font-primary);
}

.menu-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 50px;
}

/* Recommendations Section */
.recommendations {
    padding: 0px 0;
    background-color: var(--light-beige);
}

.recommendations-masonry {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    grid-template-rows: repeat(2, 300px);
    gap: 00px;
    max-width: 1400px;
    margin: 0 auto;
}

.rec-card {
    position: relative;
    overflow: hidden;
    border-radius: 0px;
    background-color: var(--dark-gray);
    transition: transform 0.3s ease;
}

.rec-card:hover {
    transform: translateY(0px);
}

/* Large Vertical Cards */
.rec-large-vertical {
    grid-row: span 2;
}

.rec-left {
    grid-column: 1;
    grid-row: 1 / 3;
}

.rec-right {
    grid-column: 4;
    grid-row: 1 / 3;
}

.rec-large-vertical .card-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.rec-large-vertical .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rec-large-vertical.rec-left .card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
    color: var(--white);
    max-width: 70%;
}

.rec-large-vertical.rec-right .card-overlay {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
    color: var(--white);
    max-width: 70%;
    text-align: right;
}

.rec-large-vertical .card-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--accent-orange);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
    font-family: var(--font-secondary);
}

.rec-large-vertical .card-overlay h3 {
    font-size: 2rem;
    font-family: var(--font-primary);
    color: var(--white);
    margin: 8px 0;
    font-weight: 700;
    line-height: 1.2;
}

.rec-large-vertical .card-sublabel {
    font-size: 11px;
    font-weight: 600;
    color: var(--accent-orange);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: var(--font-secondary);
    display: block;
    margin-top: 8px;
    text-decoration: underline;
    text-decoration-color: var(--accent-orange);
    text-underline-offset: 3px;
}

.rec-large-vertical .card-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-bottom: 1px solid var(--accent-orange);
    padding-bottom: 3px;
    transition: color 0.3s ease;
    font-family: var(--font-secondary);
    display: inline-block;
    margin-top: 12px;
}

.rec-large-vertical .card-link:hover {
    color: var(--light-orange);
    border-bottom-color: var(--light-orange);
}

/* Small Square Cards */
.rec-small-square.rec-top {
    grid-column: 2;
    grid-row: 1;
}

.rec-small-square.rec-bottom {
    grid-column: 2;
    grid-row: 2;
}

.rec-small-square.rec-bottom-right {
    grid-column: 3;
    grid-row: 2;
}

.rec-small-square .card-image {
    width: 100%;
    height: 100%;
}

.rec-small-square .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Small Vertical Text Cards */
.rec-small-vertical {
    grid-column: 3;
    grid-row: 1;
}

.rec-text-only {
    background-color: var(--dark-gray);
    display: flex;
    align-items: center;
    justify-content: center;
}

.rec-text-only .card-content-text {
    padding: 40px 30px;
    text-align: center;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.rec-text-only .card-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--accent-orange);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 0px;
    font-family: var(--font-secondary);
}

.rec-text-only h3 {
    font-size: 1.8rem;
    font-family: var(--font-primary);
    color: var(--white);
    margin: 15px 0;
    font-weight: 700;
}

.rec-text-only .card-link {
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--accent-orange);
    padding-bottom: 2px;
    transition: color 0.3s ease;
    font-family: var(--font-secondary);
    display: inline-block;
    margin-top: 20px;
}

.rec-text-only .card-link:hover {
    color: var(--light-orange);
    border-bottom-color: var(--light-orange);
}

/* Philosophy Section */
.philosophy-section {
    padding: 100px 0;
    background-color: var(--white);
}

.philosophy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.philosophy-image {
   
}

.philosophy-image img {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.philosophy-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark-gray);
}

.philosophy-text p {
    font-size: 1.1rem;
    color: var(--medium-gray);
    margin-bottom: 30px;
    line-height: 1.8;
}

/* Visit Section */
.visit-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-brown) 0%, var(--dark-brown) 100%);
    text-align: center;
    color: var(--white);
}

.visit-content h2 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 20px;
}

.visit-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--beige);
}

.contact-info {
    margin: 40px 0;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--white);
}

/* Book Section */
.book-section {
    padding: 100px 0;
    background-color: var(--beige);
}

.book-content {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.book-content h3 {
    font-size: 1.2rem;
    color: var(--primary-brown);
    margin-bottom: 5px;
}

.book-content h4 {
    font-size: 2rem;
    color: var(--dark-gray);
    margin-bottom: 30px;
}

/* Footer */
.footer {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-section h3,
.footer-section h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-logo p {
    color: var(--light-gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--accent-orange);
    transform: translateY(-3px);
}

.hours-table {
    width: 100%;
    color: var(--light-gray);
}

.hours-table td {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hours-table td:last-child {
    text-align: right;
}

.footer-section p {
    color: var(--light-gray);
    margin-bottom: 10px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.newsletter-form input {
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-family: var(--font-secondary);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent-orange);
}

.privacy-note {
    font-size: 12px;
    margin-top: 10px;
}

.privacy-note input {
    margin-right: 8px;
}

.privacy-note label {
    color: var(--light-gray);
    cursor: pointer;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: var(--light-gray);
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--light-gray);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-orange);
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background-color: var(--white);
        transition: left 0.3s ease;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        padding: 40px 20px;
        gap: 20px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .taste-content,
    .philosophy-content {
        grid-template-columns: 1fr;
    }

    .menu-columns {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .recommendations-masonry {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .rec-large-vertical {
        grid-column: span 2;
        grid-row: span 1;
        min-height: 400px;
    }

    .rec-left {
        grid-column: 1 / 3;
    }

    .rec-right {
        grid-column: 1 / 3;
    }

    .rec-small-square {
        grid-column: span 1;
    }

    .rec-small-vertical {
        grid-column: span 1;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.8rem;
    }

    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    .section-title { font-size: 2rem; }
}

@media (max-width: 1024px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .menu-grid {
        grid-template-columns: 1fr;
    }

    .recommendations-masonry {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .rec-large-vertical,
    .rec-small-square,
    .rec-small-vertical {
        grid-column: 1;
        grid-row: auto;
        min-height: 300px;
    }

    .rec-left,
    .rec-right {
        grid-column: 1;
    }

    .reservation-actions {
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .hero {
        margin-top: 70px;
        min-height: 500px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .reservation-box {
        padding: 30px 20px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }
}

