@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-title: #2e0d9d;
    --text-primary: #5941a9;
    --bg-primary: #fffbf4;
    --bg-card: rgba(255, 255, 255, 0.95);
    --gradient-primary: linear-gradient(135deg, #6d72c3 0%, #5941a9 100%);
    --gradient-secondary: linear-gradient(135deg, #de5dee 0%, #57bff5 100%);
    --gradient-tertiary: linear-gradient(135deg, #267fce 0%, #2bc7ce 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);
    }

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

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

.section-title {
    width: 100%;
    text-align: center;
    font-family: "Fira Sans";
    src: url("font/FiraSans-Regular.ttf");
    font-size: 3.8rem;
    font-weight: 600;
    letter-spacing: 1.1px;
    margin-top: 7rem;
    margin-bottom: 6rem;
    background: var(--text-title);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.4s forwards;
}

    .section-title::after {
        content: '';
        position: absolute;
        width: 200px;
        height: 4px;
        background: var(--gradient-primary);
        bottom: -20px;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 2px;
    }


/* Section inspirations */
.inspi-section {
    padding: 4rem 0;
}

.inspi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
    margin-bottom: 2rem;
}

.inspi-item {
    text-align: center;
    text-decoration: none;
    color: #12182f;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.6s;
}

    .inspi-item img {
        width: 100%;
        height: auto;
        border-radius: 12px;
        box-shadow: 0 8px 15px rgb(6 14 45 / 31%);
        transition: transform 0.35s ease, box-shadow 0.35s ease;
    }

    .inspi-item:hover img {
        transform: translateY(-8px) scale(1.03);
    }

.inspi-label {
    margin-top: 0.9rem;
    margin-bottom: 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    font-family: "Fira Sans", sans-serif;
    color: #04022f;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

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

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

    .container {
        padding: 0 1.5rem;
    }

    section {
        padding: 5rem 0;
    }
}

@media (max-width: 480px) {

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

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

    .container {
        padding: 0 1rem;
    }
}
