/* ========================================
   DINELY - Luxury Restaurant Website
   Based on Figma Design
   ======================================== */

/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

@font-face {
    font-family: 'NewYork';
    src: local('New York'), local('NewYork'), local('NewYorkMedium-Regular');
    font-weight: 400;
}

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

:root {
    --primary: #B37428;
    --primary-dark: #8B5A1B;
    --brown: #886A42;
    --dark: #0F0E0E;
    --cream: #FFF7ED;
    --cream-light: #FFFBF5;
    --text: #333333;
    --text-light: #666666;
    --white: #FFFFFF;
}

body {
    font-family: 'Lora', Georgia, serif;
    color: var(--text);
    line-height: 1.6;
    background: var(--white);
}

h1, h2, h3, h4 {
    font-family: 'NewYork', 'Times New Roman', Georgia, serif;
    font-weight: 500;
    line-height: 1.2;
}

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

.center {
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 40px;
    font-family: 'Lora', Georgia, serif;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 0;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

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

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

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

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

/* Section Label */
.section-label {
    display: inline-block;
    color: var(--primary);
    font-family: 'Lora', Georgia, serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 64px;
    margin-bottom: 20px;
    color: var(--dark);
}

.section-header p {
    font-family: 'Lora', Georgia, serif;
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section-header.light h2,
.section-header.light p {
    color: var(--white);
}

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    padding: 20px 0;
    transition: background 0.3s ease, padding 0.3s ease;
}

.navbar.scrolled {
    background: var(--dark);
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

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

.nav-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.logo {
    font-family: 'NewYork', 'Times New Roman', Georgia, serif;
    font-size: 32px;
    font-weight: 500;
    color: var(--white);
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-family: 'Lora', Georgia, serif;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.3s;
}

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

.nav-phone {
    color: var(--white);
    text-decoration: none;
    font-family: 'Lora', Georgia, serif;
    font-size: 16px;
}

.nav-cta {
    background: var(--primary);
    color: var(--white);
    padding: 12px 28px;
    text-decoration: none;
    font-family: 'Lora', Georgia, serif;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.nav-cta:hover {
    background: var(--primary-dark);
}

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

@media (max-width: 992px) {
    .nav-cta {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1920&h=1200&fit=crop') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 0 20px;
    color: var(--white);
    margin-top: -80px;
}

.hero-subtitle {
    font-family: 'Lora', Georgia, serif;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 25px;
    color: var(--primary);
}

.hero h1 {
    font-size: 76px;
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.1;
}

.hero-description {
    font-family: 'Lora', Georgia, serif;
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.7;
}

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

/* ========================================
   MENY SECTION (First section after hero)
   ======================================== */
.meny-section {
    padding: 100px 0;
    background: var(--cream);
}

.meny-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.meny-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.meny-content h2 {
    font-size: 64px;
    margin-bottom: 30px;
    color: var(--dark);
}

.meny-content p {
    font-family: 'Lora', Georgia, serif;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.8;
}

.meny-buttons {
    display: flex;
    gap: 15px;
}

/* ========================================
   GRUPPER & EVENEMANG SECTION
   ======================================== */
.events-section {
    padding: 100px 0;
    background: var(--white);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.event-card {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    height: 450px;
}

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

.event-card:hover img {
    transform: scale(1.05);
}

.event-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
}

.event-overlay h3 {
    font-size: 32px;
    margin-bottom: 10px;
}

.event-overlay p {
    font-family: 'Lora', Georgia, serif;
    font-size: 16px;
    opacity: 0.9;
}

/* ========================================
   FEATURED DISHES
   ======================================== */
.featured-dishes {
    padding: 100px 0;
    background: var(--cream);
}

.dishes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.dish-card {
    background: var(--white);
    overflow: hidden;
    transition: transform 0.3s;
}

.dish-card:hover {
    transform: translateY(-5px);
}

.dish-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.dish-content {
    padding: 30px;
}

.dish-category {
    font-family: 'Lora', Georgia, serif;
    font-size: 14px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dish-content h3 {
    font-size: 28px;
    margin: 15px 0;
    color: var(--dark);
}

.dish-content p {
    font-family: 'Lora', Georgia, serif;
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.dish-price {
    font-family: 'NewYork', 'Times New Roman', Georgia, serif;
    font-size: 24px;
    font-weight: 500;
    color: var(--brown);
}

/* ========================================
   REVIEWS SECTION
   ======================================== */
.reviews {
    padding: 100px 0;
    background: var(--cream);
}

.reviews-slider {
    max-width: 800px;
    margin: 0 auto;
}

.review-card {
    text-align: center;
    padding: 50px;
    background: var(--white);
}

.stars {
    color: var(--primary);
    font-size: 28px;
    margin-bottom: 30px;
}

.review-card > p {
    font-family: 'NewYork', 'Times New Roman', Georgia, serif;
    font-size: 24px;
    font-style: italic;
    color: var(--dark);
    margin-bottom: 40px;
    line-height: 1.6;
}

.reviewer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.reviewer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary);
}

.reviewer strong {
    display: block;
    font-family: 'NewYork', 'Times New Roman', Georgia, serif;
    font-size: 20px;
}

.reviewer span {
    font-family: 'Lora', Georgia, serif;
    font-size: 16px;
    color: var(--text-light);
}

/* ========================================
   OPENING HOURS
   ======================================== */
.opening-hours {
    padding: 100px 0;
    background: var(--white);
}

.hours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hours-content h2 {
    font-size: 64px;
    margin-bottom: 40px;
    color: var(--dark);
}

.hours-list {
    margin-bottom: 30px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    font-family: 'Lora', Georgia, serif;
    font-size: 18px;
}

.hours-note {
    font-family: 'Lora', Georgia, serif;
    font-size: 16px;
    color: var(--text-light);
    font-style: italic;
}

.hours-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact {
    padding: 100px 0;
    background: var(--primary);
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 18px 24px;
    font-size: 16px;
    font-family: 'Lora', Georgia, serif;
    border: none;
    background: var(--white);
}

.contact-form textarea {
    resize: vertical;
    margin-bottom: 20px;
}

.contact-form button {
    width: 100%;
    background: var(--dark);
    color: var(--white);
}

.contact-form button:hover {
    background: #1a1a1a;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 2fr;
    gap: 30px;
    margin-bottom: 60px;
    align-items: start;
}

.footer-hours-group {
    display: flex;
    gap: 40px;
}

.footer-hours-block h4 {
    margin-bottom: 10px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
}

.footer-logo {
    font-family: 'NewYork', 'Times New Roman', Georgia, serif;
    font-size: 40px;
    margin-bottom: 25px;
}

.footer-col p {
    font-family: 'Lora', Georgia, serif;
    font-size: 16px;
    opacity: 0.8;
    line-height: 1.8;
}

.footer-col h4 {
    font-family: 'NewYork', 'Times New Roman', Georgia, serif;
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul a {
    color: var(--white);
    text-decoration: none;
    font-family: 'Lora', Georgia, serif;
    font-size: 16px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-col ul a:hover {
    opacity: 1;
    color: var(--primary);
}

.footer-hours {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-hours-compact {
    font-family: 'Lora', Georgia, serif;
    font-size: 14px;
    color: var(--white);
    opacity: 0.85;
    line-height: 1.6;
}

.footer-hours-compact span {
    display: block;
}

.footer-hours-special-title {
    margin-top: 20px;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

.footer-hours-special {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px 24px;
}

.footer-hours-special .hours-row {
    flex-direction: column;
    gap: 2px;
}

.footer-hours-special .hours-row span:first-child {
    min-width: auto;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    font-family: 'Lora', Georgia, serif;
    font-size: 14px;
    color: var(--white);
    opacity: 0.85;
    gap: 15px;
}

.hours-row span:first-child {
    min-width: auto;
}

.hours-row span:last-child {
    white-space: nowrap;
    text-align: right;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-family: 'Lora', Georgia, serif;
    font-size: 14px;
}

.footer-bottom p {
    opacity: 0.6;
}

/* ========================================
   ABOUT SECTION NEW (Figma Design)
   ======================================== */
.about-section-new {
    padding: 40px 0;
    background: var(--cream);
    overflow: hidden;
}

.about-new-inner {
    display: flex;
    align-items: center;
    gap: 40px;
    padding-left: 128px;
}

.about-new-content {
    flex-shrink: 0;
    width: 470px;
}

.about-badge {
    display: inline-block;
    padding: 8px 0;
    border-top: 1px solid #878686;
    border-bottom: 1px solid #878686;
    font-family: 'Lora', Georgia, serif;
    font-size: 18px;
    font-weight: 700;
    color: #5f5e5e;
    margin-bottom: 28px;
}

.about-new-content h2 {
    font-family: 'NewYork', 'Times New Roman', Georgia, serif;
    font-size: 64px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 20px;
}

.about-new-content p {
    font-family: 'Lora', Georgia, serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
    color: #5f5e5e;
    margin-bottom: 64px;
}

.about-new-content .btn {
    padding: 16px 60px;
    font-size: 18px;
    font-weight: 700;
}

.about-new-images {
    display: flex;
    gap: 40px;
}

.about-new-images img {
    width: 472px;
    height: 600px;
    object-fit: cover;
}

@media (max-width: 1200px) {
    .about-new-inner {
        padding-left: 40px;
        padding-right: 40px;
    }
    .about-new-content {
        width: 400px;
    }
    .about-new-images img {
        width: 350px;
        height: 450px;
    }
}

@media (max-width: 992px) {
    .about-new-inner {
        flex-direction: column;
        padding: 0 20px;
    }
    .about-new-content {
        width: 100%;
        text-align: center;
    }
    .about-new-content h2 {
        font-size: 42px;
    }
    .about-new-content p {
        margin-bottom: 40px;
    }
    .about-new-images {
        width: 100%;
        justify-content: center;
    }
    .about-new-images img {
        width: 45%;
        height: 400px;
    }
}

@media (max-width: 600px) {
    .about-new-images {
        flex-direction: column;
        align-items: center;
    }
    .about-new-images img {
        width: 100%;
        height: 300px;
    }
}

.about-simple {
    padding: 100px 0;
    background: var(--white);
}

.about-simple-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-simple-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
}

.about-simple-content h2 {
    font-size: 48px;
    margin-bottom: 25px;
    color: var(--dark);
}

.about-simple-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

/* ========================================
   SERVICES SECTION (Evenemang)
   ======================================== */
/* Booking Section (Figma Style) */
.booking-section {
    padding: 40px 0 100px;
    background: var(--cream);
}

/* NEW Booking Section - Figma Design */
.booking-section-new {
    padding: 40px 0 80px;
    background: #fff7ed;
}

.booking-section-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 128px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 64px;
}

.booking-header-new {
    max-width: 983px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.booking-badge {
    padding: 8px 20px;
    border-top: 1px solid #878686;
    border-bottom: 1px solid #878686;
    font-family: 'Lora', Georgia, serif;
    font-size: 14px;
    font-weight: 700;
    color: #5f5e5e;
    letter-spacing: 1px;
}

.booking-header-new h2 {
    font-family: 'NewYork', 'Times New Roman', Georgia, serif;
    font-size: 64px;
    font-weight: 400;
    color: #0f0e0e;
    line-height: 1.2;
}

.booking-header-new p {
    font-family: 'Lora', Georgia, serif;
    font-size: 20px;
    font-weight: 400;
    color: #5f5e5e;
    line-height: 32px;
}

.booking-cards-new {
    display: flex;
    gap: 40px;
    width: 100%;
    max-width: 1184px;
}

.booking-card-new {
    flex: 1;
    height: 560px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.booking-card-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.booking-card-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 33%, rgba(0,0,0,0.85) 100%);
}

.booking-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.booking-card-content h3 {
    font-family: 'NewYork', 'Times New Roman', Georgia, serif;
    font-size: 40px;
    font-weight: 400;
    color: #fdfcfc;
    line-height: 1.4;
}

.booking-card-content p {
    font-family: 'Lora', Georgia, serif;
    font-size: 16px;
    color: #dedede;
    line-height: 1.5;
}

.booking-card-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 60px;
    background: #b37428;
    font-family: 'Lora', Georgia, serif;
    font-size: 18px;
    font-weight: 700;
    color: #fdfcfc;
    margin-top: 16px;
    transition: background 0.3s ease;
}

.booking-card-new:hover .booking-card-btn {
    background: #8B5A1B;
}

@media (max-width: 1200px) {
    .booking-section-inner {
        padding: 0 40px;
    }
}

@media (max-width: 992px) {
    .booking-cards-new {
        flex-wrap: wrap;
    }
    .booking-card-new {
        flex: 0 0 calc(50% - 20px);
        height: 450px;
    }
    .booking-header-new h2 {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .booking-section-inner {
        padding: 0 20px;
        gap: 40px;
    }
    .booking-cards-new {
        flex-direction: column;
    }
    .booking-card-new {
        flex: none;
        width: 100%;
        height: 400px;
    }
    .booking-header-new h2 {
        font-size: 32px;
    }
    .booking-card-content h3 {
        font-size: 32px;
    }
}

.booking-header {
    text-align: center;
    margin-bottom: 40px;
}

.booking-header h2 {
    font-family: 'NewYork', Georgia, serif;
    font-size: 64px;
    color: var(--dark);
    margin: 20px 0;
}

.booking-header p {
    font-size: 20px;
    color: #5f5e5e;
    max-width: 800px;
    margin: 0 auto;
}

.booking-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.booking-card {
    position: relative;
    flex: 1;
    max-width: 380px;
    height: 480px;
    overflow: hidden;
    text-decoration: none;
}

.booking-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.booking-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 33%, rgba(0,0,0,0.85));
}

.booking-card-inner {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
}

.booking-card-inner h3 {
    font-family: 'NewYork', Georgia, serif;
    font-size: 40px;
    color: #fff;
    margin-bottom: 16px;
}

.booking-card-inner p {
    font-size: 16px;
    color: #fdfcfc;
    margin-bottom: 32px;
    line-height: 1.5;
}

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

@media (max-width: 992px) {
    .booking-cards { flex-wrap: wrap; }
    .booking-card { flex: 0 0 48%; max-width: none; height: 400px; }
}

@media (max-width: 768px) {
    .booking-card { flex: 0 0 100%; max-width: none; height: 350px; }
    .booking-header h2 { font-size: 42px; }
    .booking-card-inner h3 { font-size: 32px; }
}

@media (max-width: 992px) {
    .about-simple-grid {
        grid-template-columns: 1fr;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   ABOUT SECTION (Om Oss)
   ======================================== */
.about-section {
    padding: 100px 0;
    background: var(--dark);
    color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    margin-bottom: 60px;
}

.about-text-left h2 {
    font-size: 48px;
    color: var(--white);
    line-height: 1.2;
}

.about-text-right p {
    font-size: 18px;
    line-height: 1.8;
    color: #ededed;
    margin-bottom: 20px;
}

.stats-container {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat-item {
    flex: 1;
    border-right: 1px solid rgba(255,255,255,0.2);
    padding-right: 30px;
}

.stat-item:last-child {
    border-right: none;
}

.stat-value {
    display: block;
    font-family: 'NewYork', Georgia, serif;
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: var(--white);
}

.about-images {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.about-img-large {
    width: 55%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

.about-img-small {
    width: 35%;
    height: 280px;
    object-fit: cover;
    border-radius: 10px;
}

/* ========================================
   CONTACT SECTION (New Layout)
   ======================================== */
/* Contact CTA Section (Homepage) */
.contact-cta {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.contact-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.contact-cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.contact-cta-content {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 60px 20px;
}

.contact-cta-box {
    background: rgba(172, 115, 47, 0.9);
    padding: 60px 80px;
    max-width: 700px;
    width: 100%;
    text-align: center;
}

.contact-cta-box h2 {
    font-family: 'NewYork', 'Times New Roman', Georgia, serif;
    font-size: 42px;
    color: var(--white);
    margin-bottom: 16px;
}

.contact-cta-box > p {
    color: #dedede;
    font-size: 16px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cta-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.cta-form input,
.cta-form textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding: 14px 0;
    font-family: 'Lora', Georgia, serif;
    font-size: 14px;
    color: var(--white);
    outline: none;
    transition: border-color 0.3s ease;
}

.cta-form input::placeholder,
.cta-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    letter-spacing: 1px;
}

.cta-form input:focus,
.cta-form textarea:focus {
    border-bottom-color: var(--white);
}

.cta-form textarea {
    resize: none;
    min-height: 100px;
}

.btn-dark {
    background: var(--dark);
    color: var(--white);
    margin-top: 20px;
    padding: 18px 40px;
    font-size: 14px;
    letter-spacing: 1px;
}

.btn-dark:hover {
    background: #1a1919;
}

/* Contact Section (Other pages) */
.contact-section {
    padding: 100px 0;
    background: #fdfdfd;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form-container {
    background: var(--white);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 20px 24px -4px rgba(0,0,0,0.08), 0 8px 8px -4px rgba(0,0,0,0.03);
}

.contact-form-container h3 {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--dark);
}

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

.form-group label {
    display: block;
    font-size: 12px;
    color: #a5a5a5;
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 14px;
    font-family: 'Lora', Georgia, serif;
    border: 1px solid #d7d7d7;
    border-radius: 12px;
    background: var(--white);
}

.btn-full {
    width: 100%;
    border-radius: 24px;
}

.contact-info h2 {
    font-size: 48px;
    color: var(--dark);
    margin-bottom: 15px;
}

.contact-info > p {
    font-size: 18px;
    color: #444;
    margin-bottom: 40px;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.info-item h4 {
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 15px;
}

.info-item p {
    font-size: 16px;
    color: var(--dark);
    line-height: 1.6;
}

.hours-daily {
    font-size: 14px;
}

.day-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid #eee;
}

.day-row:last-child {
    border-bottom: none;
}

@media (max-width: 992px) {
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .stats-container {
        flex-direction: column;
        gap: 25px;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.2);
        padding-bottom: 20px;
        padding-right: 0;
    }

    .about-images {
        flex-direction: column;
    }

    .about-img-large,
    .about-img-small {
        width: 100%;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   MENU PAGE
   ======================================== */
.menu-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
    margin-top: 80px;
}

.menu-hero-content {
    background: var(--cream);
    padding: 100px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.menu-hero-content h1 {
    font-size: 76px;
    margin-bottom: 25px;
    color: var(--dark);
}

.menu-hero-content p {
    font-family: 'Lora', Georgia, serif;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

.menu-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-section {
    padding: 100px 0;
    background: var(--cream);
}

/* Menu Tabs */
.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 14px 36px;
    font-family: 'Lora', Georgia, serif;
    font-size: 16px;
    font-weight: 500;
    background: transparent;
    border: 2px solid #ddd;
    cursor: pointer;
    transition: all 0.3s;
}

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

/* Text-based Menu (Figma Style) */
.text-menu {
    max-width: 1184px;
    margin: 0 auto;
}

.menu-category {
    background: var(--cream);
    padding: 40px 80px 64px;
    margin-bottom: 0;
}

.menu-category-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 64px;
}

.category-badge {
    background: #fff1df;
    padding: 8px 20px;
    font-family: 'Lora', Georgia, serif;
    font-size: 18px;
    font-weight: 700;
    color: #886a42;
    line-height: 28px;
}

.category-title {
    font-family: 'NewYork', 'Times New Roman', Georgia, serif;
    font-size: 64px;
    font-weight: 400;
    color: var(--dark);
    text-align: center;
    padding-bottom: 0;
    border-bottom: none;
    margin-bottom: 0;
    line-height: 1.2;
}

.menu-items-text {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.menu-item-text {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 0;
    border-bottom: none;
}

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

.menu-item-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-shrink: 0;
    max-width: 600px;
}

.menu-item-info h4 {
    font-family: 'NewYork', 'Times New Roman', Georgia, serif;
    font-size: 32px;
    font-weight: 400;
    color: var(--dark);
    line-height: 40px;
}

.menu-item-info p {
    font-family: 'Lora', Georgia, serif;
    font-size: 18px;
    font-weight: 400;
    color: #886a42;
    line-height: 28px;
}

.menu-item-line {
    flex: 1;
    height: 1px;
    border-bottom: 1px dashed #d7d7d7;
    min-width: 40px;
}

.menu-item-price {
    font-family: 'Lora', Georgia, serif;
    font-size: 20px;
    font-weight: 700;
    color: #886a42;
    line-height: 32px;
    white-space: nowrap;
}

/* Legacy support for old structure */
.item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 10px;
}

.item-header h4 {
    font-family: 'NewYork', 'Times New Roman', Georgia, serif;
    font-size: 32px;
    font-weight: 500;
    color: var(--dark);
}

.item-header .price {
    font-family: 'Lora', Georgia, serif;
    font-size: 20px;
    font-weight: 700;
    color: #886a42;
    white-space: nowrap;
}

.menu-item-text > p {
    font-family: 'Lora', Georgia, serif;
    font-size: 18px;
    color: #886a42;
    line-height: 28px;
}

/* ========================================
   ABOUT PAGE
   ======================================== */
.about-hero {
    padding: 120px 0 40px;
    background: var(--cream);
    overflow: hidden;
}

.about-hero-inner {
    display: flex;
    align-items: center;
    gap: 40px;
    padding-left: 128px;
}

.about-hero-content {
    flex-shrink: 0;
    width: 470px;
}

.about-hero-content h1 {
    font-family: 'NewYork', Georgia, serif;
    font-size: 64px;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 20px;
}

.about-hero-content p {
    font-size: 20px;
    line-height: 32px;
    color: #5f5e5e;
}

.about-hero-images {
    display: flex;
    gap: 40px;
}

.about-hero-images img {
    width: 472px;
    height: 600px;
    object-fit: cover;
}

.team-section {
    padding: 80px 0;
    background: var(--cream);
}

.team-header {
    text-align: center;
    margin-bottom: 64px;
}

.team-header h2 {
    font-family: 'NewYork', Georgia, serif;
    font-size: 64px;
    color: var(--dark);
    margin: 20px 0;
}

.team-header p {
    font-size: 20px;
    color: #5f5e5e;
    max-width: 700px;
    margin: 0 auto;
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.team-card-large {
    display: flex;
    gap: 32px;
    background: #fff;
    padding: 32px;
    box-shadow: 0 4px 36px rgba(0,0,0,0.06);
}

.team-card-large .team-image img {
    width: 422px;
    height: 384px;
    object-fit: cover;
}

.team-card-large .team-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-card-large h3 {
    font-family: 'NewYork', Georgia, serif;
    font-size: 56px;
    color: var(--dark);
}

.team-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.team-card {
    display: flex;
    gap: 20px;
    background: #fff;
    padding: 32px;
    box-shadow: 0 4px 36px rgba(0,0,0,0.06);
}

.team-card .team-image img {
    width: 194px;
    height: 292px;
    object-fit: cover;
}

.team-card h3 {
    font-family: 'NewYork', Georgia, serif;
    font-size: 32px;
    color: var(--dark);
}

.team-role {
    font-family: 'Lora', Georgia, serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    display: block;
    margin: 12px 0 20px;
}

.team-content p {
    font-size: 18px;
    line-height: 28px;
    color: #5f5e5e;
}

@media (max-width: 992px) {
    .about-hero-inner { flex-direction: column; padding: 0 20px; }
    .about-hero-content { width: 100%; text-align: center; }
    .about-hero-images img { width: 45%; height: 400px; }
    .team-card-large { flex-direction: column; }
    .team-card-large .team-image img { width: 100%; height: 300px; }
    .team-row { grid-template-columns: 1fr; }
    .team-card { flex-direction: column; }
    .team-card .team-image img { width: 100%; }
}

/* ========================================
   SERVICE DETAIL PAGES
   ======================================== */

/* Light Navbar for Service Pages */
.navbar-light {
    background: var(--white);
    padding: 24px 0;
}

.logo-dark {
    color: var(--primary) !important;
}

.nav-links-dark a {
    color: var(--dark) !important;
}

.nav-links-dark a:hover,
.nav-links-dark a.active {
    color: var(--primary) !important;
}

.mobile-menu-dark {
    color: var(--dark) !important;
}

/* Service Hero */
.service-hero {
    background: #FFF1DF;
    padding: 120px 0 80px;
}

.service-hero-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 52px;
}

.service-badge {
    display: inline-block;
    padding: 8px 20px;
    border-top: 1px solid #878686;
    border-bottom: 1px solid #878686;
    font-family: 'Lora', Georgia, serif;
    font-size: 18px;
    font-weight: 700;
    color: #878686;
    margin-bottom: 28px;
}

.service-hero-content h1 {
    font-family: 'Inter', 'NewYork', Georgia, serif;
    font-size: 56px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 20px;
}

.service-hero-content p {
    font-family: 'Lora', Georgia, serif;
    font-size: 20px;
    line-height: 32px;
    color: #5f5e5e;
}

.service-hero-image {
    margin-bottom: 52px;
}

.service-hero-image img {
    width: 100%;
    height: 524px;
    object-fit: cover;
}

/* Service Stats */
.service-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 52px;
}

.service-stat {
    text-align: center;
    min-width: 150px;
}

.service-stat .stat-number {
    display: block;
    font-family: 'NewYork', Georgia, serif;
    font-size: 56px;
    line-height: 1.32;
    color: var(--dark);
}

.service-stat .stat-text {
    font-family: 'Lora', Georgia, serif;
    font-size: 18px;
    line-height: 28px;
    color: #5f5e5e;
}

/* Service Features */
.service-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.service-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 8px;
    min-width: 100px;
}

.service-feature .feature-icon {
    font-size: 40px;
}

.service-feature .feature-text {
    font-family: 'Lora', Georgia, serif;
    font-size: 20px;
    font-weight: 500;
    color: #C39F70;
    text-align: center;
}

/* Venues Section */
.venues-section {
    padding: 120px 0 80px;
    background: var(--cream);
}

/* Menu CTA */
.menu-cta {
    padding: 60px 0;
    background: var(--cream);
}

.venues-header {
    text-align: center;
    max-width: 776px;
    margin: 0 auto 64px;
}

.venues-header h2 {
    font-family: 'NewYork', Georgia, serif;
    font-size: 64px;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 20px;
}

.venues-header p {
    font-family: 'Lora', Georgia, serif;
    font-size: 20px;
    line-height: 32px;
    color: #5f5e5e;
}

.venues-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.venue-card {
    text-align: center;
}

.venue-image img {
    width: 100%;
    height: 402px;
    object-fit: cover;
    margin-bottom: 32px;
}

.venue-content h3 {
    font-family: 'NewYork', Georgia, serif;
    font-size: 24px;
    line-height: 1.4;
    color: var(--dark);
    margin-bottom: 16px;
}

.venue-content p {
    font-family: 'Lora', Georgia, serif;
    font-size: 16px;
    line-height: 28px;
    color: #5f5e5e;
}

.venue-content .btn {
    margin-top: 20px;
}

/* Service Reservation */
.service-reservation {
    display: flex;
    min-height: 877px;
}

.reservation-image {
    flex: 0 0 50%;
}

.reservation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reservation-form-container {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 80px;
    background: var(--cream);
}

.reservation-badge {
    display: inline-block;
    padding: 8px 20px;
    border-top: 1px solid #878686;
    border-bottom: 1px solid #878686;
    font-family: 'Lora', Georgia, serif;
    font-size: 18px;
    font-weight: 700;
    color: #878686;
    margin-bottom: 20px;
    text-align: center;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.reservation-form-container h2 {
    font-family: 'NewYork', Georgia, serif;
    font-size: 64px;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 40px;
    text-align: center;
}

.reservation-form input,
.reservation-form select,
.reservation-form textarea {
    width: 100%;
    padding: 16px;
    font-family: 'Lora', Georgia, serif;
    font-size: 14px;
    color: #5f5e5e;
    background: #FFF1DF;
    border: 1.5px solid #FFF1DF;
    margin-bottom: 28px;
}

.reservation-form input::placeholder,
.reservation-form textarea::placeholder {
    color: #5f5e5e;
}

.reservation-form .form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.reservation-form .form-row-2 input,
.reservation-form .form-row-2 select {
    margin-bottom: 28px;
}

/* Other Services */
.other-services {
    padding: 80px 0 40px;
    background: var(--cream);
}

.other-services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.other-service-card {
    display: flex;
    flex-direction: column;
}

.other-service-image img {
    width: 100%;
    height: 510px;
    object-fit: cover;
    margin-bottom: 52px;
}

.other-service-content h3 {
    font-family: 'NewYork', Georgia, serif;
    font-size: 56px;
    line-height: 1.32;
    color: var(--dark);
    margin-bottom: 20px;
}

.other-service-content > p {
    font-family: 'Lora', Georgia, serif;
    font-size: 20px;
    line-height: 32px;
    color: #5f5e5e;
    margin-bottom: 40px;
}

.other-service-features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.other-service-features span {
    font-family: 'Lora', Georgia, serif;
    font-size: 18px;
    font-weight: 600;
    color: #C39F70;
}

@media (max-width: 992px) {
    .service-hero-content h1 {
        font-size: 36px;
    }

    .service-stats {
        flex-wrap: wrap;
        gap: 30px;
    }

    .service-stat .stat-number {
        font-size: 40px;
    }

    .venues-grid {
        grid-template-columns: 1fr;
    }

    .service-reservation {
        flex-direction: column;
    }

    .reservation-form-container {
        padding: 40px 20px;
    }

    .reservation-form-container h2 {
        font-size: 36px;
    }

    .other-services-grid {
        grid-template-columns: 1fr;
    }

    .other-service-content h3 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .reservation-form .form-row-2 {
        grid-template-columns: 1fr;
    }

    .service-features {
        gap: 20px;
    }

    .service-feature {
        min-width: 80px;
    }

    .service-feature .feature-icon {
        font-size: 30px;
    }

    .service-feature .feature-text {
        font-size: 14px;
    }
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 992px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--dark);
        flex-direction: column;
        padding: 20px;
        gap: 0;
    }

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

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 15px 20px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        color: var(--white) !important;
    }

    .nav-links a:hover,
    .nav-links a.active {
        background: rgba(255,255,255,0.1);
    }

    /* Light navbar mobile menu */
    .navbar-light .nav-links {
        background: var(--white);
    }

    .navbar-light .nav-links a {
        color: var(--dark) !important;
        border-bottom: 1px solid rgba(0,0,0,0.1);
    }

    .navbar-light .nav-links a:hover,
    .navbar-light .nav-links a.active {
        background: rgba(0,0,0,0.05);
    }

    .nav-container {
        position: relative;
    }

    .nav-cta {
        display: none;
    }

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

    .hero h1 {
        font-size: 48px;
    }

    .section-header h2,
    .meny-content h2,
    .hours-content h2 {
        font-size: 42px;
    }

    .meny-grid,
    .hours-grid,
    .menu-hero {
        grid-template-columns: 1fr;
    }

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

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

    .item-header h4 {
        font-size: 24px;
    }

    .item-header .price {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }

    .section-header h2,
    .meny-content h2,
    .hours-content h2 {
        font-size: 32px;
    }

    .category-title {
        font-size: 28px;
    }

    .dishes-grid,
    .events-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .menu-hero-content {
        padding: 60px 30px;
    }

    .menu-hero-content h1 {
        font-size: 42px;
    }

    .item-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .item-header h4 {
        font-size: 20px;
    }

    .item-header .price {
        font-size: 18px;
    }

    /* Menu Figma Style - Mobile */
    .menu-category {
        padding: 30px 20px 40px;
    }

    .menu-category-header {
        margin-bottom: 40px;
    }

    .category-title {
        font-size: 32px;
    }

    .category-badge {
        font-size: 14px;
        padding: 6px 16px;
    }

    .menu-item-text {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .menu-item-info {
        max-width: 100%;
    }

    .menu-item-info h4 {
        font-size: 24px;
        line-height: 32px;
    }

    .menu-item-info p {
        font-size: 16px;
        line-height: 24px;
    }

    .menu-item-line {
        display: none;
    }

    .menu-item-price {
        font-size: 18px;
    }

    /* Contact CTA responsive */
    .contact-cta-box {
        padding: 40px 30px;
    }

    .contact-cta-box h2 {
        font-size: 32px;
    }

    .cta-form-row {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   FAQ PAGE
   ======================================== */

/* FAQ Hero - Full screen like Figma */
.faq-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1920&h=1200&fit=crop') center/cover no-repeat;
}

.faq-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.faq-hero-content {
    position: relative;
    z-index: 1;
    max-width: 780px;
    padding: 0 20px;
}

.faq-hero-content h1 {
    font-family: 'NewYork', 'Times New Roman', Georgia, serif;
    font-size: 76px;
    font-weight: 400;
    color: #fdfcfc;
    line-height: 1.1;
    margin-bottom: 32px;
}

.faq-hero-content p {
    font-family: 'Lora', Georgia, serif;
    font-size: 20px;
    font-weight: 400;
    color: #dedede;
    line-height: 1.6;
}

/* FAQ Content Section - Figma Design */
.faq-content {
    padding: 80px 0;
    background: #fff7ed;
}

.faq-content-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 128px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 64px;
}

.faq-heading {
    text-align: center;
    width: 100%;
}

.faq-heading h2 {
    font-family: 'NewYork', 'Times New Roman', Georgia, serif;
    font-size: 64px;
    font-weight: 400;
    color: #0f0e0e;
    line-height: 1.2;
    margin-bottom: 24px;
}

.faq-heading p {
    font-family: 'Lora', Georgia, serif;
    font-size: 20px;
    font-weight: 400;
    color: #5f5e5e;
    line-height: 32px;
}

.faq-list {
    width: 860px;
    max-width: 100%;
}

.faq-item {
    background: #fff7ed;
    border-bottom: 1px solid #d7d7d7;
}

.faq-question {
    width: 100%;
    padding: 28px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 27px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq-question span:first-child {
    flex: 1;
    font-family: 'Lora', Georgia, serif;
    font-size: 20px;
    font-weight: 700;
    color: #373636;
    line-height: 32px;
}

.faq-icon {
    font-size: 18px;
    font-weight: 300;
    color: var(--primary);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    content: '-';
}

.faq-item.active .faq-icon::before {
    content: '-';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 28px;
}

.faq-answer p {
    font-family: 'Lora', Georgia, serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: #5f5e5e;
}

.faq-cta-btn {
    text-align: center;
}

.faq-cta-btn .btn {
    width: 280px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Lora', Georgia, serif;
    font-size: 18px;
    font-weight: 700;
}

@media (max-width: 992px) {
    .faq-content-inner {
        padding: 0 40px;
    }

    .faq-heading h2 {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .faq-hero-content h1 {
        font-size: 48px;
    }

    .faq-hero-content p {
        font-size: 16px;
    }

    .faq-content-inner {
        padding: 0 20px;
        gap: 40px;
    }

    .faq-heading h2 {
        font-size: 32px;
    }

    .faq-heading p {
        font-size: 16px;
    }

    .faq-question span:first-child {
        font-size: 16px;
        line-height: 26px;
    }

    .faq-answer p {
        font-size: 16px;
    }

    .faq-cta-btn .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* ========================================
   LIGHTBOX & GALLERY
   ======================================== */
.gallery-card {
    cursor: pointer;
}

.gallery-card .gallery-trigger {
    position: relative;
    z-index: 1;
    cursor: pointer;
}

.gallery-card .booking-card-gradient {
    pointer-events: none;
    z-index: 2;
}

.gallery-card .booking-card-content {
    pointer-events: none;
    z-index: 3;
}

.gallery-card .booking-card-content .booking-card-btn {
    pointer-events: auto;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    z-index: 5;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-card:hover .gallery-nav {
    opacity: 1;
}

.gallery-prev, .gallery-next {
    width: 40px;
    height: 40px;
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.gallery-prev:hover, .gallery-next:hover {
    background: rgba(0,0,0,0.8);
}

.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-img {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
}

.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    font-size: 24px;
    cursor: pointer;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-family: 'Lora', Georgia, serif;
}

/* ========================================
   THEME TOGGLE BUTTON (Footer)
   ======================================== */
.theme-toggle-footer {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: rgba(255, 255, 255, 0.8);
    padding: 12px 32px;
    font-family: 'Lora', Georgia, serif;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.4s ease;
    margin-top: 25px;
}

.theme-toggle-footer:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
    transform: translateY(-2px);
}

/* ========================================
   FARANG-INSPIRED THEME (Dark Minimalist)
   Complete redesign - Modern, Elegant, WOW
   ======================================== */

/* Base & Typography */
body.theme-farang {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    background: #0C0F18;
    color: #fff;
}

body.theme-farang h1,
body.theme-farang h2,
body.theme-farang h3,
body.theme-farang h4 {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 3px;
}

body.theme-farang p {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 300;
}

/* Navigation */
body.theme-farang .navbar {
    background: transparent;
}

body.theme-farang .navbar.scrolled {
    background: rgba(12, 15, 24, 0.95);
    backdrop-filter: blur(10px);
}

body.theme-farang .logo {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
}

body.theme-farang .navbar.scrolled .logo,
body.theme-farang .navbar.scrolled .nav-links a {
    color: #fff;
}

body.theme-farang .nav-links a {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 13px;
}

body.theme-farang .nav-links a:hover,
body.theme-farang .nav-links a.active {
    color: rgba(255, 255, 255, 0.6);
}

body.theme-farang .nav-cta {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 12px;
    transition: all 0.4s ease;
}

body.theme-farang .nav-cta:hover {
    background: #fff;
    color: #0C0F18;
}

body.theme-farang .navbar-light {
    background: #0C0F18 !important;
}

body.theme-farang .navbar-light .logo-dark,
body.theme-farang .logo-dark {
    color: #fff !important;
}

body.theme-farang .navbar-light .nav-links-dark a,
body.theme-farang .nav-links-dark a {
    color: #fff !important;
}

body.theme-farang .navbar-light .nav-links-dark a:hover,
body.theme-farang .navbar-light .nav-links-dark a.active,
body.theme-farang .nav-links-dark a:hover,
body.theme-farang .nav-links-dark a.active {
    color: rgba(255, 255, 255, 0.6) !important;
}

body.theme-farang .mobile-menu-dark {
    color: #fff !important;
}

body.theme-farang .navbar-light .nav-cta {
    background: transparent !important;
    border: 1px solid #fff !important;
    color: #fff !important;
}

body.theme-farang .navbar-light .nav-cta:hover {
    background: #fff !important;
    color: #0C0F18 !important;
}

/* Mobile menu for light navbar in Farang theme */
@media (max-width: 992px) {
    body.theme-farang .navbar-light .nav-links {
        background: #0C0F18 !important;
    }

    body.theme-farang .navbar-light .nav-links a {
        color: #fff !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    }

    body.theme-farang .navbar-light .nav-links a:hover,
    body.theme-farang .navbar-light .nav-links a.active {
        background: rgba(255, 255, 255, 0.1) !important;
    }
}

/* All Buttons */
body.theme-farang .btn {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s ease;
}

body.theme-farang .btn-primary {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
}

body.theme-farang .btn-primary:hover {
    background: #fff;
    color: #0C0F18;
    transform: translateY(-2px);
}

body.theme-farang .btn-secondary {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
}

body.theme-farang .btn-secondary:hover {
    background: #fff;
    color: #0C0F18;
}

body.theme-farang .btn-outline {
    border-color: #fff;
    color: #fff;
}

body.theme-farang .btn-outline:hover {
    background: #fff;
    color: #0C0F18;
}

body.theme-farang .btn-dark {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
}

body.theme-farang .btn-dark:hover {
    background: #fff;
    color: #0C0F18;
}

/* Hero Section */
body.theme-farang .hero {
    background: url('https://images.unsplash.com/photo-1559329007-40df8a9345d8?w=1920&h=1200&fit=crop') center/cover no-repeat;
}

body.theme-farang .hero-overlay {
    background: linear-gradient(180deg, rgba(12, 15, 24, 0.7) 0%, rgba(12, 15, 24, 0.9) 100%);
}

body.theme-farang .hero-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 400;
    letter-spacing: 4px;
}

body.theme-farang .hero h1 {
    font-style: normal;
    font-weight: 200;
    letter-spacing: 6px;
    font-size: 72px;
}

body.theme-farang .hero-description {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 300;
    opacity: 0.8;
}

/* Section Headers */
body.theme-farang .section-label {
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: 3px;
}

body.theme-farang .section-header h2 {
    color: #fff;
    font-weight: 200;
}

body.theme-farang .section-header p {
    color: rgba(255, 255, 255, 0.6);
}

/* Meny Section */
body.theme-farang .meny-section {
    background: #0C0F18;
}

body.theme-farang .meny-content h2 {
    color: #fff;
}

body.theme-farang .meny-content p {
    color: rgba(255, 255, 255, 0.6);
}

/* About Section */
body.theme-farang .about-section-new {
    background: #0C0F18;
}

body.theme-farang .about-badge {
    border-color: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.6);
}

body.theme-farang .about-new-content h2 {
    color: #fff;
}

body.theme-farang .about-new-content p {
    color: rgba(255, 255, 255, 0.6);
}

body.theme-farang .about-simple {
    background: #0C0F18;
}

body.theme-farang .about-simple-content h2 {
    color: #fff;
}

body.theme-farang .about-simple-content p {
    color: rgba(255, 255, 255, 0.6);
}

/* Booking Section */
body.theme-farang .booking-section,
body.theme-farang .booking-section-new {
    background: #131525;
}

body.theme-farang .booking-badge {
    border-color: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.6);
}

body.theme-farang .booking-header h2,
body.theme-farang .booking-header-new h2 {
    color: #fff;
}

body.theme-farang .booking-header p,
body.theme-farang .booking-header-new p {
    color: rgba(255, 255, 255, 0.6);
}

body.theme-farang .booking-card-btn {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
}

body.theme-farang .booking-card-new:hover .booking-card-btn {
    background: #fff;
    color: #0C0F18;
}

/* Event Cards */
body.theme-farang .events-section {
    background: #0C0F18;
}

body.theme-farang .event-overlay {
    background: linear-gradient(transparent, rgba(12, 15, 24, 0.95));
}

body.theme-farang .event-overlay h3 {
    font-weight: 300;
}

/* Dish Cards */
body.theme-farang .featured-dishes {
    background: #131525;
}

body.theme-farang .dish-card {
    background: #1A1D2E;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

body.theme-farang .dish-card:hover {
    border-color: rgba(255, 255, 255, 0.3);
}

body.theme-farang .dish-category {
    color: rgba(255, 255, 255, 0.5);
}

body.theme-farang .dish-content h3 {
    color: #fff;
}

body.theme-farang .dish-content p {
    color: rgba(255, 255, 255, 0.6);
}

body.theme-farang .dish-price {
    color: #fff;
}

/* Reviews Section */
body.theme-farang .reviews {
    background: #0C0F18;
}

body.theme-farang .review-card {
    background: #131525;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

body.theme-farang .stars {
    color: #fff;
}

body.theme-farang .review-card > p {
    color: #fff;
}

body.theme-farang .reviewer strong {
    color: #fff;
}

body.theme-farang .reviewer span {
    color: rgba(255, 255, 255, 0.6);
}

/* Contact CTA */
body.theme-farang .contact-cta {
    background: #0C0F18;
}

body.theme-farang .contact-cta-overlay {
    background: linear-gradient(135deg, rgba(12, 15, 24, 0.9) 0%, rgba(19, 21, 37, 0.95) 100%);
}

body.theme-farang .contact-cta-box {
    background: rgba(19, 21, 37, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

body.theme-farang .contact-cta-box h2 {
    color: #fff;
}

body.theme-farang .contact-cta-box p {
    color: rgba(255, 255, 255, 0.6);
}

body.theme-farang .cta-form input,
body.theme-farang .cta-form textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
}

body.theme-farang .cta-form input:focus,
body.theme-farang .cta-form textarea:focus {
    border-color: rgba(255, 255, 255, 0.5);
    outline: none;
}

body.theme-farang .cta-form input::placeholder,
body.theme-farang .cta-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: 1px;
}

/* Menu Page */
body.theme-farang .menu-hero {
    margin-top: 0;
}

body.theme-farang .menu-hero-content {
    background: #0C0F18;
    padding-top: 150px;
}

body.theme-farang .menu-hero-content h1 {
    color: #fff;
}

body.theme-farang .menu-hero-content p {
    color: rgba(255, 255, 255, 0.6);
}

body.theme-farang .menu-section {
    background: #0C0F18;
}

body.theme-farang .menu-tabs {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 30px;
}

body.theme-farang .tab-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
}

body.theme-farang .tab-btn:hover,
body.theme-farang .tab-btn.active {
    background: #fff;
    border-color: #fff;
    color: #0C0F18;
}

body.theme-farang .menu-category {
    background: #0C0F18;
}

body.theme-farang .category-badge {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

body.theme-farang .category-title {
    color: #fff;
}

body.theme-farang .menu-item-info h4 {
    color: #fff;
}

body.theme-farang .menu-item-info p {
    color: rgba(255, 255, 255, 0.5);
}

body.theme-farang .menu-item-line {
    border-color: rgba(255, 255, 255, 0.2);
}

body.theme-farang .menu-item-price {
    color: #fff;
}

body.theme-farang .menu-cta {
    background: #0C0F18;
}

/* FAQ Page */
body.theme-farang .faq-hero {
    background: url('https://images.unsplash.com/photo-1559329007-40df8a9345d8?w=1920&h=1200&fit=crop') center/cover no-repeat;
}

body.theme-farang .faq-hero-overlay {
    background: linear-gradient(180deg, rgba(12, 15, 24, 0.8) 0%, rgba(12, 15, 24, 0.95) 100%);
}

body.theme-farang .faq-hero-content h1 {
    font-weight: 200;
    letter-spacing: 6px;
}

body.theme-farang .faq-hero-content p {
    color: rgba(255, 255, 255, 0.7);
}

body.theme-farang .faq-content {
    background: #0C0F18;
}

body.theme-farang .faq-heading h2 {
    color: #fff;
}

body.theme-farang .faq-heading p {
    color: rgba(255, 255, 255, 0.6);
}

body.theme-farang .faq-item {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.15);
}

body.theme-farang .faq-question span:first-child {
    color: #fff;
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 400;
}

body.theme-farang .faq-icon {
    color: rgba(255, 255, 255, 0.5);
}

body.theme-farang .faq-answer p {
    color: rgba(255, 255, 255, 0.6);
}

/* About Page (Om Oss) */
body.theme-farang .about-hero {
    background: #0C0F18;
}

body.theme-farang .about-hero-content h1 {
    color: #fff;
}

body.theme-farang .about-hero-content p {
    color: rgba(255, 255, 255, 0.6);
}

body.theme-farang .team-section {
    background: #131525;
}

body.theme-farang .team-header h2 {
    color: #fff;
}

body.theme-farang .team-header p {
    color: rgba(255, 255, 255, 0.6);
}

body.theme-farang .team-card {
    background: #1A1D2E;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

body.theme-farang .team-content h3 {
    color: #fff;
}

body.theme-farang .team-role {
    color: rgba(255, 255, 255, 0.5);
}

body.theme-farang .team-content p {
    color: rgba(255, 255, 255, 0.6);
}

/* Venues Section (Julbord, Aktuellt) */
body.theme-farang .venues-section {
    background: #0C0F18;
    padding-top: 150px;
}

body.theme-farang .venues-header h2 {
    color: #fff;
}

body.theme-farang .venues-header p {
    color: rgba(255, 255, 255, 0.6);
}

body.theme-farang .venue-card {
    background: #131525;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

body.theme-farang .venue-content h3 {
    color: #fff;
}

body.theme-farang .venue-content p {
    color: rgba(255, 255, 255, 0.6);
}

/* Reservation Section */
body.theme-farang .service-reservation {
    background: #0C0F18;
}

body.theme-farang .reservation-form-container {
    background: #131525;
}

body.theme-farang .reservation-badge {
    color: rgba(255, 255, 255, 0.6);
    border-color: rgba(255, 255, 255, 0.3);
}

body.theme-farang .reservation-form-container h2 {
    color: #fff;
}

body.theme-farang .reservation-form input,
body.theme-farang .reservation-form textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

body.theme-farang .reservation-form input::placeholder,
body.theme-farang .reservation-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* Chambre Separee / Gallery */
body.theme-farang .gallery-section {
    background: #0C0F18;
}

body.theme-farang .gallery-header h2 {
    color: #fff;
}

body.theme-farang .gallery-header p {
    color: rgba(255, 255, 255, 0.6);
}

/* Footer */
body.theme-farang .footer {
    background: #0C0F18;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

body.theme-farang .footer-logo {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
}

body.theme-farang .footer-col p {
    color: rgba(255, 255, 255, 0.6);
}

body.theme-farang .footer-col h4 {
    color: #fff;
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 14px;
}

body.theme-farang .footer-col ul a {
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
}

body.theme-farang .footer-col ul a:hover {
    color: #fff;
}

body.theme-farang .footer-hours-block h4 {
    color: rgba(255, 255, 255, 0.5);
}

body.theme-farang .footer-hours-compact {
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
}

body.theme-farang .footer-bottom {
    border-color: rgba(255, 255, 255, 0.1);
}

body.theme-farang .footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
}

body.theme-farang .theme-toggle-footer {
    border-color: rgba(255, 255, 255, 0.3);
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
}

/* Lightbox */
body.theme-farang .lightbox {
    background: rgba(12, 15, 24, 0.98);
}

/* Smooth transitions for theme switch */
body.theme-farang * {
    transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease;
}

/* ========================================
   FARANG THEME - MOBILE RESPONSIVE
   ======================================== */

/* Tablet (max-width: 992px) */
@media (max-width: 992px) {
    body.theme-farang .nav-links {
        background: #0C0F18 !important;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    body.theme-farang .nav-links a {
        color: #fff !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
        padding: 15px 20px;
    }

    body.theme-farang .nav-links a:hover,
    body.theme-farang .nav-links a.active {
        background: rgba(255, 255, 255, 0.05) !important;
    }

    body.theme-farang .hero h1 {
        font-size: 48px;
        letter-spacing: 4px;
    }

    body.theme-farang .hero-description {
        font-size: 16px;
    }

    body.theme-farang .section-header h2,
    body.theme-farang .meny-content h2,
    body.theme-farang .about-new-content h2,
    body.theme-farang .booking-header h2,
    body.theme-farang .booking-header-new h2,
    body.theme-farang .faq-heading h2,
    body.theme-farang .venues-header h2 {
        font-size: 36px;
        letter-spacing: 2px;
    }

    body.theme-farang .category-title {
        font-size: 42px;
    }

    body.theme-farang .menu-item-info h4 {
        font-size: 24px;
    }

    body.theme-farang .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    body.theme-farang .footer-hours-group {
        flex-direction: column;
        gap: 25px;
    }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
    body.theme-farang .hero {
        min-height: 100vh;
    }

    body.theme-farang .hero h1 {
        font-size: 36px;
        letter-spacing: 3px;
        line-height: 1.2;
    }

    body.theme-farang .hero-subtitle {
        font-size: 12px;
        letter-spacing: 3px;
    }

    body.theme-farang .hero-description {
        font-size: 15px;
        line-height: 1.6;
    }

    body.theme-farang .hero-content {
        margin-top: -40px;
        padding: 0 15px;
    }

    body.theme-farang .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    body.theme-farang .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    body.theme-farang .btn {
        padding: 14px 30px;
        font-size: 12px;
    }

    body.theme-farang .section-header h2,
    body.theme-farang .meny-content h2,
    body.theme-farang .about-new-content h2,
    body.theme-farang .booking-header h2,
    body.theme-farang .booking-header-new h2,
    body.theme-farang .faq-heading h2,
    body.theme-farang .venues-header h2,
    body.theme-farang .menu-hero-content h1 {
        font-size: 28px;
        letter-spacing: 2px;
    }

    body.theme-farang .category-title {
        font-size: 32px;
    }

    body.theme-farang .menu-item-info h4 {
        font-size: 20px;
    }

    body.theme-farang .menu-item-info p {
        font-size: 14px;
    }

    body.theme-farang .menu-item-price {
        font-size: 16px;
    }

    body.theme-farang .menu-item-text {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    body.theme-farang .menu-item-line {
        display: none;
    }

    body.theme-farang .menu-category {
        padding: 30px 20px 50px;
    }

    body.theme-farang .faq-hero-content h1 {
        font-size: 36px;
        letter-spacing: 3px;
    }

    body.theme-farang .faq-question span:first-child {
        font-size: 16px;
    }

    body.theme-farang .contact-cta-box {
        padding: 30px 20px;
        margin: 0 15px;
    }

    body.theme-farang .cta-form input,
    body.theme-farang .cta-form textarea {
        padding: 14px 16px;
        font-size: 14px;
    }

    body.theme-farang .footer {
        padding: 50px 0 25px;
    }

    body.theme-farang .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }

    body.theme-farang .footer-col ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px 20px;
    }

    body.theme-farang .footer-col ul li {
        margin-bottom: 0;
    }

    body.theme-farang .footer-hours-group {
        flex-direction: row;
        justify-content: center;
        gap: 40px;
    }

    body.theme-farang .footer-hours-block {
        text-align: left;
    }

    body.theme-farang .footer-logo {
        font-size: 32px;
    }

    body.theme-farang .footer-bottom {
        padding-top: 25px;
    }

    body.theme-farang .theme-toggle-footer {
        padding: 10px 20px;
        font-size: 11px;
    }

    body.theme-farang .venues-section {
        padding-top: 120px;
    }

    body.theme-farang .venue-card {
        margin-bottom: 20px;
    }

    body.theme-farang .venue-content h3 {
        font-size: 22px;
    }

    body.theme-farang .booking-card-content h3 {
        font-size: 28px;
    }

    body.theme-farang .team-content h3 {
        font-size: 22px;
    }

    body.theme-farang .about-hero-content h1 {
        font-size: 32px;
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    body.theme-farang .hero h1 {
        font-size: 28px;
        letter-spacing: 2px;
    }

    body.theme-farang .hero-subtitle {
        font-size: 10px;
        letter-spacing: 2px;
    }

    body.theme-farang .section-header h2,
    body.theme-farang .faq-heading h2,
    body.theme-farang .venues-header h2 {
        font-size: 24px;
    }

    body.theme-farang .category-title {
        font-size: 26px;
    }

    body.theme-farang .faq-hero-content h1 {
        font-size: 28px;
    }

    body.theme-farang .footer-hours-group {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    body.theme-farang .footer-hours-block {
        text-align: center;
    }

    body.theme-farang .tab-btn {
        padding: 10px 16px;
        font-size: 11px;
    }

    body.theme-farang .booking-card-content h3 {
        font-size: 24px;
    }
}
