/* ===== BRUTAL ELEGANCE DESIGN SYSTEM ===== */

/* CSS Variables */
:root {
    --black: #000000;
    --white: #FFFFFF;
    --orange: #D84315;
    --gray-light: #AAAAAA;
    --gray-dark: #333333;
    --border: rgba(255, 255, 255, 0.1);
    --glass: rgba(255, 255, 255, 0.03);

    --font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;

    --text-xs: 0.6875rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.25rem;
    --text-xl: 1.5rem;
    --text-2xl: 2rem;
    --text-3xl: 3rem;
    --text-4xl: 4rem;
    --text-5xl: 5rem;
    --text-6xl: 7rem;

    --weight-thin: 100;
    --weight-light: 300;
    --weight-regular: 400;
    --weight-medium: 500;

    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    --spacing-2xl: 8rem;
}

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

body {
    background-color: var(--black);
    color: var(--white);
    font-family: var(--font-family);
    letter-spacing: -0.01em;
    line-height: 1.5;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

/* Grain Texture Overlay */
body::before {
    position: fixed;
    left: 0;
    top: 0;
    content: '';
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 10%;
    background: #0C101B;
    filter: url(#noiseFilter);
    pointer-events: none;
}

/* Background Gradient Circles */
.bg-gradient-circle {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;

    background: linear-gradient(45deg, #ff6a00, #e32400);
    opacity: 0.27;
    filter: blur(164px);
    width: 500px;
    height: 500px;
}

.bg-gradient-circle.top-left {
    left: -100px;
    top: -100px;
}

.bg-gradient-circle.bottom-right {
    bottom: -100px;
    right: -100px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

@media (max-width: 768px) {
    #debug-panel {
        display: none !important;
    }
}

/* ===== LANGUAGE SWITCHER ===== */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.toggle-switch input {
    display: none;
}

.language-switcher {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.language-button {
    background: none;
    border: 1px solid transparent;
    cursor: pointer;
    padding: 0.25rem;
    opacity: 0.4;
    transition: all 0.3s ease;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.language-button.active {
    opacity: 1;
    border-color: var(--orange);
}

.language-button:hover {
    opacity: 0.8;
}

.language-button img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.toggle-switch .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.1);
    transition: .4s;
    border-radius: 34px;
    border: 1px solid var(--border);
}

.toggle-switch .slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

.toggle-switch input:checked + .slider {
    background-color: rgba(255, 255, 255, 0.2);
}

.toggle-switch input:checked + .slider:before {
    transform: translateX(26px);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: var(--spacing-md);
    position: relative;
    overflow: hidden;
    gap: var(--spacing-xl);
}

.hero-image-wrapper {
    position: relative;
    width: 40vw;
    max-width: 500px;
    aspect-ratio: 1;
    z-index: 1;
    flex-shrink: 0;
}

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

.hero-image-vignette {
    position: absolute;
    inset: -1px;
    /* Composite gradient to fade all four edges */
    background: 
        linear-gradient(to right, var(--black) 0%, transparent 20%, transparent 80%, var(--black) 100%),
        linear-gradient(to bottom, var(--black) 0%, transparent 20%, transparent 80%, var(--black) 100%);
    box-shadow: inset 0 0 80px 40px var(--black);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    max-width: 600px;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    pointer-events: none;
}

.hero h1 {
    font-size: var(--text-6xl);
    font-weight: var(--weight-thin);
    margin-bottom: var(--spacing-sm);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero p {
    font-size: var(--text-lg);
    font-weight: var(--weight-light);
    margin-bottom: var(--spacing-xs);
    color: var(--gray-light);
}

/* ===== INFO SECTION ===== */
.info-section {
    padding: var(--spacing-xl) var(--spacing-md);
    position: relative;
}

.info-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.info-content {
    position: relative;
}

.info-content h2 {
    font-size: var(--text-xs);
    margin-bottom: var(--spacing-lg);
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: var(--weight-regular);
}

.info-block {
    margin-bottom: var(--spacing-md);
}

.info-content h3 {
    font-size: var(--text-sm);
    margin-bottom: var(--spacing-xs);
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: var(--weight-regular);
}

.info-content p {
    margin-bottom: 0.25rem;
    line-height: 1.8;
    font-size: var(--text-base);
    color: var(--gray-light);
    font-weight: var(--weight-light);
}

.info-image-wrapper {
    position: relative;
    width: 500px;
    height: 500px;
}

.info-image-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% + 50px);
    height: calc(100% + 50px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    pointer-events: none;
}

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

/* ===== SCÈNE OUVERTE SECTION ===== */
.scene-ouverte {
    padding: var(--spacing-xl) var(--spacing-md);
    position: relative;
}

.scene-ouverte-container {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.scene-ouverte-images {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.scene-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.scene-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.scene-image-wrapper:hover .scene-img {
    transform: scale(1.05);
}

.scene-ouverte-content {
    text-align: left;
}

.scene-header {
    margin-bottom: var(--spacing-lg);
}

.scene-ouverte h2 {
    font-size: var(--text-4xl);
    margin-bottom: var(--spacing-md);
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: var(--weight-light);
}

.scene-ouverte h3 {
    font-size: var(--text-2xl);
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: var(--weight-regular);
    margin-bottom: var(--spacing-md);
}

.scene-intro {
    font-size: var(--text-lg);
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
    color: var(--gray-light);
    font-weight: var(--weight-light);
}

.scene-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.feature-item h4 {
    font-size: var(--text-base);
    color: var(--orange);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: var(--weight-regular);
}

.feature-item p {
    color: var(--gray-light);
    line-height: 1.6;
    font-size: var(--text-sm);
    font-weight: var(--weight-light);
}

.scene-footer {
    text-align: left;
    margin-top: var(--spacing-lg);
    padding: var(--spacing-md) 0;
    border-top: 1px solid var(--border);
}

.scene-footer p {
    font-size: var(--text-lg);
    color: var(--white);
    font-weight: var(--weight-light);
}

/* ===== PRIVATISATION SECTION ===== */
.privatisation-section {
    padding: var(--spacing-xl) var(--spacing-md);
}

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

.privatisation-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.privatisation-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gray-light);
    margin-bottom: var(--spacing-md);
}

.privatisation-header h2 {
    font-size: var(--text-4xl);
    font-weight: var(--weight-light);
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-md);
}

.privatisation-header p {
    font-size: var(--text-lg);
    color: var(--gray-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: var(--weight-light);
}

.privatisation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.privatisation-images {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.privatisation-image-wrapper {
    position: relative;
    overflow: visible;
}

.privatisation-image-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% + 50px);
    height: calc(100% + 50px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    pointer-events: none;
}

.privatisation-image-wrapper:first-child {
    width: 350px;
    height: 350px;
}

.privatisation-image-wrapper:nth-child(2) {
    width: 250px;
    height: 250px;
}

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

.privatisation-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.privatisation-feature {
    margin-bottom: var(--spacing-lg);
}

.privatisation-feature h3 {
    font-size: var(--text-lg);
    color: var(--white);
    margin-bottom: var(--spacing-xs);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: var(--weight-regular);
}

.privatisation-feature h3::before {
    content: '• ';
    color: var(--orange);
    margin-right: 0.5rem;
}

.privatisation-feature p {
    color: var(--gray-light);
    line-height: 1.7;
    font-size: var(--text-base);
    font-weight: var(--weight-light);
}

.privatisation-cta {
    text-align: center;
    padding: var(--spacing-lg) 0;
    border-top: 1px solid var(--border);
}

.privatisation-cta h3 {
    font-size: var(--text-2xl);
    color: var(--white);
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: var(--weight-light);
}

.privatisation-contact-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.privatisation-btn {
    padding: 1rem 2rem;
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 1px solid;
    text-decoration: none;
    font-weight: var(--weight-regular);
    transition: all 0.3s ease;
    background: transparent;
}

.privatisation-btn-instagram {
    border-color: var(--white);
    color: var(--white);
}

.privatisation-btn-instagram:hover {
    background: var(--white);
    color: var(--black);
}

.privatisation-btn-instagram span {
    position: relative;
}

.privatisation-btn-email {
    border-color: var(--orange);
    color: var(--orange);
}

.privatisation-btn-email:hover {
    background: var(--orange);
    color: var(--white);
}

.privatisation-btn-email span {
    position: relative;
}

/* ===== REVIEWS SECTION ===== */
.reviews {
    padding: 4rem 2rem;
    position: relative;
    height: 800px;
    overflow: hidden; /* Ensure nothing escapes this section */
}

.reviews-scroll-container {
    border-radius: 25px;
    overflow-x: auto;
    white-space: nowrap;
    height: 100%;
    position: relative;
}

.reviews-scroll-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 2560px; /* Fixed background width but inside overflow-hidden container */
    z-index: -1;
    background:
    linear-gradient(to right,
        rgba(0,0,0,0.5),
        rgba(0,0,0,0.5)
    ),
    url('assets/r0.webp') 0 0 / 256px 100% no-repeat,
    url('assets/r1.webp') 256px 0 / 256px 100% no-repeat,
    url('assets/r3.webp') 768px 0 / 256px 100% no-repeat,
    url('assets/r4.webp') 1024px 0 / 256px 100% no-repeat,
    url('assets/r5.webp') 1280px 0 / 256px 100% no-repeat,
    url('assets/r6.webp') 1536px 0 / 256px 100% no-repeat,
    url('assets/r7.webp') 1792px 0 / 256px 100% no-repeat,
    url('assets/r9.webp') 2048px 0 / 256px 100% no-repeat,
    url('assets/r10.webp') 2304px 0 / 256px 100% no-repeat;
    background-position-x: 0, 0, 256px, 512px, 768px, 1024px, 1280px, 1536px, 1792px, 2048px, 2304px;
}

.review-container {
    display: inline-flex;
    gap: 2rem;
    padding: 1rem;
    position: relative;
}

.review-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 8px;
    min-width: 300px;
    max-width: 400px;
    white-space: normal;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-card .stars {
    color: gold;
    margin-bottom: 1rem;
}

.reviews-title {
    position: sticky;
    position: -webkit-sticky;
    left: 2rem;
    bottom: 2rem;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    z-index: 10;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    white-space: normal;
    pointer-events: none;
}

/* ===== MAP SECTION ===== */
.map-section {
    position: relative;
    padding: var(--spacing-xl) var(--spacing-md);
    display: flex;
    justify-content: center;
    align-items: center;
}

.map-container {
    width: 600px;
    height: 600px;
    position: relative;
    z-index: 1;
}

#map {
    border-radius: 50%;
    overflow: hidden;
}

.map-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    border-radius: 50%;
    box-shadow: inset 0 0 50px 20px rgba(0, 0, 0, 0.4);
}

