/* =========================================
   1. FONTS & GLOBAL STYLES
   ========================================= */

@font-face {
    font-family: Syne;
    src: url(../fonts/Syne-Medium.ttf);
}

@font-face {
    font-family: DavidLibre;
    src: url(../fonts/DavidLibre-Bold.ttf);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Syne', sans-serif;
    color: #fff;
    background-color: #632B2E;
}

body.no-scroll {
    overflow: hidden;
}

/* =========================================
   2. UTILITIES & HELPER CLASSES
   ========================================= */

.container {
    max-width: 1140px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

/* =========================================
   3. TYPOGRAPHY & HEADINGS
   ========================================= */

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: 'DavidLibre', serif;
    font-size: 56px;
    color: #EADFBE;
    text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    margin-bottom: 16px;
    line-height: 1.1;
}

.section-subtitle {
    font-size: 20px;
    color: #efeded;
    font-weight: 300;
    letter-spacing: 0.5px;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 10px;
}

/* =========================================
   4. BUTTONS
   ========================================= */

.button-primary, .button-secondary {
    padding: 18px 40px;
    border-radius: 50px;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    display: inline-block;
}

.button-primary {
    background-color: #EADFBE;
    color: #632B2E;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.button-primary:hover {
    background-color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.button-secondary {
    background-color: rgba(255,255,255,0.1);
    color: #fff;
    border: 2px solid #fff;
    backdrop-filter: blur(5px);
}

.button-secondary:hover {
    background-color: #fff;
    color: #632B2E;
    transform: translateY(-3px);
}

/* =========================================
   5. NAVIGATION & HEADER
   ========================================= */

.navbar-main-container {
    width: 100%;
    padding-top: 24px;
    z-index: 100;
}

.navbar-container {
    width: 1140px;
    max-width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 50px;
    background-color: rgba(132, 57, 61, 0.85);
    backdrop-filter: blur(10px);
    padding: 10px 30px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-logo {
    width: 140px;
    height: auto;
    display: block;
}

.navbar-menu-container {
    display: flex;
    gap: 32px;
    align-items: center;
}

/* Call Button in Navbar */
#navbar-appel-container {
    background-color: #EADFBE;
    padding: 10px 24px;
    display: flex;
    border-radius: 40px;
    color: #632B2E;
    align-items: center;
    font-weight: bold;
    transition: all 0.3s ease;
    text-decoration: none;
}

#navbar-appel-container:hover {
    background-color: #fff;
    transform: translateY(-2px);
}

#navbar-appel-container a {
    display: flex;
    color: #632B2E;
    align-items: center;
    text-decoration: none;
}

.navbar-menu {
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.navbar-menu a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s ease;
}

.navbar-menu a:hover {
    color: #EADFBE;
}

/* Burger Icon */
.burger {
    display: none;
}

.burger.toggle div:nth-child(1) {
    transform: rotate(45deg) translate(0px, 5px);
}

.burger.toggle div:nth-child(2) {
    opacity: 0;
}

.burger.toggle div:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -11px);
}

/* =========================================
   6. HERO / LANDING SECTION
   ========================================= */

.landing-main-container {
    width: 100%;
    min-height: 100vh;
    background-image:
        linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(99, 43, 46, 1) 100%),
        url('../image/landing-page-background.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
}

.landing-middle-container {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-bottom: 100px;
}

.landing-title {
    font-family: 'DavidLibre', serif;
    font-size: 7rem;
    line-height: 1;
    color: #EADFBE;
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: 0px 10px 30px rgba(0, 0, 0, 0.6);
    margin-bottom: 20px;
}

.landing-intro {
    font-size: 28px;
    color: #fff;
    margin-bottom: 50px;
    font-weight: 300;
}

.landing-buttons-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* =========================================
   7. VIDEO SECTION
   ========================================= */

.video-section {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
}

.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
    opacity: 0.7;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(99, 43, 46, 0.4);
    z-index: 1;
}

.video-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
}

