/* === GENERAL & COLORS === */
:root {
    --color-primary: #C197DB; /* Votre mauve */
    --color-background: #000000; /* Votre noir */
    --color-surface: #FFFFFF;
    --color-text-primary: #FFFFFF;
    --color-text-secondary: #a0aec0;
    --font-family-base: 'Figtree', sans-serif;
}

body {
    background-color: var(--color-background);
    color: var(--color-text-primary);
    font-family: var(--font-family-base);
    margin: 0;
    line-height: 1.6;
}

.page-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.page-main {
    flex-grow: 1;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* === HEADER & NAV === */
.page-header {
    background-color: var(--color-primary);
    padding: 1.5rem 1rem;
    text-align: center;
}

/* .eyelit-logo {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--color-surface);
    letter-spacing: 2px;
} */
.eyelit-logo-text { /* Style pour le nom si pas de logo */
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--color-surface);
    letter-spacing: 2px;
}

.eyelit-logo-image { /* NOUVEAU : Style pour l'image du logo */
    max-height: 60px; /* Ajustez la hauteur maximale comme vous le souhaitez */
    width: auto;      /* Garde les proportions de l'image */
}
.page-nav {
    background-color: var(--color-surface);
    padding: 0.5rem 1rem;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 10;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
}

.page-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1.5rem;
}

.page-nav a {
    text-decoration: none;
    color: #2d3748;
    font-weight: 500;
    transition: color 0.2s ease;
}

.page-nav a:hover {
    color: var(--color-primary);
}

.language-switcher {
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    padding: 0.25rem 0.5rem;
}


/* === CONTENT BLOCKS === */
.content-block {
    margin-bottom: 4rem;
    text-align: center;
}

.content-block__heading {
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.content-block__paragraph {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.content-block__figure {
    margin: 0;
    padding: 0;
}

.content-block__figure img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.content-block__figure figcaption {
    margin-top: 0.5rem;
    font-style: italic;
    color: var(--color-text-secondary);
}

/* === TWO COLUMNS === */
.content-block__two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    text-align: left;
}

.column img {
    max-width: 100%;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.column h3 {
    margin-top: 0;
}


/* =================================== */
/* === VIDEOS  === */
/* =================================== */

.content-block__video-container {
     max-width: 800px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
     aspect-ratio: 16 / 9;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.content-block__video-container iframe {
     width: 100% !important;
    height: 100% !important;
     border: 0 !important;
}
/* === SLIDER (SWIPERJS) === */
.content-block__slider {
    width: 100%;
    max-width: 800px; /* Limite la largeur pour une meilleure lisibilité */
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
}

.swiper-slide {
    position: relative;
    text-align: center;
    background: #1a1a1a;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 3rem 1.5rem 1.5rem 1.5rem;
    color: white;
}

.swiper-slide-caption h3 {
    margin-top: 0;
}

/* Style des flèches et de la pagination */
.swiper-button-next, .swiper-button-prev {
    color: var(--color-primary);
}

.swiper-pagination-bullet-active {
    background: var(--color-primary);
}


/* === FOOTER === */
.page-footer {
    padding: 2rem 1rem;
    text-align: center;
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    margin-top: auto;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .nav-content {
        flex-direction: column;
        gap: 0.5rem;
    }
    .content-block__two-columns {
        grid-template-columns: 1fr;
    }
}