.map-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% + 50px);
    height: calc(100% + 50px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.hours {
    position: absolute;
    bottom: var(--spacing-md);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: var(--spacing-md);
    border: 1px solid var(--border);
    text-align: center;
}

.hours h2 {
    margin-bottom: var(--spacing-sm);
    font-size: var(--text-lg);
    font-weight: var(--weight-regular);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hours-grid {
    display: grid;
    grid-template-columns: auto auto;
    gap: 0.5rem var(--spacing-md);
    text-align: left;
}

.hours p {
    font-size: var(--text-sm);
    color: var(--gray-light);
    font-weight: var(--weight-light);
}

/* ===== BOOKING SECTION ===== */
.booking {
    padding: var(--spacing-xl) var(--spacing-md);
}

.booking-container {
    max-width: 500px;
    margin: 0 auto;
}

.booking h2 {
    font-size: var(--text-2xl);
    text-align: center;
    margin-bottom: var(--spacing-lg);
    font-weight: var(--weight-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.booking form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.booking label {
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    display: block;
    color: var(--gray-light);
}

.booking input,
.booking select,
.booking textarea {
    width: 100%;
    padding: 0.75rem 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border);
    color: var(--white);
    font-size: var(--text-base);
    font-family: var(--font-family);
    transition: border-color 0.3s ease;
}

.booking input:focus,
.booking select:focus,
.booking textarea:focus {
    outline: none;
    border-bottom-color: var(--orange);
}

.booking button {
    padding: 1rem 2rem;
    background: var(--orange);
    color: var(--white);
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: var(--text-sm);
    font-weight: var(--weight-regular);
    cursor: pointer;
    transition: opacity 0.3s ease;
    font-family: var(--font-family);
}

.booking button:hover {
    opacity: 0.8;
}

/* ===== FOOTER ===== */
footer {
    padding: var(--spacing-xl) var(--spacing-md);
    text-align: center;
    border-top: 1px solid var(--border);
}

footer p {
    font-size: var(--text-sm);
    color: var(--gray-light);
    margin-bottom: var(--spacing-xs);
    font-weight: var(--weight-light);
}

footer p:first-child {
    font-size: var(--text-lg);
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: var(--spacing-md);
}

footer .social {
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--border);
}

footer .social p {
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--spacing-xs);
}

footer .social a {
    color: var(--orange);
    text-decoration: none;
    font-size: var(--text-sm);
    transition: opacity 0.3s ease;
}

footer .social a:hover {
    opacity: 0.7;
}

/* ===== MENU MODAL ===== */
.menu-modal {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    max-height: 90vh;
    overflow-y: auto;
    z-index: 2000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 1px solid var(--border);
}

.menu-modal.active {
    transform: translateY(0);
}

.menu-header {
    padding: var(--spacing-md);
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-tabs {
    display: flex;
    gap: var(--spacing-md);
}

.menu-tab {
    background: none;
    border: none;
    color: var(--gray-light);
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    font-family: var(--font-family);
}

.menu-tab.active {
    color: var(--white);
    border-bottom-color: var(--orange);
}

.close-btn {
    background: none;
    border: none;
    color: var(--white);
    font-size: var(--text-2xl);
    cursor: pointer;
    line-height: 1;
}

.menu-content {
    padding: var(--spacing-md);
    max-width: 800px;
    margin: 0 auto;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid var(--border);
}

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

.menu-item-name {
    font-size: var(--text-base);
    color: var(--white);
}

.menu-item-price {
    font-size: var(--text-base);
    color: var(--orange);
    font-weight: var(--weight-regular);
}

/* ===== STICKY NAV ===== */
#sticky-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
    pointer-events: none;
}

#sticky-nav.visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

#sticky-nav button {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--white);
    padding: 0.5rem 1rem;
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-family);
}