.video-content h2 {
    font-family: 'DavidLibre', serif;
    font-size: 64px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 5px 15px rgba(0,0,0,0.5);
    margin: 0;
}

/* =========================================
   8. ABOUT SECTION
   ========================================= */

.about-section {
    padding: 100px 0;
    background-color: #552225;
    color: #fff;
    position: relative;
}

.about-layout {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-text-col { flex: 1; }
.about-img-col { flex: 1; position: relative; }

.about-img-frame {
    width: 100%;
    height: 450px;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    box-shadow: 20px 20px 0px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.1);
}

.about-highlight-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: rgba(255,255,255,0.95);
    font-weight: 300;
}

#about-us-title {
    text-align: left;
    font-size: 48px;
}

#about-subtitle {
    text-align: left;
    margin-bottom: 20px;
    color: #EADFBE;
}

/* =========================================
   9. INGREDIENTS SECTION (HEXAGONS)
   ========================================= */

.ingredients-section {
    padding: 120px 0;
    background-color: #5E282B;
    position: relative;
}

.ingredients-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto 0;
}

.ing-hexagon {
    position: relative;
    width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border-radius: 4px;
    padding-bottom: 30px;
    transition: all 0.4s ease;
    clip-path: polygon(50% 0%, 100% 10%, 100% 90%, 50% 100%, 0% 90%, 0% 10%);
    overflow: hidden;
}

.ing-hexagon:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: #EADFBE; /* Gold border on hover */
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.ing-hex-img-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    clip-path: polygon(50% 0%, 100% 0, 100% 85%, 50% 100%, 0% 85%, 0 0);
}

.ing-hex-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ing-hexagon:hover .ing-hex-img-wrapper img {
    transform: scale(1.1);
}

.ing-content {
    text-align: center;
    padding: 10px 20px;
}

.ing-title {
    font-family: 'DavidLibre', serif;
    font-size: 26px;
    color: #EADFBE;
    margin: 10px 0 5px;
    letter-spacing: 0.5px;
}

.ing-text {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    font-style: italic;
    line-height: 1.4;
}

/* =========================================
   10. CHEF'S SUGGESTIONS (GALLERY)
   ========================================= */

.suggestions-main-container {
    padding: 120px 0;
    background-color: #79373B;
    overflow: hidden;
}

.gallery-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    height: 650px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery-card {
    position: absolute;
    width: 400px;
    height: 600px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.8) translateX(0);
    z-index: 0;
}

.gallery-card.prev {
    transform: translateX(-380px) scale(0.85);
    opacity: 0.6;
    z-index: 1;
    filter: blur(2px);
    pointer-events: auto;
}

.gallery-card.active {
    transform: translateX(0) scale(1);
    opacity: 1;
    z-index: 2;
    filter: blur(0);
    pointer-events: auto;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border: 4px solid #EADFBE;
}

.gallery-card.next {
    transform: translateX(380px) scale(0.85);
    opacity: 0.6;
    z-index: 1;
    filter: blur(2px);
    pointer-events: auto;
}

.card-img-top {
    width: 100%;
    height: 75%;
    object-fit: cover;
    background-color: #eee;
    border-radius: 15px 15px 0 0;
}

.card-body {
    padding: 20px;
    text-align: center;
    background: #fff;
    color: #632B2E;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-text {
    font-family: 'DavidLibre', serif;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.3;
}

/* =========================================
   11. FEAST BANNER & ORDER CTA
   ========================================= */

