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

@font-face {
    font-family: "Fira Sans";
    src: url("font/FiraSans-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-primary: #5e321c;
    --text-secondary: #131313;
    --text-navlinks: #5941a9;
    --text-light: #853308;
    --bg-primary: #fffbf4;
    --bg-secondary: #fff4e6;
    --bg-dark: #1b092c;
    --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: 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif;
    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: 1200px;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.hero-subtitle {
    margin-top: 6rem;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.2s forwards;
    margin-bottom: 4rem;
    color: rgb(227 95 37);
}

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

    .hero-title img {
        display: block;
        margin: 0 auto;
        width: 100%;
        max-width: 1000px;
        height: auto;
    }

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


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

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

.section-title {
    text-align: center;
    font-family: "Fira Sans";
    src: url("font/FiraSans-Regular.ttf");
    font-size: 2.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 5rem;
    background: var(--text-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}


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

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

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

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


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

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

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

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


/* --- ABOUT DETAILS (SECTION BLABLABLA) --- */
.about-details {
    display: grid;
    grid-template-columns: 1fr 0.8fr 1fr;
    gap: 4.5rem;
    align-items: start;
    margin-bottom: 5rem;
}

    /* Titres About */
    .about-details h3 {
        color: var(--text-light);
        font-size: 1.6rem;
        margin-bottom: 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.3rem;
        line-height: 1.5;
        transform: translateY(30px);
        animation: fadeInUp 1s ease 0.6s forwards;
    }

.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;
        margin-bottom: 3rem;
    }

        .about-details h3 {
            font-size: 1.4rem;
            margin-bottom: 1.2rem;
            text-align: center;
        }

        .about-details p,
        .about-details li {
            font-size: 1.05rem;
            line-height: 1.6;
            text-align: center;
        }
}

@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;
    }
}