#sticky-nav button:hover {
    background: var(--white);
    color: var(--black);
}

#sticky-nav button:last-child {
    background: var(--orange);
    border-color: var(--orange);
}

#sticky-nav button:last-child:hover {
    opacity: 0.8;
    background: var(--orange);
    color: var(--white);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .bg-gradient-circle {
        width: 300px;
        height: 300px;
        filter: blur(80px);
    }

    :root {
        --text-6xl: 3rem;
        --text-4xl: 2rem;
        --text-3xl: 1.75rem;
        --text-2xl: 1.5rem;
    }

    .hero {
        flex-direction: column;
        justify-content: center;
        padding-top: var(--spacing-xl);
        padding-bottom: var(--spacing-xl);
        gap: var(--spacing-lg);
        min-height: auto;
    }

    .hero-image-wrapper {
        width: 80vw;
        max-width: 350px;
    }

    .hero-content {
        text-align: center;
    }

    .hero h1 {
        font-size: var(--text-4xl);
        margin-top: 1rem;
    }

    .hero-content div[style*="justify-content: inherit"] {
        justify-content: center !important;
        gap: 1rem !important;
    }

    .menu-trigger {
        padding: 1.5rem !important;
    }

    .info-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .info-image-wrapper {
        width: 100%;
        max-width: 350px;
        height: auto;
        aspect-ratio: 1;
        margin: 0 auto;
    }

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

    .scene-ouverte-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .scene-ouverte-content {
        text-align: center;
    }

    .scene-ouverte-images {
        margin-bottom: var(--spacing-lg);
    }

    .privatisation-content {
        grid-template-columns: 1fr;
    }

    .privatisation-images {
        flex-direction: column;
        align-items: center;
    }

    .privatisation-image-wrapper:first-child,
    .privatisation-image-wrapper:nth-child(2) {
        width: 100%;
        max-width: 350px;
        height: auto;
        aspect-ratio: 1;
    }

    .map-container {
        width: 100%;
        max-width: 400px;
        height: auto;
        aspect-ratio: 1;
    }

    .hours {
        position: static;
        transform: none;
        margin-top: var(--spacing-md);
        width: 100%;
        max-width: 400px;
    }

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

    .menu-tabs {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .privatisation-contact-buttons {
        flex-direction: column;
    }

    .privatisation-btn {
        width: 100%;
    }

    .booking-section {
        padding: 4rem 1rem !important;
        min-height: auto !important;
        border-radius: 15px !important;
    }

    #bookingForm {
        padding: 1.5rem !important;
    }

    .reviews {
        padding: 2rem 1rem;
        height: auto;
        min-height: 600px;
    }

    .review-card {
        min-width: 280px;
        padding: 1.5rem;
    }

    .reviews-title {
        font-size: 1.5rem;
        left: 1rem;
        bottom: 1rem;
    }

    #sticky-nav div {
        padding: 0.75rem 1rem !important;
        gap: 0.5rem !important;
    }

    #sticky-nav button {
        padding: 0.4rem 0.8rem !important;
        font-size: var(--text-xs) !important;
    }
}
/* ===== HAPPY HOUR SECTION ===== */
.happy-hour-section {
    padding: var(--spacing-xl) var(--spacing-md);
    position: relative;
}

