@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&family=JetBrains+Mono:wght@100..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Corinthia:wght@400;700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&display=swap');

/* Splash Screen Styles */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.8s ease-out, visibility 0.8s ease-out;
}

.splash-screen.fade-out {
    opacity: 0;
    visibility: hidden;
}

.splash-content {
    text-align: center;
    animation: splashLogoAnimation 2s ease-in-out;
}

.splash-logo {
    width: 200px;
    height: 200px;
    object-fit: contain;
    animation: splashPulse 2s ease-in-out infinite alternate;
    margin-bottom: 1rem;
}

.splash-text {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: #333;
    margin: 0;
    text-align: center;
    opacity: 0;
    animation: splashTextFadeIn 2s ease-in-out 0.5s forwards;
    font-style: italic;
}

@keyframes splashLogoAnimation {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes splashPulse {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.05);
    }
}

@keyframes splashTextFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Work Sans', sans-serif;
    background: #ffffff;
    color: #000000;
}

/* Hide main content during splash screen */
body.splash-active {
    overflow: hidden;
}

body.splash-active > *:not(.splash-screen) {
    visibility: hidden;
}

strong {
    font-weight: 550;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 1.75rem 2rem;
    background: transparent;
    box-shadow: none;
    position: relative;
    height: 130px;
    max-width: 1300px;
    margin: 0 auto;

}

.nav-links {
    display: flex;
    gap: 7rem;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    height: 100%;
}

.left-links {

    padding-left: 0;
   
}

.right-links {
 
    padding-right: 0;
}

.nav-link {
    text-decoration: none;
    color: #000000;
    font-family: 'JetBrains Mono', monospace;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #fdb1b2;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #fdb1b2;
}

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

.nav-center {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.nav-links li {
    font-size: 1.2rem;
}

.nav-links a {
    text-decoration: none;
    color: #000000;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #f8dcda;
}

.main-content {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 1.5rem;
    padding-left: 5rem;
    padding-right: 5rem;
    margin-top: 3rem;
}

.left-column {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 1.5rem;
}

.main-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 2.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0 0 0.8rem 0;
    text-align: justify;
}

.subtitle {
    font-size: 2.5rem;
    font-weight: 400;
    display: block;
    margin-top: 0.5rem;
}

.description {
    font-size: 1.1rem;
    color: #000000;
    margin-bottom: 1.2rem;
    text-align: justify;
    padding: 2rem 3rem;
    margin: 0 0 1.2rem 0;
    line-height: 1.5;
}


.discover-button {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    margin: 0.5rem auto 0 auto;
    background-color: #fdb1b2;
    color: #ffffff;
    text-decoration: none;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-align: center;
    width: auto;
    box-sizing: border-box;
}

.discover-button:hover {
    background-color: #ffffff;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(160, 116, 138, 0.496);
}

.right-column {
    flex: 1;
    padding-top: 1.5rem;
    padding-right: 1.5rem;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(80px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar, .main-content {
    animation: slideUp 1s cubic-bezier(.23,1.02,.64,1) both;
}

.navbar {
    animation-delay: 0.2s;
}

.main-content {
    animation-delay: 0.5s;
}

.section {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 3rem;
    padding: 4rem 10rem;
    background-color: #ffffff;
    margin: 3rem 0;
}

.about-right {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 2.3rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    color: #000000;
}

.about-description {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #333333;
    text-align: justify;
    margin: 0;
    padding-right: 4rem;
}

.about-image {
    flex: 0 0 45%;
    display: flex;
    align-items: center;
    justify-content: center;
  
}

.about-image img {
    width: 100%;
    max-width: 700px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.10);
    object-fit: cover;
}

.features-section {
    padding: 3rem 5rem;
    margin: 1rem 0;
}

.features-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.features-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.feature-item {
    padding: 1.5rem 1.5rem 2rem 1.5rem;
    border-radius: 12px;

    transition: transform 0.3s ease;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-item-large {
    padding: 0.5rem 1.5rem 0.5rem 1.5rem;
    min-height: 250px;
    grid-column: 1 / -1;
    text-align: center;
}

.feature-item-single {
    padding: 1.5rem 1.5rem 2rem 1.5rem;
    border-radius: 12px;
    transition: transform 0.3s ease;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    grid-column: 1 / -1;
    max-width: 670px;
    margin: 0 auto;
    line-height: 1.9;
}

.feature-item:hover, .feature-item-single:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    color: #000000;
    margin-bottom: 1.5rem;
    align-self: center;
}

.feature-item h3, .feature-item-single h3 {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0 0 0.8rem 0;
    color: #000000;
}

.feature-item p, .feature-item-single p {
    text-align: justify;
    padding-right: 7rem;
    padding-left: 7rem;
    font-size: 1rem;
    line-height: 1.4;
    color: #000000b9;
    margin: 0;
}

.feature-item-single .feature-button {
    align-self: center;
    margin-top: 3rem;

}



.selling-title {
    font-family: 'JetBrains Mono', monospace;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #000000;
}



#carte {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 4rem 5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.carte-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0rem;
    color: #000000;
    text-align: center;
}

