@font-face {
    font-family: 'EB Garamond';
    src: url('Fonts/EBGaramond-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'EB Garamond';
    src: url('Fonts/EBGaramond-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'EB Garamond', serif;
    background-color: #58585a;
    color: white;
    line-height: 1.6;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    text-align: center;
    padding: 0 ;
}

.logo-container {
    margin-bottom: 0rem;
}

.main-logo {
    max-width: 250px;
    height: auto;
    filter: brightness(0) invert(1);
}

h2 {
    margin: 0 0;
    font-weight: 100;
    line-height: 1.2;
}

h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: normal;
}


a {
    color: white;
    text-decoration: none;
}


.domain-section h2{padding-bottom: 0.6rem;}

.header-text h2:last-child {
    margin-bottom: 1rem;
}

.dash {
    text-align: center;
    margin-bottom: 2rem;
}

.fermentation-section {
    text-align: center;
    padding: 0rem;
    position: relative;
    margin-bottom: 1rem;
}

.bubbles-logo {
    max-width: 350px;
    height: auto;
}

/* Styles pour la section des vins */
.wines-section {
    text-align: center;
    padding: 0 ;
}

.wines-section h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.wines-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 1rem;
}

.wines-header h2 {
    margin: 0;
}

.subtitle {
    font-style: italic;
    font-size: 0.9rem;
    margin: 0;
}

/* Styles pour le carousel */
.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 80px;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 10px;
    overflow: hidden;
}

.wine-gallery {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 20px 0;
}

.carousel-track {
    display: flex;
    gap: 20px;
    cursor: grab;
    user-select: none;
    will-change: transform;
    overflow: visible;
}

.wine-item {
    flex: 0 0 200px;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.wine-item:hover {
    transform: scale(1.05);
    z-index: 2;
}

.wine-item img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    pointer-events: none; /* Empêche les problèmes de glisser-déposer sur les images */
}

.carousel-button {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 1.5rem;
    padding: 10px 15px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.carousel-button:hover {
    background: rgba(255, 255, 255, 0.2);
}

.prev-button {
    left: 20px;
}

.next-button {
    right: 20px;
}

/* Styles pour la section domaine */
.domain-section {
    text-align: center;
    padding: 2rem 0;
    max-width: 1000px;
    margin: 0 auto 0rem;
}

.domain-section h3 {
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.domain-section p {
    margin-bottom: 0.5rem;
    text-align: center;
    line-height: normal;
}

.signature {
    font-style: italic;
    text-align: center;
}

/* Styles pour la section visite */
.visit-section {
    text-align: center;
    padding: 0;
    margin-bottom: 3rem;
}

.visit-section h3 {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.decouverte-section {
    margin-top: 2rem;
}

.contact-info p {
    margin: 0.5rem 0;
}

.newsletter-section {
    max-width: 400px;
    margin: 0 auto 2rem;
}

.inf-main_fcc6ffa7317267fe729f6ab3d5152496 {
    max-width: 100%;
    background-color: #58585a !important;
    border: 1px solid white;
    padding: 30px !important;
}

.inf-main_fcc6ffa7317267fe729f6ab3d5152496 .inf-submit {
    text-align: left !important;
}
.progress__bar {
    display: none !important;
}

/* Styles pour le footer */
footer {
    text-align: center;
    padding: 2rem 0;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-link img {
    width: 30px;
    height: 30px;
    transition: opacity 0.3s ease;
}

.social-link:hover img {
    opacity: 0.8;
}

/* Styles pour la lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
}

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

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 20px;
    z-index: 1001;
    transition: all 0.3s ease;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.1);
}

.lightbox-nav.prev {
    left: 20px;
}

.lightbox-nav.next {
    right: 20px;
}

/* Media Queries pour la lightbox */
@media (max-width: 768px) {
    body {
        padding: 0 15px;
    }

    .wines-header {
        flex-direction: column;
        gap: 5px;
    }

    .carousel-container {
        padding: 0 40px;
        margin: 0 -15px;
        width: calc(100% + 30px);
    }

    .wine-item {
        flex: 0 0 150px;
    }

    .carousel-button {
        font-size: 1.2rem;
        padding: 8px 12px;
        background: rgba(255, 255, 255, 0.2);
    }

    .prev-button {
        left: 5px;
    }

    .next-button {
        right: 5px;
    }

    .domain-section {
        padding: 3rem 0 2rem;
    }

    .lightbox-nav {
        font-size: 1.5rem;
        padding: 15px;
    }

    .lightbox-close {
        font-size: 1.5rem;
    }
} 