.happy-hour-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.happy-hour-images {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: center;
}

.happy-hour-image-wrapper {
    position: relative;
}

.happy-hour-image-wrapper:first-child {
    width: 350px;
    height: 350px;
}

.happy-hour-image-wrapper:last-child {
    width: 250px;
    height: 250px;
}

.happy-hour-image-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% + 50px);
    height: calc(100% + 50px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    pointer-events: none;
}

.happy-hour-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.happy-hour-content {
    position: relative;
}

.happy-hour-content h2 {
    font-size: var(--text-4xl);
    margin-bottom: var(--spacing-lg);
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: var(--weight-light);
}

.happy-hour-block {
    margin-bottom: var(--spacing-md);
    padding: 1.5rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.happy-hour-block h3 {
    font-size: var(--text-lg);
    margin-bottom: 1rem;
    color: #FF8C42; /* Improved contrast */
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: var(--weight-medium);
}

.happy-hour-block p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    font-size: var(--text-base);
    color: var(--gray-light);
    font-weight: var(--weight-light);
}

@media (max-width: 768px) {
    .happy-hour-container {
        grid-template-columns: 1fr;
    }
    .happy-hour-images {
        flex-direction: column;
        gap: 3rem;
    }
    .happy-hour-image-wrapper:first-child,
    .happy-hour-image-wrapper:last-child {
        width: 100%;
        max-width: 300px;
        height: auto;
        aspect-ratio: 1;
        margin: 0 auto;
    }
}

/* Medium screen refinement (769px to 1100px) */
@media (min-width: 769px) and (max-width: 1100px) {
    .privatisation-content,
    .happy-hour-container {
        grid-template-columns: 0.6fr 1.4fr; /* Give more space to text */
        gap: var(--spacing-lg);
    }

    .privatisation-images,
    .happy-hour-images {
        flex-direction: column;
        gap: 3rem;
    }

    .privatisation-image-wrapper:first-child,
    .privatisation-image-wrapper:nth-child(2),
    .happy-hour-image-wrapper:first-child,
    .happy-hour-image-wrapper:last-child {
        width: 100%;
        max-width: 250px;
        height: auto;
        aspect-ratio: 1;
        margin: 0 auto;
    }
}