.carte-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333333;
    text-align: center;
    margin-bottom: 2rem;
}

.menu-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
}

.menu-top-section {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}

.menu-column {
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    min-width: 225px;
    flex: 1;
    max-width: 500px;
}

.menu-column:hover {
    transform: translateY(-5px);
}

.menu-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.3rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 1rem;
    text-align: center;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #fdb1b2;
}

.menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-list li {
    font-size: 1rem;
    color: #666666;
    padding: 0.5rem 0;
    text-align: center;
    transition: color 0.3s ease;
}

.menu-list li:hover {
    color: #F1A2A8;
}

.menu-column-large {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.menu-column-large .menu-list {
    columns: 2;
    column-gap: 1.5rem;
    column-fill: balance;
}

.menu-column-large .menu-list li {
    break-inside: avoid;
    margin-bottom: 0.8rem;
}

.menu-list-4-columns {
    columns: 4;
    column-gap: 1rem;
    column-fill: balance;
}

.menu-list-4-columns li {
    break-inside: avoid;
    margin-bottom: 0.5rem;
}

.menu-list-2-columns {
    columns: 2;
    column-gap: 1rem;
    column-fill: balance;
}

.menu-list-2-columns li {
    break-inside: avoid;
    margin-bottom: 0.5rem;
}

.menu-column-full-width {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

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

.fade-in {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-play-state: paused;
}

.fade-in-delay-1 {
    animation-delay: 0.2s;
}

.fade-in-delay-2 {
    animation-delay: 0.4s;
}

.fade-in-delay-3 {
    animation-delay: 0.6s;
}

.fade-in-delay-4 {
    animation-delay: 0.8s;
}

.fade-in-delay-5 {
    animation-delay: 1s;
}

@media (prefers-reduced-motion: no-preference) {
    .fade-in {
        will-change: transform, opacity;
    }
}

.info-contact-section {
    padding: 4rem 5rem;
    background-color: #ffffff;
    margin: 3rem 0;
}

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

.info-column, .contact-column {
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.info-title, .contact-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 2rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #fdb1b2;
}

.info-content, .contact-content {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333333;
}

.info-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-icon {
    width: 24px;
    height: 24px;
    color: #fdb1b2;
}

.contact-link {
    color: #333333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #fdb1b2;
}

.map-container {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding: 1rem;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    border-radius: 8px;
    width: 100%;
    height: 400px;
}

.feature-button {
    display: inline-block;
    margin-top: 1.2rem;
    width: 400px;
    padding: 0.5rem 1rem;
    align-self: center;
    background-color: #fdb1b2;
    color: #fff;
    border: none;
    border-radius: 25px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    align-items: center;
    text-align: center;
}

.feature-button:hover {
    background-color: #fff;
    color: #fdb1b2;
    box-shadow: 0 4px 8px rgba(253, 177, 178, 0.3);
    border: 1px solid #fdb1b2;
}

.nav-center img {
    height: 150px !important;
    width: 275px !important;
}

/* Hamburger Menu Styles */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: #000000;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    visibility: hidden;
}

.mobile-nav-overlay.active {
    transform: translateX(0);
    visibility: visible;
}

/* Mobile Navigation Close Button */
.mobile-nav-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.close-line {
    position: absolute;
    width: 30px;
    height: 3px;
    background-color: #000000;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.close-line:nth-child(1) {
    transform: rotate(45deg);
}

.close-line:nth-child(2) {
    transform: rotate(-45deg);
}

.mobile-nav-close:hover .close-line {
    background-color: #fdb1b2;
}

.mobile-nav-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
    align-items: center;
    width: 100%;
    max-width: 400px;
}



