@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');
@import url('../utils/variables.css');
@import url('./media.css');
@import url('../layout/header.css');
@import url('../components/menu.css');
@import url('../components/button.css');
@import url('../layout/footer.css');


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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
}

body.no-scroll {
    overflow: hidden;
}

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

h1 {
    font-size: 40px;
    font-weight: 700;
    color: var(--title);
    line-height: 1.2;
    margin-bottom: 20px;
}

h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--title);
    line-height: 1.3;
    margin-bottom: 16px;
}

h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--title-article);
    margin-bottom: 12px;
}

p {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 16px;
}


.hero {
    padding: 100px 24px 50px 24px;
    text-align: left;
}

.hero__subtitle {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 12px;
    text-transform: none;
}

.hero h1 {
    margin-top: 40px;
    margin-bottom: 40px;
}

.hero__description {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero__quote {
    background: var(--card-bg);
    color: var(--text-dark);
    padding: 18px 20px;
    border-radius:25px;
    margin-top: 80px;
}

.hero__quote blockquote {
    background: transparent;
    padding: 0;
    margin: 0;
    border: none;
}

.hero__quote p {
    color: var(--text-dark);
    font-size: 18px;
    margin-bottom: 8px;
    line-height: 1.5;
}

.hero__quote cite {
    color: #4a4a4a;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
}


.featured,
.articles {
    padding: var(--spacing-section) var(--gutter);
}

.featured h2,
.articles h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 35px;
}

.featured__article {
    background: transparent;
    border-radius: var(--border-radius);
    overflow: hidden;
    max-width: 450px;
    margin: 0 auto;
}

.featured__article img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center 5%;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.featured__content {
    background: var(--card-bg);
    padding: 24px;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    text-align: left;
}

.featured__content h3 {
    color: var(--title-article);
    font-size: 22px;
    margin-bottom: 12px;
}

.featured__content p {
    color: var(--text-dark);
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 16px;
}

.featured__link {
    display: inline-block;
    color: var(--title-article);
    font-weight: 600;
    font-size: 18px;
    text-decoration: underline;
}


.carousel {
    position: relative;
    margin-top: 30px;
}

.carousel__container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 20px;
    scrollbar-width: none;
    align-items: stretch;
    height: 450px;
}

.carousel__container::-webkit-scrollbar {
    display: none;
}

