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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #fefefe;
    font-weight: 300;
    overflow-x: hidden;
}

/* Typography */
.hero-title,
.section-title,
.story-title,
.event-title,
.testimonials-title,
.cta-title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

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

.logo-image {
    height: 50px;
    width: auto;
    border-radius: 4px;
}

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-style: italic;
    font-size: 1.8rem;
    color: #1a1a1a;
    margin: 0;
}

/* Navigation */
.navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-menu a {
    text-decoration: none;
    color: #2c2c2c;
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #8b4513;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #8b4513;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: #1a1a1a;
    border-radius: 3px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8f6f0 0%, #f0ede5 100%);
    padding: 120px 0 80px;
}

.hero-content {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    gap: 6rem;
    width: 100%;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #5a5a5a;
    margin-bottom: 2.5rem;
    font-weight: 300;
    line-height: 1.6;
    max-width: 420px;
}

.hero-cta {
    margin-top: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 2.8rem;
    background: #8b4513;
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    border: 2px solid #8b4513;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.2);
}

.cta-button:hover {
    background: transparent;
    color: #8b4513;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.3);
}

.hero-image-placeholder {
    flex: 1;
    max-width: 600px;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.hero-image-placeholder:hover {
    transform: translateY(-8px);
    box-shadow: 0 35px 100px rgba(0, 0, 0, 0.18);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Spacing */
section {
    padding: 8rem 0;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6a6a6a;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

/* Signature Offerings */
.signature-section {
    background: #faf9f7;
}

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

.offering-item {
    background: white;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offering-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.offering-image-placeholder {
    height: 300px;
    background: linear-gradient(135deg, #e8dcc6 0%, #d4c4a8 100%);
    position: relative;
}

.offering-content {
    padding: 2.5rem;
}

.offering-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 500;
}

.offering-description {
    color: #5a5a5a;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.offering-price {
    font-weight: 500;
    color: #8b4513;
    font-size: 1.1rem;
}

/* Story Section */
.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.story-title {
    font-size: 3rem;
    color: #1a1a1a;
    margin-bottom: 2rem;
}

.story-paragraph {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.story-image-placeholder {
    height: 500px;
    background: linear-gradient(45deg, #d4c4a8 0%, #c8b99c 100%);
}

/* Gallery Section */
.gallery-section {
    padding: 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 400px 400px;
    gap: 1rem;
}

.gallery-item.large {
    grid-row: span 2;
}

.gallery-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e8dcc6 0%, #d4c4a8 50%, #c8b99c 100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image-placeholder {
    transform: scale(1.05);
}

/* Event Section */
.event-section {
    background: #f8f6f0;
}

.event-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.event-title {
    font-size: 3rem;
    color: #1a1a1a;
    margin-bottom: 2rem;
}

.event-description {
    font-size: 1.2rem;
    color: #4a4a4a;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.event-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.feature p {
    color: #5a5a5a;
    line-height: 1.6;
}

.event-image-placeholder {
    height: 600px;
    background: linear-gradient(45deg, #d4c4a8 0%, #c8b99c 100%);
}

/* Testimonials */
.testimonials-section {
    background: #1a1a1a;
    color: white;
}

.testimonials-title {
    text-align: center;
    font-size: 3rem;
    color: white;
    margin-bottom: 4rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    
}

.testimonial {
    padding: 3rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
    flex: 1;
    
}

.testimonial-author {
    font-weight: 500;
    color: #d4c4a8;
    margin-top: auto;
}

/* Contact CTA */
.contact-cta {
    background: linear-gradient(135deg, #f8f6f0 0%, #f0ede5 100%);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 3.5rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: #5a5a5a;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.cta-button-large {
    display: inline-block;
    padding: 1.5rem 3rem;
    background: #8b4513;
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    border: 2px solid #8b4513;
}

.cta-button-large:hover {
    background: transparent;
    color: #8b4513;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.3);
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: #d4c4a8;
}

.footer-subtitle {
    font-weight: 500;
    margin-bottom: 1rem;
    color: #d4c4a8;
}

.footer-text {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        max-width: 100%;
        gap: 4rem;
        padding: 0 2rem;
    }
    
    .hero-text {
        max-width: 500px;
    }
    
    .hero-image-placeholder {
        max-width: 500px;
        height: 400px;
    }
    
    .story-content,
    .event-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 300px 300px 300px;
    }
    
    .gallery-item.large {
        grid-row: span 1;
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .hamburger {
        display: block;
        z-index: 1001;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
        gap: 0;
        z-index: 1000;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 0;
        padding: 1.5rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu a {
        font-size: 1.1rem;
        display: block;
        padding: 0.5rem 2rem;
    }
    
    .nav-menu a::after {
        display: none;
    }
    
    .logo-image {
        height: 40px;
    }
    
    .logo-text {
        font-size: 1.4rem;
    }
    
    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }
    
    .hero-content {
        flex-direction: column;
        gap: 3rem;
        padding: 0 1.5rem;
        text-align: center;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        max-width: 100%;
    }
    
    .hero-image-placeholder {
        max-width: 100%;
        width: 100%;
        height: 350px;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .offerings-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 250px);
    }
    
    .gallery-item.large {
        grid-column: span 1;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 480px) {
    .navigation {
        padding: 0.8rem 0;
    }
    
    .nav-menu {
        gap: 1rem;
        font-size: 0.85rem;
    }
    
    .logo-image {
        height: 35px;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .hero {
        padding: 90px 0 40px;
    }
    
    .hero-content {
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-image-placeholder {
        height: 280px;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .story-title,
    .event-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
    
    .offering-item,
    .testimonial {
        padding: 1.5rem;
    }
    
    .menu-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .menu-card-info {
        padding: 1.5rem;
    }
    
    .detail-card {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .detail-title {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Smooth Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.offering-item,
.testimonial {
    animation: fadeInUp 0.6s ease-out;
}

/* Image Styling */
.hero-image,
.offering-image,
.story-image,
.gallery-image,
.event-image,
.menu-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.offering-item:hover .offering-image,
.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

/* Image containers */
.hero-image-placeholder,
.offering-image-placeholder,
.story-image-placeholder,
.gallery-image-placeholder,
.event-image-placeholder {
    position: relative;
    overflow: hidden;
}

/* Interactive Menu Page Styles */
.interactive-menu-hero {
    padding: 12rem 0 4rem;
    background: linear-gradient(135deg, #f8f6f0 0%, #f0ede5 100%);
    text-align: center;
}

.interactive-menu-title {
    font-size: clamp(3rem, 6vw, 5rem);
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.interactive-menu-subtitle {
    font-size: 1.2rem;
    color: #5a5a5a;
    font-weight: 300;
}

.menu-selection-section {
    padding: 4rem 0;
}

.menu-cards-grid {
    display: grid;
    /* 2×2 på tablet/mellomstore skjermer — unngår auto-fit som gir 3+1 */
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

.menu-selection-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.menu-card-image-wrapper {
    height: 250px;
    overflow: hidden;
    flex-shrink: 0;
}

.menu-selection-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.menu-selection-card:hover .menu-selection-image {
    transform: scale(1.05);
}

.menu-card-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}

.menu-selection-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.menu-selection-price {
    font-size: 1.3rem;
    font-weight: 600;
    color: #8b4513;
    margin-bottom: 1rem;
}

.menu-selection-description {
    color: #5a5a5a;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.menu-selection-button {
    background: #8b4513;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: auto;
}

.menu-selection-button:hover {
    background: #6d3410;
    transform: translateY(-2px);
}

/* Menu Details Section */
.menu-details-section {
    padding: 10rem 0 4rem;
    background: #faf9f7;
    animation: fadeIn 0.5s ease;
}

.menu-details-header {
    margin-bottom: 3rem;
    text-align: center;
}

.back-button {
    background: transparent;
    border: 2px solid #8b4513;
    color: #8b4513;
    padding: 1rem 2rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.back-button:hover {
    background: #8b4513;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.3);
}

.detail-card {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.detail-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 1rem;
}

.detail-price {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 600;
    color: #8b4513;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: rgba(139, 69, 19, 0.1);
    border-radius: 8px;
}

.detail-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #1a1a1a;
    margin: 2rem 0 1rem 0;
}

.detail-menu-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.detail-menu-list li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 1.1rem;
    color: #2c2c2c;
}

.detail-menu-list li:last-child {
    border-bottom: none;
}

.detail-note {
    background: #f8f6f0;
    padding: 2rem;
    border-radius: 8px;
    color: #5a5a5a;
    font-style: italic;
    margin-top: 2rem;
}

/* Tapas columns for details */
.tapas-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.tapas-column {
    background: #f8f6f0;
    padding: 2rem;
    border-radius: 8px;
}

/* Snitter pricing grid */
.snitter-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 3rem;
}

.price-box {
    background: white;
    border: 2px solid #f0ede5;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.price-box:hover {
    border-color: #8b4513;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(139, 69, 19, 0.1);
}

.bestseller-box {
    border-color: #8b4513;
    background: rgba(139, 69, 19, 0.05);
}

.price-header {
    font-size: 1.1rem;
    color: #2c2c2c;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.price-value {
    font-size: 1.4rem;
    font-weight: 600;
    color: #8b4513;
}

/* Responsive for snitter grid */
@media (max-width: 768px) {
    .snitter-pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 0.8rem;
    }
    
    .price-box {
        padding: 1rem;
    }
    
    .price-header {
        font-size: 1rem;
    }
    
    .price-value {
        font-size: 1.2rem;
    }
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-detail-content {
    animation: fadeIn 0.5s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .interactive-menu-hero {
        padding: 10rem 0 3rem;
    }
    
    .menu-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .menu-card-info {
        padding: 1.5rem;
    }
    
    .detail-card {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .detail-title {
        font-size: 2.5rem;
    }
    
    .tapas-columns {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .tapas-column {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .interactive-menu-title {
        font-size: 2.5rem;
    }
    
    .detail-title {
        font-size: 2rem;
    }
    
    .detail-card {
        padding: 1.5rem;
    }
}
.simple-menu-hero {
    padding: 12rem 0 4rem;
    background: linear-gradient(135deg, #f8f6f0 0%, #f0ede5 100%);
    text-align: center;
}

.simple-menu-title {
    font-size: clamp(3rem, 6vw, 5rem);
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.simple-menu-subtitle {
    font-size: 1.2rem;
    color: #5a5a5a;
    font-weight: 300;
}

.simple-menu-section {
    padding: 3rem 0;
}

.simple-menu-section.alt {
    background: #faf9f7;
}

.simple-menu-card {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.menu-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 1rem;
}

.menu-card-price {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: #8b4513;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(139, 69, 19, 0.1);
    border-radius: 4px;
}

.menu-card-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #1a1a1a;
    margin: 2rem 0 1rem 0;
}

.simple-menu-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.simple-menu-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 1.1rem;
    color: #2c2c2c;
}

.simple-menu-list li:last-child {
    border-bottom: none;
}

.allergens {
    color: #8b4513;
    font-style: italic;
    font-size: 0.9rem;
}

.menu-image-section {
    margin-bottom: 2rem;
    border-radius: 8px;
    overflow: hidden;
}

.menu-card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.menu-note {
    background: #f8f6f0;
    padding: 1.5rem;
    border-radius: 4px;
    color: #5a5a5a;
    font-style: italic;
    margin-top: 2rem;
}

/* Tapas columns */
.tapas-column {
    margin-bottom: 2rem;
}

/* Snitter pricing */
.snitter-prices {
    margin-bottom: 2rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

.price-row:hover {
    background: #f8f6f0;
}

.price-row.bestseller {
    background: rgba(139, 69, 19, 0.1);
    font-weight: 500;
}

.price-item {
    font-size: 1.1rem;
    color: #2c2c2c;
}

.price-amount {
    font-weight: 600;
    color: #8b4513;
}

.price-amount small {
    color: #8b4513;
    font-weight: 400;
}

/* Snitter options */
.snitter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.option-tag {
    background: #f0ede5;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #2c2c2c;
    transition: all 0.3s ease;
}

.option-tag:hover {
    background: #8b4513;
    color: white;
}

/* Simple CTA */
.simple-cta {
    background: #1a1a1a;
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.simple-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.simple-cta p {
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 2rem;
}

/* Responsive for simple menu */
@media (max-width: 768px) {
    .simple-menu-hero {
        padding: 10rem 0 3rem;
    }
    
    .simple-menu-card {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .menu-card-title {
        font-size: 2rem;
    }
    
    .price-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .snitter-options {
        justify-content: center;
    }
    
    .simple-cta h2 {
        font-size: 2rem;
    }
}
.menu-hero {
    padding: 12rem 0 6rem;
    background: linear-gradient(135deg, #f8f6f0 0%, #f0ede5 100%);
    text-align: center;
}

.menu-hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.menu-hero-subtitle {
    font-size: 1.3rem;
    color: #5a5a5a;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

.menu-section {
    padding: 6rem 0;
}

.menu-section.alt-bg {
    background: #faf9f7;
}

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

.category-title {
    font-size: 3rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.category-description {
    font-size: 1.2rem;
    color: #6a6a6a;
    font-weight: 300;
}

.menu-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.menu-layout.reverse {
    direction: rtl;
}

.menu-layout.reverse > * {
    direction: ltr;
}

.menu-content {
    padding: 2rem 0;
}

.menu-items {
    margin-bottom: 3rem;
}

.menu-item {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.menu-item:last-child {
    border-bottom: none;
}

.item-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.item-allergens,
.item-note {
    color: #8b4513;
    font-style: italic;
    font-size: 0.95rem;
}

.price-info {
    background: rgba(139, 69, 19, 0.05);
    padding: 2rem;
    border-left: 4px solid #8b4513;
}

.price-main {
    font-size: 1.5rem;
    font-weight: 600;
    color: #8b4513;
    margin-bottom: 1rem;
}

.price-note {
    color: #5a5a5a;
    line-height: 1.6;
    font-style: italic;
}

.menu-image-placeholder {
    height: 500px;
    background: linear-gradient(135deg, #e8dcc6 0%, #d4c4a8 100%);
    border-radius: 8px;
}

/* Tapas Sections */
.tapas-sections {
    margin-bottom: 3rem;
}

.tapas-section {
    margin-bottom: 3rem;
}

.section-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #8b4513;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

/* Snitter Pricing */
.snitter-pricing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.price-item {
    background: white;
    padding: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.price-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 1.4rem;
    font-weight: 600;
    color: #8b4513;
    margin-bottom: 0.5rem;
}

.snitter-options {
    background: #f8f6f0;
    padding: 2rem;
    border-radius: 8px;
}

.options-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

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

.option {
    padding: 0.8rem 1rem;
    background: white;
    border-radius: 4px;
    font-size: 0.95rem;
    color: #4a4a4a;
    transition: background-color 0.3s ease;
}

.option:hover {
    background: #8b4513;
    color: white;
}

/* Custom Section */
.custom-section {
    background: #1a1a1a;
    color: white;
    text-align: center;
}

.custom-content {
    max-width: 1000px;
    margin: 0 auto;
}

.custom-title {
    font-size: 3rem;
    color: white;
    margin-bottom: 2rem;
}

.custom-description {
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.custom-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-item {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 8px;
}

.feature-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #d4c4a8;
    margin-bottom: 1rem;
}

.feature-item p {
    color: #b0b0b0;
    line-height: 1.6;
}

/* Menu Responsive Design */
@media (max-width: 1024px) {
    .menu-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .menu-layout.reverse {
        direction: ltr;
    }
    
    .snitter-pricing {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}

@media (max-width: 768px) {
    .menu-hero {
        padding: 10rem 0 4rem;
    }
    
    .menu-section {
        padding: 4rem 0;
    }
    
    .category-title {
        font-size: 2.5rem;
    }
    
    .custom-title {
        font-size: 2.5rem;
    }
    
    .snitter-pricing {
        grid-template-columns: 1fr;
    }
    
    .options-grid {
        grid-template-columns: 1fr;
    }
    
    .custom-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .menu-hero-title {
        font-size: 2.5rem;
    }
    
    .category-title {
        font-size: 2rem;
    }
    
    .custom-title {
        font-size: 2rem;
    }
    
    .price-info,
    .snitter-options {
        padding: 1.5rem;
    }
}
/* About Page Styles */
.about-hero {
    padding: 12rem 0 6rem;
    background: linear-gradient(135deg, #f8f6f0 0%, #f0ede5 100%);
    text-align: center;
}

.about-hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.about-hero-subtitle {
    font-size: 1.3rem;
    color: #5a5a5a;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

.main-story {
    padding: 6rem 0;
}

.story-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-heading {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.story-paragraph {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 1.8rem;
    line-height: 1.8;
}

.values-section {
    background: #faf9f7;
    padding: 6rem 0;
}

.values-title {
    text-align: center;
    font-size: 3rem;
    color: #1a1a1a;
    margin-bottom: 4rem;
}

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

.value-item {
    background: white;
    padding: 3rem 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.value-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #8b4513;
    margin-bottom: 1rem;
}

.value-description {
    color: #5a5a5a;
    line-height: 1.7;
}

.craftsmanship-section {
    padding: 6rem 0;
}

.craftsmanship-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.craftsmanship-title {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 2rem;
}

.craftsmanship-description {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.craftsmanship-highlights {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.highlight h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #8b4513;
    margin-bottom: 0.5rem;
}

.highlight p {
    color: #5a5a5a;
    line-height: 1.6;
}

.team-section {
    background: #1a1a1a;
    color: white;
    padding: 6rem 0;
    text-align: center;
}

.team-title {
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
}

.team-subtitle {
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 4rem;
}

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

.team-member {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 8px;
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.member-image-placeholder {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #d4c4a8 0%, #c8b99c 100%);
    border-radius: 50%;
    margin: 0 auto 2rem;
    overflow: hidden;
}

.member-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #d4c4a8;
    margin-bottom: 0.5rem;
}

.member-role {
    color: #8b4513;
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-description {
    color: #b0b0b0;
    line-height: 1.6;
}

.commitment-section {
    background: linear-gradient(135deg, #f8f6f0 0%, #f0ede5 100%);
    padding: 6rem 0;
    text-align: center;
}

.commitment-content {
    max-width: 1000px;
    margin: 0 auto;
}

.commitment-title {
    font-size: 3rem;
    color: #1a1a1a;
    margin-bottom: 2rem;
}

.commitment-description {
    font-size: 1.2rem;
    color: #5a5a5a;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.commitment-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.commitment-point {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.commitment-point h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #8b4513;
    margin-bottom: 1rem;
}

.commitment-point p {
    color: #5a5a5a;
    line-height: 1.6;
}

/* Contact Page Styles */
.contact-hero {
    padding: 12rem 0 6rem;
    background: linear-gradient(135deg, #f8f6f0 0%, #f0ede5 100%);
    text-align: center;
}

.contact-hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.contact-hero-subtitle {
    font-size: 1.3rem;
    color: #5a5a5a;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form-section {
    padding: 6rem 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 2rem;
    word-wrap: break-word;
}

.contact-info-description {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 3rem;
    line-height: 1.7;
    word-wrap: break-word;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-detail {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    max-width: 100%;
    word-wrap: break-word;
}

.detail-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #8b4513;
    margin-bottom: 1rem;
    text-align: left;
}

.detail-info {
    font-size: 1.2rem;
    color: #1a1a1a;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-align: left;
}

.detail-note {
    color: #6a6a6a;
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: left;
}

.contact-form {
    background: #faf9f7;
    padding: 3rem;
    border-radius: 8px;
    max-width: 100%;
}

.form-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 2rem;
    text-align: center;
}

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

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

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

.form-group label {
    font-weight: 500;
    color: #2c2c2c;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    max-width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8b4513;
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: #4a4a4a;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.submit-button {
    width: 100%;
    max-width: 100%;
    padding: 1.2rem 2rem;
    background: #8b4513;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.submit-button:hover {
    background: #6d3410;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.3);
}

.faq-section {
    background: #faf9f7;
    padding: 6rem 0;
}

.faq-title {
    text-align: center;
    font-size: 3rem;
    color: #1a1a1a;
    margin-bottom: 4rem;
}

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

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.faq-question {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.faq-answer {
    color: #5a5a5a;
    line-height: 1.7;
}

.contact-cta .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button.secondary {
    background: transparent;
    color: #8b4513;
    border: 2px solid #8b4513;
}

.cta-button.secondary:hover {
    background: #8b4513;
    color: white;
}

/* Responsive Design for About and Contact */
@media (max-width: 1024px) {
    .story-layout,
    .craftsmanship-content,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .values-grid,
    .team-grid,
    .commitment-points {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-hero,
    .contact-hero {
        padding: 10rem 0 4rem;
    }
    
    .main-story,
    .values-section,
    .craftsmanship-section,
    .team-section,
    .commitment-section,
    .contact-form-section,
    .faq-section {
        padding: 4rem 0;
    }
    
    .values-title,
    .team-title,
    .commitment-title,
    .faq-title {
        font-size: 2.5rem;
    }
    
    .story-heading,
    .craftsmanship-title,
    .contact-info-title {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-info-title {
        font-size: 2rem;
    }
    
    .contact-form-section {
        padding: 4rem 1rem;
    }
    
    .form-title {
        font-size: 1.5rem;
    }
    
    .values-grid,
    .team-grid,
    .commitment-points {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .about-hero-title,
    .contact-hero-title {
        font-size: 2.5rem;
    }
    
    .values-title,
    .team-title,
    .commitment-title,
    .faq-title {
        font-size: 2rem;
    }
    
    .story-heading,
    .craftsmanship-title,
    .contact-info-title {
        font-size: 1.8rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .contact-detail {
        padding: 1.5rem;
    }
    
    .contact-form-section {
        padding: 3rem 1rem;
    }
    
    .form-title {
        font-size: 1.3rem;
    }
    
    .contact-info-description {
        font-size: 1rem;
    }
    
    .detail-title {
        font-size: 1.1rem;
    }
    
    .detail-info {
        font-size: 1.1rem;
    }
    
    .container {
        padding: 0 0.75rem;
    }
    
    .value-item,
    .team-member,
    .commitment-point,
    .faq-item {
        padding: 1.5rem;
    }
}

/* Price List Section Styles */
.price-list-section {
    margin-bottom: 3rem;
    padding: 0 0 2rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.price-list-section:last-child {
    border-bottom: none;
}

.price-list-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #8b4513;
    margin-bottom: 1.5rem;
    text-align: center;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1rem;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.15);
}

.price-item:last-of-type {
    border-bottom: none;
}

.item-name {
    font-size: 1.1rem;
    color: #2c2c2c;
    flex: 1;
}

.item-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: #8b4513;
    white-space: nowrap;
    margin-left: 1rem;
    margin-right: 1rem;
}

.allergens-note {
    font-size: 0.9rem;
    color: #8b4513;
    font-style: italic;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    padding-left: 0;
}

/* Responsive for price list */
@media (max-width: 768px) {
    .price-list-section h3 {
        font-size: 1.5rem;
    }
    
    .price-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        padding: 1.2rem 0;
    }
    
    .item-price {
        margin-left: 0;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .price-list-section {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
    
    .price-list-section h3 {
        font-size: 1.3rem;
    }
    
    .item-name {
        font-size: 1rem;
    }
    
    .item-price {
        font-size: 1.1rem;
    }
    
    .allergens-note {
        font-size: 0.85rem;
    }
}

/* ========================================
   SWEETGREEN-INSPIRED MENU STYLES
   ======================================== */

/* Hero Section */
.modern-menu-hero {
    padding: 12rem 0 6rem;
    background: #fafaf8;
    text-align: center;
}

.modern-menu-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-weight: 500;
    line-height: 1.2;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.modern-menu-hero-subtitle {
    font-size: 1.2rem;
    color: #6a6a6a;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

/* Category Section */
.modern-menu-category {
    padding: 5rem 0;
    background: white;
}

.modern-menu-category.alt-bg {
    background: #fafaf8;
}

.modern-menu-category-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 500;
    text-align: left;
}

.modern-menu-category-subtitle {
    font-size: 1rem;
    color: #6a6a6a;
    margin-bottom: 3rem;
    font-weight: 300;
}

/* Menu Grid */
.modern-menu-menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Menu Item Card */
.modern-menu-menu-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.modern-menu-menu-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.modern-menu-item-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #f5f5f3;
}

.modern-menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.modern-menu-menu-item:hover .modern-menu-item-image img {
    transform: scale(1.05);
}

.modern-menu-item-content {
    padding: 2rem;
}

.modern-menu-item-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.modern-menu-item-description {
    font-size: 0.95rem;
    color: #5a5a5a;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Nutrition Info */
.modern-menu-item-nutrition {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
}

.nutrition-item {
    font-size: 0.85rem;
    font-weight: 500;
    color: #8b4513;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.bestseller-badge {
    background: #8b4513;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    display: inline-block;
}

/* Allergen Info */
.allergen-info {
    font-size: 0.85rem;
    color: #8b4513;
    font-style: italic;
    margin-top: 0.5rem;
}

.allergen-section {
    margin-top: 4rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.allergen-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.allergen-text {
    font-size: 0.95rem;
    color: #5a5a5a;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

/* Customize Section */
.modern-menu-customize {
    padding: 6rem 0;
    background: #1a1a1a;
    text-align: center;
}

.customize-content {
    max-width: 800px;
    margin: 0 auto;
}

.customize-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.customize-description {
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.modern-menu-cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: white;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.modern-menu-cta-button:hover {
    background: #f5f5f3;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .modern-menu-menu-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .modern-menu-hero {
        padding: 10rem 0 4rem;
    }
    
    .modern-menu-category {
        padding: 3rem 0;
    }
    
    .modern-menu-menu-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .modern-menu-item-image {
        height: 240px;
    }
    
    .modern-menu-item-content {
        padding: 1.5rem;
    }
    
    .modern-menu-customize {
        padding: 4rem 0;
    }
}

@media (max-width: 480px) {
    .modern-menu-hero-title {
        font-size: 2rem;
    }
    
    .modern-menu-hero-subtitle {
        font-size: 1rem;
    }
    
    .modern-menu-category-title {
        font-size: 1.8rem;
    }
    
    .modern-menu-item-image {
        height: 200px;
    }
    
    .modern-menu-item-content {
        padding: 1.25rem;
    }
    
    .modern-menu-item-title {
        font-size: 1rem;
    }
    
    .modern-menu-item-description {
        font-size: 0.9rem;
    }
    
    .customize-title {
        font-size: 1.8rem;
    }
    
    .customize-description {
        font-size: 1rem;
    }
}

/* Menu Grid Without Images */
.modern-menu-menu-grid-no-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

/* Menu Item Card Without Image */
.modern-menu-menu-item-no-image {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 2rem;
}

.modern-menu-menu-item-no-image:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Responsive for no-image grid */
@media (max-width: 768px) {
    .modern-menu-menu-grid-no-images {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .modern-menu-menu-item-no-image {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .modern-menu-menu-grid-no-images {
        grid-template-columns: 1fr;
    }
}

/* Title with Badge */
.title-with-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.title-with-badge .modern-menu-item-title {
    margin-bottom: 0;
}

.title-with-badge .bestseller-badge {
    flex-shrink: 0;
}

/* Contact Hero Section */
.contact-hero-section {
    background: linear-gradient(135deg, #f8f5f2 0%, #ffffff 100%);
    padding: 6rem 0 4rem 0;
}

.contact-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem auto;
}

.contact-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 1.5rem;
}

.contact-hero-description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 1rem;
}

.contact-card-info {
    font-size: 1.1rem;
    font-weight: 500;
    color: #8b4513;
    margin-bottom: 0.5rem;
}

.contact-card-note {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0.3rem;
}

.contact-card-button {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.8rem 2rem;
    background: #8b4513;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.contact-card-button:hover {
    background: #6d3410;
}

@media (max-width: 768px) {
    .contact-hero-title {
        font-size: 2rem;
    }
    
    .contact-hero-description {
        font-size: 1rem;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-info-card {
        padding: 2rem 1.5rem;
    }
}

/* Menu Disclaimer */
.menu-disclaimer {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 0.95rem;
    color: #e0e0e0;
    text-align: center;
}