.feast-banner-section {
    position: relative;
    width: 100%;
    height: 500px;
    background-image: url('../image/feast-background.png');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.feast-overlay {
    position: absolute; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.feast-content-box {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.1);
    padding: 40px 60px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    max-width: 600px;
    transform: translateY(0);
    transition: transform 0.5s;
}

.feast-content-box:hover { transform: scale(1.02); }

.feast-title {
    font-family: 'DavidLibre', serif; font-size: 48px; color: #EADFBE;
    margin: 0 0 15px 0; text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.feast-text {
    font-family: 'Syne', sans-serif; font-size: 18px; color: #fff;
    line-height: 1.6; font-weight: 500;
}

.feast-content-box::before, .feast-content-box::after {
    content: ''; position: absolute; width: 60px; height: 2px;
    background-color: #EADFBE; left: 50%; transform: translateX(-50%);
}
.feast-content-box::before { top: 20px; }
.feast-content-box::after { bottom: 20px; }

/* Order CTA */
.order-cta-container {
    padding: 80px 0; background-color: #EADFBE;
    color: #632B2E; text-align: center; position: relative; overflow: hidden;
}
.order-content-wrapper { position: relative; z-index: 2; }
.order-cta-title { font-family: 'DavidLibre', serif; font-size: 42px; margin-bottom: 10px; }
.order-cta-text { font-size: 18px; max-width: 600px; margin: 0 auto 30px; opacity: 0.8; }

.btn-order-main {
    background-color: #632B2E; color: #EADFBE; padding: 15px 40px; font-size: 18px;
    border-radius: 50px; text-decoration: none; font-weight: bold;
    display: inline-flex; align-items: center; gap: 10px; transition: transform 0.3s;
    box-shadow: 0 10px 25px rgba(99, 43, 46, 0.3);
}
.btn-order-main:hover { transform: scale(1.05); color: #fff; }

/* =========================================
   12. MENU SECTION
   ========================================= */

.menu-main-container { padding: 120px 0; background-color: #84393D; }
.menu-layout { display: flex; gap: 50px; align-items: flex-start; }
.menu-left-panel { width: 35%; display: flex; flex-flow: column; }
.menu-right-panel { width: 65%; min-height: 400px; display: flex; justify-content: center; }

.menu-tab-item {
    color: rgba(255,255,255,0.6); font-size: 20px; padding: 15px 0;
    cursor: pointer; transition: all 0.3s; text-transform: uppercase;
    font-weight: 600; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.menu-tab-item:hover { color: #fff; padding-left: 10px; }
.menu-tab-item.active-tab {
    color: #EADFBE; font-size: 24px; padding-left: 10px; border-bottom: 2px solid #EADFBE;
}
.menu-card-img {
    width: 100%; border-radius: 12px; box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    cursor: zoom-in; transition: transform 0.3s ease;
}
.menu-card-img:hover { transform: scale(1.02); }

.menu-nav-btn {
    width: 50px; height: 50px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.3);
    display: flex; align-items: center; justify-content: center; cursor: pointer;
    margin-top: 30px; transition: all 0.2s;
}
.menu-nav-btn:hover { background-color: #EADFBE; border-color: #EADFBE; }
.menu-nav-btn svg path { fill: #fff; }
.menu-nav-btn:hover svg path { fill: #632B2E; }

#menu-subtitle {
    text-align: left;
    margin-bottom: 30px;
}

/* =========================================
   13. ATMOSPHERE CAROUSEL
   ========================================= */

.atmosphere-section {
    padding: 120px 0; background-color: #632B2E; position: relative; overflow: hidden;
}
.atmosphere-slider {
    position: relative; width: 100%; max-width: 1000px;
    margin: 0 auto; height: 600px;
}
.atm-slide-item {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0; transition: opacity 1.2s ease-in-out; z-index: 0;
}
.atm-slide-item.active-slide { opacity: 1; z-index: 10; }

.atm-image-frame {
    width: 100%; height: 100%; border-radius: 20px;
    overflow: hidden; position: relative; box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.atm-image-frame img { width: 100%; height: 100%; object-fit: cover; }

.atm-overlay-text {
    position: absolute; bottom: 40px; left: 40px;
    background: rgba(0,0,0,0.7); backdrop-filter: blur(5px); color: #fff;
    padding: 20px 30px; border-radius: 8px; max-width: 400px;
    border-left: 4px solid #EADFBE; font-size: 20px; font-family: 'DavidLibre', serif;
}

/* =========================================
   14. EVENT SECTION
   ========================================= */

.event-main-container { background-color: #632B2E; padding: 120px 0; }
.event-layout { display: flex; align-items: center; gap: 60px; }

.event-img {
    width: 100%; border-radius: 20px; box-shadow: 20px 20px 0px rgba(0,0,0,0.2);
    cursor: zoom-in; transition: transform 0.3s;
}
.event-img:hover { transform: translateY(-5px); }
.event-desc { line-height: 1.8; font-size: 18px; opacity: 0.9; margin-top: 20px; }

#event-subtitle {
    text-align: left;
}

/* =========================================
   15. CONTACT SECTION & FORMS
   ========================================= */

.contact-main-container {
    background-color: #753337;
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.contact-bg-pattern {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image:
        radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
    z-index: 0;
}

.contact-layout-split {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    position: relative;
    z-index: 2;
}

/* Form Styling */
.contact-form-wrapper {
    flex: 1.2;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.contact-form-title {
    font-family: 'DavidLibre', serif;
    font-size: 32px;
    color: #EADFBE;
    margin-bottom: 25px;
}

.form-row-2 {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-input, .form-textarea {
    width: 100%;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 16px;
    color: #fff;
    font-size: 16px;
    font-family: 'Syne', sans-serif;
    transition: all 0.3s;
    resize: none;
}

.form-input:focus, .form-textarea:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: #EADFBE;
    outline: none;
}

.contact-submit-btn {
    background-color: #EADFBE;
    color: #632B2E;
    border: none;
    padding: 15px 40px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 50px;
    transition: transform 0.2s;
    font-family: 'Syne', sans-serif;
}
.contact-submit-btn:hover { transform: translateY(-3px); background-color: #fff; }

.contact-tel-container, .contact-textarea-container {
    margin-bottom: 20px;
}

.contact-end-buttons-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.contact-send-button-container {
    position: relative;
}

.contact-check-label {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

/* Contact Info Cards */
.contact-info-wrapper {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-card {
    background-color: #a3484e;
    padding: 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-left: 4px solid #EADFBE;
    text-decoration: none;
    color: white;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    background-color: #b35258;
}

.contact-card img {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 0 2px rgba(234, 223, 190, 0.3));
    transition: transform 0.3s ease;
}

.contact-card-label {
    font-family: 'DavidLibre';
    font-size: 18px;
    color: #EADFBE;
    margin-bottom: 4px;
}

.contact-card-value {
    font-size: 15px;
    opacity: 0.9;
}

/* =========================================
   16. CAPTCHA & DROPDOWNS
   ========================================= */

.dropdown-container {
    position: relative;
}

.dropdown-button {
    display: flex;
    align-items: center;
    font-size: 16px;
    cursor: pointer;
}

.dropdown-content, .dropdown-content-contact {
    display: none;
    position: absolute;
    background-color: #EFEDED;
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.3);
    border-radius: 12px;
}

.dropdown-content-contact {
    width: 250px;
    padding: 20px;
    text-align: center;
    z-index: 5;
    bottom: 60px;
    right: 0;
    left: 50%;
    margin: auto;
    transform: translateX(-50%);
}

.dropdown-content {
    min-width: 120px;
    z-index: 10;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.dropdown-content a {
    color: #632B2E;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #ddd;
    border-radius: 8px;
}

/* Captcha Internals */
.captcha-title {
    color: #632B2E;
    margin-bottom: 10px;
    font-weight: bold;
}

#captcha-image {
    margin-bottom: 10px;
}

.captcha-input-field {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    color: #000;
    box-sizing: border-box;
}

.captcha-submit-button {
    width: 100%;
    padding: 10px;
    background: #632B2E;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* =========================================
   17. POPUPS (GENERAL & MODALS)
   ========================================= */

/* General Popup */
.popup {
    display: none;
    position: fixed;
    left: 0; top: 0; width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.popup-content {
    background-color: #EFEDED;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    width: 500px;
    max-width: 500px;
    position: relative;
    z-index: 2;
    box-sizing: border-box;
}

.error-popup-title, .success-popup-title {
    text-align: left;
    font-size: 20px;
    color: #632B2E;
    text-transform: uppercase;
}

.success-popup-title { color: #2E7D32; }
.popup-error-text { color: #C62828; }
.popup-success-text { color: #555; }

.popup-error-close, .popup-success-close {
    width: 50%;
    height: 40px;
    background-color: #632B2E;
    color: #fff;
    border-radius: 10px;
    margin-left: auto; margin-right: auto;
    align-content: center;
    margin-top: 35px;
    cursor: pointer;
}
.popup-success-close { background-color: #2E7D32; }

/* Booking Modal */
.modal-booking {
    background-color: rgba(0, 0, 0, 0.65);
    opacity: 0;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    transition: all 0.3s ease-in-out;
    z-index: -1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-booking.open-booking { opacity: 1; z-index: 999; }

.modal-inner-booking {
    text-align: center;
    width: 600px;
    position: fixed;
    overflow: scroll;
    max-height: 90%;
    overscroll-behavior: contain;
    overflow-x: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

#closeModalBooking {
    position: absolute;
    top: 40px;
    right: 70px;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    font-weight: bold;
    background: none;
}

/* Image Menu Modal */
.modal-menu {
    background-color: rgba(0, 0, 0, 0.65);
    opacity: 0;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    transition: all 0.3s ease-in-out;
    z-index: -1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-menu.open-menu { opacity: 1; z-index: 999; }

.modal-inner-menu {
    text-align: center;
    position: fixed;
    overflow: scroll;
    overflow-x: hidden;
    max-height: 95%;
    overscroll-behavior: contain;
    max-width: 80%;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.image-menu-2 { width: 70%; height: auto; }

#closeModalMenu {
    position: absolute;
    top: 40px;
    right: 70px;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    font-weight: bold;
    background: none;
}

.modal-inner-menu input[type=checkbox] { display: none; }
.modal-inner-menu img { transition: transform 0.25s ease; cursor: zoom-in; }
.modal-inner-menu input[type=checkbox]:checked ~ label > img { width: 100%; cursor: zoom-out; }

/* =========================================
   18. FOOTER
   ========================================= */

.footer-main-container {
    background-color: #1a0b0c;
    padding: 100px 0 40px;
    font-size: 15px;
    color: rgba(255,255,255,0.7);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-logo-img {
    width: 140px;
    margin-bottom: 20px;
    display: block;
}

.footer-address {
    line-height: 1.6;
    opacity: 0.8;
    margin-bottom: 20px;
}

.footer-heading {
    color: #EADFBE;
    font-family: 'DavidLibre', serif;
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 40px; height: 2px;
    background-color: #EADFBE;
}

.footer-link-list a {
    display: block;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    margin-bottom: 10px;
    transition: 0.3s;
}

.footer-link-list a:hover {
    color: #EADFBE;
    padding-left: 5px;
}

.footer-info-item {
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
}

.footer-bottom-bar {
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-icons-footer { display: flex; }
.social-icons-footer a {
    margin-left: 15px;
    opacity: 0.7;
    transition: 0.3s;
    display: flex;
}
.social-icons-footer a img { width: 24px; }
.social-icons-footer a:hover { opacity: 1; transform: scale(1.1); }

.footer-booking, .footer-order, .footer-contact {
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-booking span, .footer-order span, .footer-contact span { color: #EADFBE; }

.footer-rights { opacity: 0.6; }
.footer-icon-lang {
    width: 20px; height: 20px; margin-right: 8px;
    object-fit: contain; vertical-align: middle;
}

/* =========================================
   19. RESPONSIVE DESIGN (TABLET & MOBILE)
   ========================================= */

@media only screen and (max-width: 900px) {
    /* Fonts & Headings */
    .landing-title { font-size: 13vw; }
    .landing-intro { font-size: 20px; }
    .section-subtitle, .section-title, #about-us-title, #about-subtitle, #menu-subtitle { text-align: center; }

    /* Layout Adjustments */
    .menu-layout, .event-layout, .about-layout, .footer-content, .contact-layout-split {
        flex-direction: column;
        justify-content: center;
        align-content: center;
        gap: 40px;
    }
    .menu-left-panel, .menu-right-panel, .event-layout > div, .about-text-col, .about-img-col, .contact-form-wrapper, .contact-info-wrapper {
        width: 100%;
        text-align: center;
    }

    /* Menu & Gallery */
    .menu-tab-item { display: inline-block; padding: 10px; margin: 5px; border: 1px solid rgba(255,255,255,0.2); border-radius: 20px; }
    .menu-tab-item.active-tab { border-color: #EADFBE; padding-left: 10px; }
    .menu-group, .event-img { pointer-events: none; user-select: none; }
    
    .gallery-card { width: 260px; height: 380px; }
    .gallery-wrapper { height: 450px; }
    .gallery-card.prev { transform: translateX(-150px) scale(0.8); opacity: 0.4; }
    .gallery-card.next { transform: translateX(150px) scale(0.8); opacity: 0.4; }

    /* Events */
    .event-image-container { order: 2; }
    .event-text-container { order: 1; }
    #event-subtitle { text-align: center; }
    
    /* Contact Forms */
    .contact-form-wrapper { padding: 30px 20px; box-sizing: border-box; }
    .form-row-2 { flex-direction: column; gap: 20px; }
    .checkbox-container { text-align: center; }
    .contact-send-button-container { margin-left: auto; margin-right: auto; }

    /* Navbar Mobile (Burger) */
    .navbar-container { width: unset; }
    .burger { display: flex; flex-direction: column; gap: 5px; cursor: pointer; }
    .burger div { width: 30px; height: 3px; background: #fff; }

    .navbar-menu-container {
        position: fixed; top: 0; z-index: -1; height: 1px; width: 98%;
        background: #632B2E; flex-direction: column; justify-content: center;
        padding: 40px; transition: 0.3s; box-shadow: -5px 0 20px rgba(0,0,0,0.5); opacity: 0;
        box-sizing: border-box; left: 50%; transform: translateX(-50%); border-radius: 20px;
    }
    .navbar-menu-container .navbar-menu, .navbar-menu-container #navbar-appel-container {
        pointer-events: none; display: none;
    }
    .navbar-menu-container.active { right: 0; opacity: 1; height: 75vh; }
    .navbar-menu-container.active .navbar-menu, .navbar-menu-container #navbar-appel-container {
        pointer-events: auto; display: initial;
    }

    /* Footer Mobile */
    .footer-column { text-align: center; }
    .footer-logo-img { margin-left: auto; margin-right: auto; }
    .social-icons-footer { justify-content: center; }
    .footer-heading::after { left: 50%; transform: translateX(-50%); }
    .footer-info-item { margin-bottom: 20px; gap: 3px; flex-direction: column; }
    .footer-rights { text-align: center; }
    .footer-bottom-bar { flex-direction: column; gap: 20px; }

    /* Misc Mobile elements */
    .recipes-banner-section { height: 400px; background-attachment: scroll; }
    .feast-title { font-size: 32px; }
    .feast-banner-section { height: 400px; background-attachment: scroll; }
    .feast-content-box { width: 85%; padding: 30px 20px; }
    .ingredients-container { justify-content: center; }
    .ing-hexagon { width: 100%; max-width: 320px; margin-bottom: 20px; }
    .atmosphere-slider { height: 400px; }
    .about-img-frame { height: 300px; }
    .video-section { height: 40vh; }
    .video-content h2 { font-size: 32px; }
    
    /* Modals Mobile */
    .modal-inner-booking { width: 95%; max-width: 600px; }
    #closeModalBooking { top: 0px; right: 16px; }
}