.mobile-nav-link {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.5rem;
    font-weight: 500;
    color: #000000;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 1rem 2rem;
    border-radius: 8px;
    width: 100%;
    max-width: 280px;
}

.mobile-nav-link:hover {
    color: #fdb1b2;
    background: rgba(253, 177, 178, 0.1);
}

/* Media Queries - Mobile Responsive */
@media (max-width: 1200px) {
    .navbar {
        padding: 1.2rem 1rem;
        height: 90px;
    }
    .nav-center img {
        height: 170px !important;
        width: 240px !important;
    }
    .nav-links {
        gap: 1.2rem;
    }
    
    .nav-link {
        font-size: 1rem;
    }
    
    .left-links {
        padding-left: 0.5rem;
    }
    
    .right-links {
        padding-right: 0.5rem;
    }
    
    .features-2x2 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .menu-grid {
        gap: 0.5rem;
    }
}

@media (max-width: 900px) {
    .navbar {
        position: relative;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        height: auto;
        padding: 1rem 1.5rem;
        gap: 1rem;
    }
    
    /* Show hamburger menu on mobile */
    .hamburger-menu {
        display: flex;
        position: absolute;
        left: 1.5rem;
        z-index: 10;
    }
    
    /* Hide regular nav links on mobile */
    .nav-links {
        display: none;
    }
    
    .left-links, .right-links {
        display: none;
    }
    
    .nav-center {
        display: flex;
        justify-content: center;
        margin: 0;
        width: 100%;
    }
    
    .nav-center img {
        height: 160px !important;
        width: 240px !important;
        object-fit: contain;
    }
    
    .simple-slider-container {
        max-width: 800px;
        margin: 2rem auto 0 auto;
    }
    
    .slider-image {
        height: 250px;
    }
    
    .juice-gallery {
        max-width: 650px;
        margin: 2rem auto 0 auto;
    }
    
    .juice-images-grid {
        gap: 0.6rem;
    }
    
    .juice-image {
        height: 200px;
    }
    
    .main-content {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
        padding: 2rem 4vw;
 
    }
    
    .left-column {
        padding-left: 0.2rem;
    }
    
    .right-column {
        justify-content: flex-start;
        padding-top: 1rem;
        padding-right: 0.2rem;
    }
    
    .main-title {
        font-size: 3rem;
        text-align: center;
    }
    
    .subtitle {
        font-size: 1.3rem;
    }
    
    .description {
        padding-right: 1rem;
        padding-left: 1rem;
        margin-right: 1rem;
        margin-left: 1rem;
        text-align: justify;
    }
    
    .discover-button {
        margin: 2rem 2rem;
        width: 80%;
        max-width: 400px;
    }
    
    .section {
        flex-direction: column;
        padding: 2rem 4vw;
        gap: 2rem;
    }
    
    .about-right {
        flex: 0 0 100%;
    }
    
    .about-title {
        text-align: center;
        font-size: 2rem;
    }
    
    .about-description {
        padding-right: 1.5rem;
        padding-left: 1.5rem;
        text-align: justify;
    }
    
    .about-image {
        flex: 0 0 100%;
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .features-section {
        padding: 2rem 4vw;
    }
    
    .selling-title {
        font-size: 2rem;
    }
    
    .features-2x2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .feature-item {
        min-height: 180px;
        padding: 1.5rem 1rem;
    }
    
    .feature-item h3 {
        font-size: 1.1rem;
    }
    
    .feature-item p, .feature-item-single p {
        font-size: 0.95rem;
        padding-right: 2.5rem;
        padding-left: 2.5rem;
    }
    
    .feature-item-large {
        min-height: 220px;
        padding: 2rem 1.5rem;
    }
    
    .feature-item-large h3 {
        font-size: 1.2rem;
    }
    
    .feature-item-large p {
        font-size: 1rem;
        padding-right: 2.5rem;
        padding-left: 2.5rem;
    }
    
    .feature-item-single {
        min-height: 180px;
        padding: 1.5rem 1rem;
        max-width: 450px;
    }
    
    .feature-item-single h3 {
        font-size: 1.1rem;
    }
    
    #carte {
        flex-direction: column;
        padding: 2rem 3vw;
        gap: 2rem;
    }
    
    .menu-top-section {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .menu-column, .menu-column-large {
        max-width: 100%;
        min-width: unset;
        width: 100%;
    }
    
    .carte-title {
        text-align: center;
        font-size: 2rem;
    }
    
    .carte-description {
        text-align: center;
    }
    
    .menu-list-4-columns {
        columns: 2;
        column-gap: 1.5rem;
    }
    
    .menu-list-2-columns {
        columns: 1;
    }
    
    .menu-column-large .menu-list {
        columns: 1;
    }
    
    .menu-list-autres-boissons {
        grid-template-columns: repeat(2, 1fr) !important;
        grid-template-rows: repeat(4, 1fr) !important;
        gap: 1.5rem !important;
    }
    
    .menu-list-autres-boissons li {
        padding: 1.2rem 0.8rem;
    }
    
    .menu-item-image {
        height: 140px;
        margin-bottom: 1rem;
    }
    
    .menu-list-autres-boissons li span {
        font-size: 1rem;
    }
    
    .info-contact-section {
        padding: 2rem 4vw;
    }
    
    .info-contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .info-title, .contact-title {
        font-size: 1.8rem;
    }

    .map-container {
        margin-top: 1rem;
        padding: 0.5rem;
    }

    .map-container iframe {
        height: 300px;
    }
}

@media (max-width: 600px) {
    .navbar {
        padding: 0.8rem 1rem;
    }
    
    .hamburger-menu {
        left: 1rem;
    }
    
    .nav-center img {
        height: 150px !important;
        width: 220px !important;
        min-width: 150px !important;
        min-height: 150px !important;
        object-fit: contain;
    }
    

    
    .mobile-nav-close {
        top: 1.5rem;
        right: 1.5rem;
    }
    
    .simple-slider-container {
        max-width: 600px;
        margin: 1.5rem auto 0 auto;
    }
    
    .slider-image {
        height: 200px;
    }
    
    .juice-gallery {
        max-width: 600px;
        margin: 1.5rem auto 0 auto;
    }
    
    .juice-images-grid {
        gap: 0.4rem;
    }
    
    .juice-image {
        height: 170px;
    }
    .main-content {
        flex-direction: column;
        gap: 0.2rem;
    }
    .left-column, .right-column {
        padding-left: 0;
        padding-right: 0;
    }
    .menu-grid {
        flex-direction: column;
        gap: 1rem;
    }
    
    .menu-top-section {
        flex-direction: column;
        gap: 1rem;
    }
    
    .menu-column, .menu-column-large {
        min-width: unset;
        padding: 1rem;
        width: 100%;
        max-width: 100%;
    }
    
    .menu-title {
        font-size: 1.1rem;
    }
    
    .menu-list li {
        font-size: 0.95rem;
    }
    
    .menu-list-4-columns {
        columns: 1;
    }
    
    .menu-list-2-columns {
        columns: 1;
    }
    
    .menu-column-large .menu-list {
        columns: 1;
    }
    
    .menu-list-autres-boissons {
        grid-template-columns: repeat(2, 1fr) !important;
        grid-template-rows: repeat(4, 1fr) !important;
        gap: 1rem !important;
    }
    
    .menu-list-autres-boissons li {
        padding: 1rem 0.6rem;
    }
    
    .menu-item-image {
        height: 120px;
        margin-bottom: 0.8rem;
    }
    
    .menu-list-autres-boissons li span {
        font-size: 0.95rem;
    }
    
    .main-title {
        font-size: 2rem;
    }
    .subtitle {
        font-size: 1.3rem;
    }
    .description {
        font-size: 1.1rem;
    }
    .about-title {
        font-size: 1.5rem;
    }
    .about-description {
        text-align: justify;
        padding-right: 1rem;
        padding-left: 1rem;
    }
    .features-2x2 {
        grid-template-columns: 1fr !important;
    }
    .feature-item,
    .feature-item-single {
        padding: 2.2rem 1.2rem !important;
    }
    .feature-button {
        max-width: 220px !important;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        display: block;
        white-space: normal;
        word-break: break-word;
        text-align: center;
        padding: 0.6rem 0.5rem;
    }
    .menu-column,
    .menu-column-large {
        width: 95% !important;
        min-width: unset !important;
        margin: 0.5rem auto !important;
        float: none;
    }
    .discover-button {
        max-width: 280px !important;
        width: 85%;
        margin-left: auto;
        margin-right: auto;
        display: block;
        white-space: normal;
        word-break: break-word;
        text-align: center;
        padding: 0.6rem 0.5rem;
    }
}

@media (max-width: 430px) {
    body {
        overflow-x: hidden;
    }
    
    .navbar {
        padding: 0.5rem 0.8rem;
    }
    
    .hamburger-menu {
        left: 0.8rem;
    }
    
    .nav-center img {
        height: 130px !important;
        width: 180px !important;
        min-width: 130px !important;
        min-height: 130px !important;
        object-fit: contain;
    }
    

    
    .mobile-nav-link {
        font-size: 1.3rem;
        padding: 0.8rem 1.5rem;
    }
    
    .mobile-nav-close {
        top: 1rem;
        right: 1rem;
        width: 35px;
        height: 35px;
    }
    
    .close-line {
        width: 25px;
    }
    
    .menu-list-autres-boissons {
        grid-template-columns: repeat(2, 1fr) !important;
        grid-template-rows: repeat(4, 1fr) !important;
        gap: 0.6rem !important;
    }
    
    .menu-list-autres-boissons li {
        padding: 0.6rem 0.3rem;
    }
    
    .menu-item-image {
        height: 90px;
        margin-bottom: 0.5rem;
    }
    
    .menu-list-autres-boissons li span {
        font-size: 0.85rem;
        line-height: 1.2;
    }
    
    .main-title {
        font-size: 1.5rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .description {
        font-size: 1rem;
    }
    
    .discover-button {
        max-width: 250px !important;
        width: 90%;
        margin-left: auto;
        margin-right: auto;
        display: block;
        white-space: normal;
        word-break: break-word;
        text-align: center;
        padding: 0.5rem 0.3rem;
    }
    
    .section {
        padding: 1.5rem 0.5rem;
    }
    
    .about-title, .carte-title {
        font-size: 1.2rem;
    }
    
    .about-description {
        text-align: justify;
        padding-right: 0.8rem;
        padding-left: 0.8rem;
    }
    
    .features-section {
        padding: 1.5rem 0.5rem;
    }
    
    .selling-title {
        font-size: 1.8rem;
    }
    
    .feature-item,
    .feature-item-single {
        padding: 1.5rem 0.7rem !important;
    }
    
    .feature-item p, .feature-item-single p {
        padding: 0;
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .feature-item h3, .feature-item-single h3 {
        font-size: 1.1rem;
    }
    
    #carte {
        padding: 1.5rem 1rem;
        gap: 1.5rem;
    }
    
    .carte-description {
        margin: 0;
        padding: 0;
        font-size: 1rem;
    }
    
    .menu-top-section {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .menu-column, .menu-column-large {
        padding: 0.8rem;
        margin: 0;
        min-width: unset;
        width: 100%;
        max-width: 100%;
    }
    
    .menu-column-large .menu-list {
        columns: 1;
        column-gap: 0;
    }
    
    .menu-grid {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .menu-title {
        font-size: 1.05rem;
        margin-bottom: 0.6rem;
    }
    
    .menu-list li {
        font-size: 0.95rem;
        padding: 0.25rem 0;
    }
    
    .menu-list-autres-boissons {
        grid-template-columns: repeat(2, 1fr) !important;
        grid-template-rows: repeat(4, 1fr) !important;
        gap: 0.8rem !important;
    }
    
    .menu-list-autres-boissons li {
        padding: 0.8rem 0.4rem;
    }
    
    .menu-item-image {
        height: 100px;
        margin-bottom: 0.6rem;
    }
    
    .menu-list-autres-boissons li span {
        font-size: 0.9rem;
        line-height: 1.3;
    }
    
    .info-contact-section {
        padding: 1.5rem 0.5rem;
    }
    
    .info-content, .contact-content {
        padding: 0;
    }
    
    .map-container {
        margin: 1rem 0;
        padding: 0;
    }
    
    .map-container iframe {
        height: 250px;
        width: 100%;
    }
}

@media (max-width: 320px) {
    .navbar {
        padding: 0.3rem 0.5rem;
    }
    
    .hamburger-menu {
        left: 0.5rem;
    }
    
    .nav-center img {
        height: 120px !important;
        width: 160px !important;
        min-width: 120px !important;
        min-height: 120px !important;
    }
    

    
    .mobile-nav-link {
        font-size: 1.2rem;
        padding: 0.7rem 1rem;
    }
    
    .mobile-nav-close {
        width: 30px;
        height: 30px;
    }
    
    .close-line {
        width: 20px;
        height: 2px;
    }
    
    #carte {
        padding: 1rem 0.5rem;
        gap: 1rem;
    }
    
    .menu-list-autres-boissons {
        grid-template-columns: repeat(2, 1fr) !important;
        grid-template-rows: repeat(4, 1fr) !important;
        gap: 0.5rem !important;
    }
    
    .menu-list-autres-boissons li {
        padding: 0.5rem 0.2rem;
    }
    
    .menu-item-image {
        height: 80px;
        margin-bottom: 0.4rem;
    }
    
    .menu-list-autres-boissons li span {
        font-size: 0.8rem;
        line-height: 1.1;
        
    }
    
    .carte-title {
        font-size: 1.1rem;
    }
    
    .carte-description {
        font-size: 0.9rem;
    }
}

.section-divider {
    border: none;
    border-top: 1.5px solid #d1d1d1;
    margin: 3rem auto;
    max-width: 900px;
    width: 80%;
}

/* Menu Layout Container */
.menu-layout-container {
    display: flex;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
}

.menu-left-side {
    flex: 1;
    max-width: 600px;
}

.menu-right-side {
    flex: 1;
    max-width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Menu Tab Styles */
.menu-tabs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    max-width: 400px;
}

.menu-tab {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    background: #ffffff;
    border: 2px solid #e2e2e2;
    border-radius: 12px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 1rem;
    font-weight: 500;
    color: #666666;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    justify-content: flex-start;
    text-align: left;
}

.menu-tab:hover {
    border-color: #fdb1b2;
    color: #333333;
    transform: translateX(5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.menu-tab.active {
    background: #fdb1b2;
    border-color: #fdb1b2;
    color: #ffffff;
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(253, 177, 178, 0.3);
}

.tab-icon {
    width: 20px;
    height: 20px;
}

.menu-content {
    max-width: 600px;
}

.menu-tab-content {
    display: none;
    flex-direction: column;
    gap: 2rem;
}

.menu-tab-content.active {
    display: flex;
}

.menu-tab-content .menu-column {
    width: 100%;
    margin-bottom: 1.5rem;
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-tab-content .menu-column:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
}

.menu-tab-content .menu-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.4rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 1.2rem;
    text-align: center;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid #fdb1b2;
}

.menu-tab-content .menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-tab-content .menu-list.two-columns {
    columns: 2;
    column-gap: 2rem;
    column-fill: balance;
}

.menu-tab-content .menu-list li {
    font-size: 1rem;
    color: #666666;
    padding: 0.7rem 0;
    text-align: left;
    transition: color 0.3s ease, padding-left 0.3s ease;
    border-bottom: 1px solid #f5f5f5;
    break-inside: avoid;
    margin-bottom: 0.5rem;
}

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

.menu-tab-content .menu-list li:hover {
    color: #F1A2A8;
    padding-left: 0.5rem;
}

.menu-tab-content .menu-list li i {
    color: #999999;
    font-size: 0.9rem;
    font-style: italic;
}

/* Image Container Styles */
.menu-image-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.menu-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.menu-image.active {
    opacity: 1;
}

/* Responsive adjustments for tabs */
@media (max-width: 1024px) {
    .menu-layout-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .menu-left-side,
    .menu-right-side {
        max-width: 100%;
    }
    
    .menu-image-container {
        max-width: 350px;
        height: 350px;
    }
}

@media (max-width: 768px) {
    .menu-tabs {
        max-width: 100%;
    }
    
    .menu-tab {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .menu-content {
        max-width: 100%;
    }
    
    .menu-tab-content .menu-column {
        padding: 1.5rem;
    }
    
    .menu-tab-content .menu-list.two-columns {
        columns: 1;
    }
    
    .tab-icon {
        width: 18px;
        height: 18px;
    }
    
    .menu-image-container {
        max-width: 300px;
        height: 300px;
    }
}

/* Simple Slider Styles */
.simple-slider-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.simple-swiper {
    width: 100%;
    
}

.slider-image {
    width: 100%;
    height: 300px;
    object-fit: contain;
    display: block;
}


/* Juice Gallery Styles */
.juice-gallery {
    flex: 0 0 auto;
    max-width: 800px;
}

.juice-images-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 1fr);
    
    width: 100%;
}

.juice-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* Override the two-column layout for Autres Boissons */
.menu-column.menu-column-large:last-child .menu-list {
    columns: 1;
    column-gap: 0;
}

/* Full Width Menu Column */
.menu-column-full-width {
    width: 100%;
    max-width: 1200px;
}

/* Force grid layout for Autres Boissons */
.menu-column-full-width .menu-list-autres-boissons {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    grid-template-rows: repeat(2, 1fr) !important;
    gap: 2rem !important;
    width: 100% !important;
    grid-auto-flow: row !important;
}

/* Mobile responsive overrides */
@media (max-width: 900px) {
    .menu-column-full-width .menu-list-autres-boissons {
        grid-template-columns: repeat(2, 1fr) !important;
        grid-template-rows: repeat(4, 1fr) !important;
        grid-auto-flow: row !important;
    }
}

@media (max-width: 600px) {
    .menu-column-full-width .menu-list-autres-boissons {
        grid-template-columns: repeat(2, 1fr) !important;
        grid-template-rows: repeat(4, 1fr) !important;
        grid-auto-flow: row !important;
    }
}

@media (max-width: 430px) {
    .menu-column-full-width .menu-list-autres-boissons {
        grid-template-columns: repeat(2, 1fr) !important;
        grid-template-rows: repeat(4, 1fr) !important;
        grid-auto-flow: row !important;
    }
}

@media (max-width: 320px) {
    .menu-column-full-width .menu-list-autres-boissons {
        grid-template-columns: repeat(2, 1fr) !important;
        grid-template-rows: repeat(4, 1fr) !important;
        grid-auto-flow: row !important;
    }
}

/* Autres Boissons Menu List with Images */
.menu-list-autres-boissons {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    grid-template-rows: repeat(2, 1fr) !important;
    gap: 2rem !important;
    width: 100% !important;
    grid-auto-flow: row !important;
    align-items: start !important;
    justify-items: center !important;
    grid-auto-rows: auto !important;
}

.menu-list-autres-boissons li {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding: 1.5rem 1rem !important;
    border-radius: 12px !important;
    transition: transform 0.3s ease !important;
    background: transparent !important;
    box-shadow: none !important;
    width: 100% !important;
    min-width: 0 !important;
    grid-column: auto !important;
    grid-row: auto !important;
}

.menu-list-autres-boissons li:hover {
    transform: translateY(-5px);
    box-shadow: none;
}

.menu-item-image {
    width: 100%;
    height: 160px;
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 1.2rem;
}

.menu-list-autres-boissons li span {
    font-size: 1.05rem;
    color: #666666;
    line-height: 1.4;
    font-weight: 500;
}

/* Carousel Styles */
.carousel-container {
    max-width: 1000px;
    margin: 3rem auto 2rem auto;
    padding: 0 1rem;
    text-align: center;
}

.carousel-title {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.carousel-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.carousel-track {
    display: flex;
    transition: transform 0.8s ease-in-out;
    width: 800%; /* 8 slides × 100% */
}

.carousel-slide {
    flex: 0 0 12.5%; /* 100% / 8 slides */
    position: relative;
}

.carousel-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.5rem 0;
    background: #fff;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #8B4513;
    transform: scale(1.2);
}

.indicator:hover {
    background: #A0522D;
}

/* Responsive carousel */
@media (max-width: 768px) {
    .carousel-title {
        font-size: 1.4rem;
    }
    
    .carousel-image {
        height: 300px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .carousel-image {
        height: 250px;
    }
    
    .carousel-title {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }
}



