@charset "utf-8";
/* CSS Document */

@font-face {
    font-family: "Eczar";
    src: url("font/Eczar-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Poppins";
    src: url("font/Poppins-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

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


/* Footer */
.footer {
    background: linear-gradient(135deg, #bac1e2 0%, #d4d6ed 50%, #b0afed 100%);
    font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif;
    color: rgba(0, 0, 0, 0.75);
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

/* Centre le contenu, et s’adapte à tous les écrans */
.footer-content {
    max-width: 100%;
    width: 100%;
    padding: 0 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}


:root {
    --text-title: #ffffff;
    --text-primary: #8ec994;
    --text-secondary: #e6f3e6;
    --text-navlinks: #5941a9;
    --text-light: #c8dcc8;
    --bg-primary: #24351e;
    --bg-secondary: #110600;
    --bg-dark: #110600;
    --bg-card: rgba(255, 255, 255, 0.95);
    --gradient-primary: linear-gradient(135deg, #6d72c3 0%, #5941a9 100%);
    --gradient-elegant: linear-gradient(135deg, #bac1e2 0%, #d4d6ed 50%, #b0afed 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --glass: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.2);
}


body {
    font-family: "Poppins";
    src: url("font/Poppins-Regular.ttf") format("truetype");
    line-height: 1.6;
    color: var(--text-primary);
    scroll-behavior: smooth;
    overflow-x: hidden;
    background: var(--bg-primary);
}


/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgb(255 251 244);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

    nav.scrolled {
        background: rgb(255 251 244);
        box-shadow: var(--shadow-lg);
        padding: 1.02rem 0;
    }

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: block;
    width: 250px;
    height: auto;
}

    .logo img {
        display: block;
        width: 100%;
        height: auto;
    }

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.2rem;
    align-items: center;
}

    .nav-links a {
        text-decoration: none;
        color: var(--text-navlinks);
        font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif;
        font-weight: 500;
        font-size: 1.03rem;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        padding: 0.5rem 0;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

        .nav-links a img {
            width: 50px;
            height: 35px;
            object-fit: contain;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 100;
            height: 3px;
            bottom: 0;
            left: 68%;
            background: var(--gradient-primary);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            transform: translateX(-50%);
            border-radius: 1px;
        }

        .nav-links a:hover::after {
            width: 70%;
        }


/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 1px;
}

.mobile-menu-toggle.active .hamburger:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

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

.mobile-menu-toggle.active .hamburger:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
}

    .mobile-menu.active {
        right: 0;
    }

.mobile-nav-links {
    list-style: none;
    text-align: center;
}

    .mobile-nav-links li {
        margin: 2rem 0;
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

.mobile-menu.active .mobile-nav-links li {
    opacity: 1;
    transform: translateY(0);
}

    .mobile-menu.active .mobile-nav-links li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .mobile-menu.active .mobile-nav-links li:nth-child(2) {
        transition-delay: 0.2s;
    }

    .mobile-menu.active .mobile-nav-links li:nth-child(3) {
        transition-delay: 0.3s;
    }

    .mobile-menu.active .mobile-nav-links li:nth-child(4) {
        transition-delay: 0.4s;
    }

.mobile-nav-links a {
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    background: var(--gradient-elegant);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

    .mobile-nav-links a:hover {
        transform: scale(1.05);
    }


/* Hero Section */
.hero {
    min-height: 100vh;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    background-position: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    color: var(--text-light);
    z-index: 2;
    position: relative;
    max-width: 1000px;
    padding: 0 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.2s forwards;
    margin-bottom: 3rem;
    color: rgb(108 249 157);
}

.hero-title {
    width: 100%;
    text-align: center;
    font-size: 3.8rem;
    font-weight: 600;
    font-family: "Eczar";
    src: url("font/Eczar-Regular.ttf") format("truetype");
    letter-spacing: 6px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.4s forwards;
    display: block;
    position: relative;
    margin-top: 4rem;
    margin-bottom: 1rem;
}

.subtitle-image {
    width: 100%;
    max-width: 1000px;
    height: auto;
    position: relative;
    display: block;
    opacity: 0;
    margin-left: -0.4rem;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.4s forwards;
}

.subtitle-links {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    margin-top: 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.6s forwards;
}

.subtitle-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-light);
    font-size: 1.35rem;
    transition: color 0.3s;
}

    .subtitle-link img {
        width: 40px;
        height: 40px;
        object-fit: contain;
    }

    .subtitle-link:hover {
        color: #65e956;
        text-decoration: underline;
    }

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


/* Section Styles */
section {
    padding: 3rem 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-title {
    text-align: center;
    font-family: "Eczar";
    src: url("font/Eczar-Regular.ttf") format("truetype");
    font-weight: normal;
    font-size: 3.2rem;
    font-weight: 650;
    letter-spacing: 1.3px;
    margin-bottom: 5rem;
    background: var(--text-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}


/* --- ABOUT (3 colonnes) --- */
.about {
    background: var(--bg-secondary);
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1.1fr 1.5fr 1fr;
    gap: 4.5rem;
    align-items: start;
}

.about-col {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

    /* Titres About */
    .about-col h3 {
        color: var(--text-light);
        font-size: 1.6rem;
        margin-bottom: 1rem;
        transform: translateY(30px);
        animation: fadeInUp 1s ease 0.6s forwards;
    }

    /* Texte About */
    .about-col p {
        color: var(--text-secondary);
        font-size: 1.15rem;
        line-height: 1.5;
        transform: translateY(30px);
        animation: fadeInUp 1s ease 0.6s forwards;
    }

    /*Spécifique pour la liste*/
    .about-col ul {
        margin-left: 1.5rem;
        transform: translateY(30px);
        animation: fadeInUp 1s ease 0.6s forwards;
    }


/* --- SECTION IMAGES MISES EN AVANT --- */
.featured-images {
    background: var(--bg-secondary);
    padding: 1rem 0;
    text-align: center;
}

/* Grille des images */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    width: 90%;
    margin: auto;
    margin-bottom: 8rem;
}

/* Conteneur image */
.featured-item {
    overflow: hidden;
    border-radius: 1rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.6s forwards;
}

    .featured-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .4s ease;
    }


/* --- ABOUT DETAILS (SECTION PRODUCTION) --- */
.about-details {
    background: var(--bg-secondary);
    display: grid;
    grid-template-columns: .9fr 1.5fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 6rem;
}

.details-col {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}


.about-details h3 {
    color: var(--text-light);
    font-size: 1.6rem;
    margin-bottom: 1rem;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.6s forwards;
}

.about-details h4 {
    color: var(--text-secondary);
    font-size: 1.4rem;
    margin-bottom: 0.3rem;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.6s forwards;
}

/* Texte Production */
.about-details p,
.about-details li {
    color: var(--text-secondary);
    font-size: 1.15rem;
    line-height: 1.5;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.6s forwards;
}

.about-details ul {
    padding-left: 2rem;
    margin-bottom: 1.6rem;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

    .fade-in.animate {
        opacity: 1;
        transform: translateY(0);
    }


/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .hero-title {
        opacity: 0;
        transform: translateY(30px);
        animation: fadeInUp 1s ease 0.4s forwards;
        max-width: 500px;
    }
}

@media (max-width: 900px) {
    .about-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .subtitle-image {
        width: 100%;
        margin-left: 0;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.8rem;
        margin-top: 4rem;
    }

    .hero .subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .container {
        padding: 0 1.5rem;
    }

    section {
        padding: 5rem 0;
    }


    .about-text h3 {
        font-size: 2rem;
    }

    .about-image {
        height: 300px;
    }

    .about-details {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

        .about-details h3 {
            font-size: 1.8rem;
            text-align: center;
        }

        .about-details h4 {
            font-size: 1.3rem;
            margin-top: 1.5rem;
        }

        .about-details p,
        .about-details li {
            font-size: 1.1rem;
            line-height: 1.6;
        }

        .about-details ul {
            padding-left: 1.2rem;
        }
}

@media (max-width: 480px) {
    .hero-title {
        max-width: 100px;
    }

    .section-title {
        font-size: 2rem;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .container {
        padding: 0 1rem;
    }

    .mobile-nav-links a {
        font-size: 1.8rem;
    }
}