.carousel__card {
    flex: 0 0 280px;
    background: transparent;
    border-radius: var(--border-radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.carousel__card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.carousel__content {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    text-align: left;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.carousel__content h3 {
    color: var(--title-article);
    font-size: 22px;
    margin-bottom: 10px;
}

.carousel__content p {
    color: var(--text-dark);
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 12px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.carousel__link {
    display: inline-block;
    color: var(--title-article);
    font-weight: 600;
    font-size: 16px;
    text-decoration: underline;
    margin-top: auto;
}


/* Carousel button styles moved to ../components/button.css */


.carousel__pagination {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

/* Carousel dots moved to ../components/button.css */

/* Footer styles moved to ../layout/footer.css */

.container {
    width: min(100% - 2 * var(--gutter), var(--max-width));
    margin: 0 auto;
}

@media (min-width: 768px) {
    h1 {
        font-size: 48px;
    }
    
    h2 {
        font-size: 36px;
    }
    
    .hero {
        padding-top: 120px;
    }
    
    .featured__article {
        max-width: 600px;
    }
    
    .carousel__container {
        gap: 30px;
    }
    
    .carousel__card {
        flex: 0 0 320px;
    }
}

@media (min-width: 1024px) {
    .menu-mobile,
    .menu-overlay,
    .btn__menu,
    .btn_menu {
        display: none;
    }
    
    nav {
        gap: 30px;
    }
}

.article {
    max-width: 800px;
    margin: 0 auto;
    padding: 120px var(--gutter) 40px; /* reduce bottom gap before footer */
}

.article__header {
    margin-bottom: 40px;
}

.article__header h1 {
    font-size: 40px;
    color: var(--title);
    margin-bottom: 20px;
    line-height: 1.2;
}

.article__meta {
    display: flex;
    gap: 20px;
    color: var(--text-muted);
    font-size: 14px;
}

.article__meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.article__meta-icon {
    width: 16px;
    height: 16px;
}

.article__intro {
    margin-bottom: 40px;
}

.article__intro p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    font-family: 'Montserrat', sans-serif;
}

.article__intro-text p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    font-family: 'Montserrat', sans-serif;
}

.article__section {
    margin-bottom: 40px;
}

.article__section {
    margin-bottom: 40px;
}

.article__section h2 {
    font-size: 22px;
    color: var(--title);
    margin-bottom: 20px;
    margin-top: 40px;
}

.article__section p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.article__link,
.link__article {
    color: var(--title);
    text-decoration: underline;
    transition: opacity 0.2s ease;
}

.article__link:hover,
.link__article:hover {
    opacity: 0.8;
}

.article__quote {
    background: var(--card-bg);
    border-left: none;
    padding: 30px;
    margin: 40px 0;
    border-radius: 25px;
}

.article__quote p {
    font-size: 15px;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.6;
}

.article__quote cite {
    display: block;
    font-size: 14px;
    color: var(--text-dark);
    font-style: normal;
    margin-top: 20px;
    padding-top: 20px;
    margin-bottom: 16px;
}

.article__quote-link {
    display: inline-block;
    color: var(--title-article);
    text-decoration: underline;
    font-size: 14px;
    font-weight: 500;
    transition: opacity 0.2s ease;
}

.article__quote-link:hover {
    opacity: 0.8;
}

.article__timeline {
    margin-top: 60px;
    margin-bottom: 60px;
}

.article__timeline h2 {
    text-align: center;
    margin-bottom: 50px;
}

.timeline {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 20px;
}

.timeline__content {
    background: var(--card-bg);
    padding: 16px 20px;
    border-radius: 20px;
    width: 200px;
    min-height: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.timeline__content h3 {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 4px;
    font-weight: 600;
    line-height: 1.3;
}

.timeline__content p {
    font-size: 11px;
    color: var(--text-dark);
    margin: 0;
    font-weight: 400;
    line-height: 1.4;
}

.timeline__line {
    width: 120px;
    height: 2px;
    background: rgba(255, 255, 255,1);
}

.timeline__date {
    color: var(--text);
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
    width: 100px;
    text-align: center;
}

.article__Glossary-link {
    display: inline-flex;
    align-items: center;
    color: var(--title);
    text-decoration: underline;
    font-weight: 600;
    font-size: 16px;
    gap: 8px;
    margin-top: 30px;
}

.article__Glossary-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Articles connexes */
.related-articles {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(218, 178, 255, 0.2);
}

.related-articles h2 {
    font-size: 28px;
    color: var(--title);
    margin-bottom: 30px;
    text-align: center;
}

.related-articles__grid {
    display: grid;
    gap: 20px;
}

.related-card {
    background: transparent;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.related-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.related-card__content {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
}

.related-card__content h3 {
    color: var(--title-article);
    font-size: 20px;
    margin-bottom: 12px;
}

.related-card__link {
    color: var(--title-article);
    font-weight: 600;
    text-decoration: underline;
}

/* Video styles moved to ./media.css */

.films-carousel {
    position: relative;
    margin: 40px 0;
    display: flex;
    align-items: center;
    gap: 20px;
}

.Glossary {
    max-width: var(--max-width);
    padding: 120px 20px 60px; /* espace sous header fixe */
    margin: 0 auto;
}

.other-projects {
    max-width: var(--max-width);
    padding: 120px 20px 30px;
    margin: 0 auto;
}

.projects__header h1 {
    color: var(--title);
    font-size: 28px;
    text-align: center;
    margin: 0 0 10px 0;
}

.projects__header p {
    text-align: center;
    color: var(--text-muted);
    margin: 0 0 8px 0;
}

.projects__header p:first-of-type {
    font-style: italic;
    font-size: 14px;
    text-decoration: underline;
}

.projects__liést,
.projects__list {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 20px;
    margin-top: 40px;
}

.project-card {
    background: transparent;
    padding: 10px 4px;
}

.project-card h2 {
    display: inline;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 18px;
}

.project-card h2::after {
    content: " ";
}

.project-link {
    color: var(--title-article);
    text-decoration: underline;
}

.contact {
    max-width: var(--max-width);
    padding: 120px 20px 60px;
    margin: 0 auto;
}

.contact__header h1 {
    color: var(--title);
    font-size: 28px;
    text-align: center;
    margin: 0 0 16px 0;
}

.contact__header p {
    text-align: center;
    color: var(--text-muted);
    margin: 0;
}

.contact__header svg {
    display: block;
    margin: 20px auto 0;
    color: #ffffff;
    width: 24px;
    height: 24px;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

.contact__form {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 20px;
    margin: 40px auto 60px;
}

.contact__form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.contact__form-group label {
    color: var(--text-dark);
    font-weight: 500;
}

.contact__form-group input,
.contact__form-group textarea {
    border: none;
    outline: none;
    border-radius: 12px;
    padding: 12px 14px;
    background: #D6B7FF;
    color: #000000;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

.contact__form-group input::placeholder,
.contact__form-group textarea::placeholder {
    color: #000000;
}

.contact__form-group textarea { resize: vertical; }

.contact__submit {
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border: none;
    border-radius: 12px;
    background: #D6B7FF;
    color: #1a1a1a;
    font-weight: 600;
    margin: 40px auto 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
}

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

.contact__submit svg { color: #1a1a1a; }

.contact__info {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 20px;
    margin: 20px auto 10px;
}

.contact__info h2 {
    margin-top: 0;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-size: 20px;
}

.contact__info-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
}

.contact__info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
}

.contact__info-item + .contact__info-item {
    border-top: 1px solid rgba(0,0,0,0.08);
}

.contact__info-item svg {
    color: var(--title-article);
}

.contact__info-item h3 { 
    margin: 0; 
    color: var(--text-dark); 
    font-size: 18px;
}

.contact__info-item a, .contact__info-item p { 
    margin: 2px 0 0 0; 
    color: var(--text-dark); 
    font-size: 13px;
}

.about {
    max-width: var(--max-width);
    padding: 120px 20px 60px;
    margin: 0 auto;
}

.about__section > h1 {
    color: #DAB2FF;
    font-size: 40px;
    margin: 0 0 40px 0;
}

.about__section > h2 {
    color: #DAB2FF;
    font-size: 30px;
    margin: 40px 0 40px 0;
}

.about__card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 20px;
    color: var(--text-dark);
}

.about__card h2, .about__card h3 {
    color: var(--text-dark);
    margin-top: 0;
}

.about__card p {
    color: var(--text-dark);
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: normal;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}

.Glossary__header h1 {
    color: var(--title);
    font-size: 28px;
    margin: 0 0 6px 0;
}

.Glossary__header p {
    color: var(--text-muted);
    margin: 0 0 16px 0;
}

.Glossary__terms {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.Glossary-term {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 16px;
    color: var(--text-dark);
    max-width: 440px;
    margin: 0 auto;
}

.Glossary-term h2 {
    font-size: 20px;
    color: var(--text-dark);
    margin: 0 0 8px 0;
    font-weight: 600;
}

.Glossary-term p {
    color: var(--text-dark);
    margin: 0 0 12px 0;
    line-height: 1.5;
}

.Glossary-link {
    color: var(--title-article);
    text-decoration: underline;
    cursor: pointer;
    pointer-events: auto;
}

@media (min-width: 768px) {
    .Glossary__terms {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Carousel nav styling moved to ../components/button.css */

.films-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0;
    flex: 1;
    scrollbar-width: none;
}

.films-container::-webkit-scrollbar {
    display: none;
}

.film-card {
    flex: 0 0 257px;
    height: 280px;
    background: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.film-card img {
    width: 257px;
    height: 188px;
    object-fit: cover;
    flex-shrink: 0;
}

.film-card__content {
    padding: 12px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.film-card__content h3 {
    font-size: 14px;
    color: var(--title-article);
    margin: 8px 0 4px 0;
    font-weight: 600;
    text-decoration: underline;
}

.film-card__meta {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 6px;
}

.film-card__year {
    font-size: 16px;
    color: #080C14 !important;
    margin: 0;
    font-weight: 600;
}

.film-card__year::after {
    content: " • ";
    color: #080C14;
    margin: 0 4px;
}

.film-card__director {
    font-size: 16px;
    color: #000000 !important;
    margin: 0;
    font-weight: 600;
}

.film-card__description {
    font-size: 11px;
    color: #000000 !important;
    margin: 6px 0 0 0;
    line-height: 1.3;
    display: block;
}

