/*!
 * ================================================================
 * DÉCLARATION DE COPYRIGHT
 * ================================================================
 * 
 * © 2025 Pascal Lizotte - Web Designer (www.network-mtl.com) et Claude Sonnet 4.5
 * Tous droits réservés
 * 
 * PROPRIÉTÉ INTELLECTUELLE :
 * Ce fichier CSS et tous les styles, designs, animations, et éléments
 * visuels originaux qu'il contient sont la propriété exclusive de Pascal Lizotte.
 * Certains éléments tiers (polices, bibliothèques, frameworks) restent
 * la propriété de leurs auteurs respectifs et sont soumis à leurs licences.
 * 
 * RESTRICTIONS D'UTILISATION :
 * - Toute reproduction, distribution ou modification non autorisée est strictement interdite
 * - L'utilisation commerciale sans autorisation écrite au préalable est prohibée
 * - L'utilisation à des fins éducatives ou personnelles est autorisée avec attribution
 * 
 * ATTRIBUTION REQUISE :
 * En cas d'utilisation autorisée, veuillez inclure la mention :
 * "Conçu par Pascal Lizotte - Web Designer (www.network-mtl.com)"
 * 
 * CONTACT :
 * Pour toute demande d'autorisation ou licence d'utilisation :
 * Email: pascal@network-mtl.com
 * Web: https://www.network-mtl.com
 * 
 * CONFORMITÉ LÉGALE :
 * Ce copyright est protégé par les lois canadiennes et internationales
 * sur la propriété intellectuelle et les droits d'auteur.
 * 
 * Référence légale : Loi sur le droit d'auteur (L.R.C. (1985), ch. C-42) section oeuvre internet.
 * Office de la propriété intellectuelle du Canada (OPIC)
 * 
 * Date de création : 26 septembre 2025
 * Version : 1.0
 * 
 * AVERTISSEMENT LÉGAL SUPPLÉMENTAIRE :
 * D'autres éléments, ressources, bibliothèques, polices, images, scripts,
 * frameworks ou composants tiers utilisés dans ce projet peuvent être
 * soumis à leurs propres licences et déclarations légales respectives.
 * 
 * Les utilisateurs sont tenus de vérifier et de respecter les conditions
 * d'utilisation spécifiques à chaque élément tiers inclus, notamment :
 * - Polices Google Fonts et autres polices Web
 * - Bibliothèques JavaScript et frameworks CSS
 * - Images, icônes et médias sous licence
 * - Plugins et extensions tiers
 * 
 * Cette déclaration de copyright ne couvre que les créations originales
 * de Pascal Lizotte et ne modifie en aucun cas les droits des tiers.
 * 
 * ================================================================
 */

:root {
    /* Couleurs principales */
    --bg: #0b0b0c;
    --texte: #ffffff;
    --border: #919191;
    --stroke: #64646494;
    --color-gray: #919191;
    --dark-text: #ffffff;
    --muted: #bfc6cc;
    --color1: #ffff00;
    --color2: #0400ff;
    --color3: #ff02ff;

    /* Dimensions responsive */
    --max-width: 1400px;
    --container-padding: 20px;
    --section-gap: 60px;
    --card-gap: 24px;

    /* Gradients réutilisables */
    --gradient-primary: linear-gradient(90deg, var(--color1), var(--color2), var(--color3));
    --gradient-glass-light: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    --gradient-glass-medium: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    --gradient-glass-dark: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    --gradient-title: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 0, 0.8) 100%);
    --gradient-hover: linear-gradient(90deg, rgba(255, 255, 0, 1), rgba(255, 255, 255, 1));

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 2.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.22s ease;

    /* Effets */
    --backdrop-blur: blur(10px);
    --backdrop-blur-strong: blur(12px);
    --border-glass: 1px solid rgba(255, 255, 255, 0.1);
    --border-glass-hover: 1px solid rgba(255, 255, 0, 0.3);
    --shadow-small: 0 4px 20px rgba(0, 0, 0, 0.2);
    --shadow-medium: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-large: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* ================================================================
 * CLASSES RÉUTILISABLES
 * ================================================================ */

/* Classe glassmorphisme commune */
.glassmorphism-container {
    background: var(--gradient-glass-medium);
    border: var(--border-glass);
    border-radius: 20px;
    backdrop-filter: var(--backdrop-blur);
    transition: all var(--transition-medium);
}

.glassmorphism-container:hover {
    border-color: rgba(255, 255, 0, 0.2);
    box-shadow: var(--shadow-medium);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

table {
    width: 100%;
}

.zone-splash {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

/* Classes de polices Google Fonts */
.mea-culpa-regular {
    font-family: "Mea Culpa", cursive;
    font-weight: 400;
    font-style: normal;
}

.agbalumo-regular {
    /* Agbalumo: CSS class */
    font-family: "Agbalumo", system-ui;
    font-weight: 400;
    font-style: normal;
}

.noto-sans-symbols-UNIQUE {
    /* Noto Sans Symbols: CSS class for a variable style */
    font-family: "Noto Sans Symbols", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.noto-sans-symbols-2-regular {
    /* Noto Sans Symbols 2: CSS class */
    font-family: "Noto Sans Symbols 2", sans-serif;
    font-weight: 400;
    font-style: normal;
}

/* Dark Mode material icons */
@font-face {
    /* Import Google Font */
    font-family: 'Material Symbols Outlined';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/icon/font?kit=kJF1BvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oDMzByHX9rA6RzaxHMPdY43zj-jCxv3fzvRNU22ZXGJpEpjC_1v-p_4MrImHCIJIZrDCvHOejddZJm39OvLJw9tqP7Nq7ZMwypDWaaQ&skey=b8dc2088854b122f&v=v272) format('woff2');
}




body {
    /* Global body styles */
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    background: var(--gradient-primary);
    color: var(--texte);
    line-height: 1.65;
    font-size: clamp(14px, 2vw, 16px);
    font-weight: 400;
    letter-spacing: 0.01em;
    min-height: 100vh;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    box-sizing: border-box;
}

h1 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-size: clamp(1.4rem, 4vw, 1.8rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--texte);
    margin: 0;
    margin-top: 20px;
}

h2 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-size: clamp(1.5rem, 4.5vw, 2rem);
    font-weight: 600;
    letter-spacing: -0.015em;
    line-height: 1.3;
    color: var(--texte);
    margin: 0;
}

h3 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-size: clamp(1.25rem, 3.5vw, 1.5rem);
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.4;
    color: var(--texte);
}

h4 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.5;
    color: var(--texte);
}

p {
    font-size: clamp(0.9rem, 2vw, 1rem);
    line-height: 1.7;
    letter-spacing: 0.015em;
    margin: 0 0 1em 0;
    color: var(--texte);
}

/* ================================================================
 * ICÔNES ET POLICES SPÉCIALES
 * ================================================================ */

.material-symbols-outlined {
    /* Decoration bouton Dark mode / Google Material Icons */
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
}

a {
    /* Couleur de hyperlien appliquée */
    color: var(--texte);
    transition: color var(--transition-fast), text-shadow var(--transition-fast);
}

a:hover {
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
}

a:focus,
a:focus-visible {
    outline: 2px solid var(--color2);
    outline-offset: 3px;
    border-radius: 2px;
}

button,
.btn-send,
#darkModeToggle {
    transition: transform var(--transition-bounce), box-shadow var(--transition-bounce), background var(--transition-fast);
}

button:focus,
.btn-send:focus,
#darkModeToggle:focus,
button:focus-visible,
.btn-send:focus-visible,
#darkModeToggle:focus-visible {
    outline: 2px solid var(--color2);
    outline-offset: 3px;
}

/* Effet "Click me" sur liens */
.link .toclick {
    &--popup-text {
        position: relative;

        &::before,
        &::after {
            font-size: 0.9em;
            background: yellow;
            color: black;
            line-height: 1em;
            padding: 0.2em 0.15em 0.2em;
            border-radius: 0.2em;
            position: absolute;
            top: -1em;
            left: 50%;
            opacity: 0;
            transition: 0.2s opacity cubic-bezier(0.33, 1, 0.68, 1), 0.2s transform cubic-bezier(0.33, 1, 0.68, 1);
        }

        &::before {
            content: "Click";
            transform: translate(-65%, 20%) rotateZ(-1deg);
        }

        &::after {
            content: "me!";
            transform: translate(45%, 20%) rotateZ(1deg);
        }

        &:hover::before,
        &:hover::after {
            transition: 0.4s opacity cubic-bezier(0.33, 1, 0.68, 1), 0.4s transform cubic-bezier(0.33, 1, 0.68, 1);
            opacity: 1;
        }

        &:hover::before {
            transform: translatex(-75%) rotateZ(-3deg);
        }

        &:hover::after {
            transform: translatex(45%) rotateZ(3deg);
        }
    }
}

/* ================================================================
 * LAYOUT ET STRUCTURE PRINCIPALE
 * ================================================================ */

.container {
    max-width: var(--max-width);
    margin-left: auto;
    margin-right: auto;
    padding: 40px var(--container-padding);
    width: 100%;
    box-sizing: border-box;
}

/* Responsive container */
@media (min-width: 768px) {
    .container {
        padding: 60px 40px;
    }
}

@media (min-width: 1440px) {
    .container {
        padding: 80px 60px;
    }
}

.hidden {
    display: none !important;
}

/* Scroll Indicator - Style glassmorphism comme contact-card */
.scroll-indicator {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 12px;
    height: 200px;
    background: var(--gradient-glass-medium);
    border-radius: 12px;
    border: var(--border-glass);
    backdrop-filter: var(--backdrop-blur);
    z-index: 500;
    transition: all var(--transition-medium);
}

.scroll-indicator:hover {
    width: 16px;
    border-color: rgba(255, 255, 0, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.scroll-thumb {
    width: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 0, 0.4), rgba(255, 255, 0, 0.2));
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(255, 255, 0, 0.2);
}

.scroll-indicator:hover .scroll-thumb {
    background: linear-gradient(135deg, rgba(255, 255, 0, 0.6), rgba(255, 255, 0, 0.3));
    box-shadow: 0 6px 16px rgba(255, 255, 0, 0.3);
}

header.hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    color: var(--texte);
    overflow: hidden;
    border-bottom: 5px solid var(--texte);
}

/* Hero responsive heights */
@media (max-height: 600px) {
    header.hero {
        min-height: 600px;
    }
}

@media (min-width: 768px) {
    header.hero {
        min-height: 100vh;
    }
}

/* Vidéo background header */
.header-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
    overflow: hidden;
}

.header-video-bg video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    pointer-events: none;
}


.hero-content {
    position: relative;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 10;
}

@media (min-width: 768px) {
    .hero-content {
        max-width: var(--max-width);
        padding: 0 40px;
    }
}

@media (min-width: 1440px) {
    .hero-content {
        padding: 0 60px;
    }
}

header .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .7) 0%, rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 0) 90%, rgba(0, 0, 0, .7) 100%);
    z-index: 3;
}

/* Loading layer styles */
#loading-layer {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(255, 255, 0, 0.9) 0%,
            rgba(4, 0, 255, 0.9) 50%,
            rgba(255, 2, 255, 0.9) 100%);
    background-size: 200% 200%;
    animation: gradient-shift 4s ease infinite;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 5000;
    transition: opacity 0.5s;
    padding: 0 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.textzone {
    padding: 12px;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: rgba(0, 0, 0, .7);
}

@media (min-width: 768px) {
    .textzone {
        padding: 16px;
        border-radius: 10px;
    }
}

section {
    z-index: 100;
    position: relative;
    padding: 30px 0;
}

@media (min-width: 768px) {
    section {
        padding: 40px 0;
    }
}

@media (min-width: 1024px) {
    section {
        padding: 50px 0;
    }
}

section#creations,
section#services {
    background: var(--gradient-glass-dark);
    padding: 32px 20px;
    border-radius: 16px;
    border: var(--border-glass);
    backdrop-filter: blur(8px);
    margin-bottom: 30px;
    transition: all var(--transition-medium);
}

@media (min-width: 768px) {
    section#creations,
    section#services {
        padding: 40px 32px;
        border-radius: 20px;
        margin-bottom: 40px;
    }
}

@media (min-width: 1024px) {
    section#creations,
    section#services {
        padding: 48px 40px;
        border-radius: 24px;
    }
}

section#creations:hover,
section#services:hover {
    border-color: rgba(255, 255, 0, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

@keyframes loading-spinner {
    to {
        transform: rotate(360deg);
    }
}

@keyframes spinner-pulse {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }

    50% {
        transform: scale(1.1) rotate(180deg);
        opacity: 0.8;
    }
}

.loading-spinner {
    width: 64px;
    height: 64px;
    border: 6px solid rgba(255, 255, 255, 0.2);
    border-top: 6px solid #fff;
    border-right: 6px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: loading-spinner 0.8s linear infinite, spinner-pulse 2s ease-in-out infinite;
    margin-bottom: 24px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3), inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.loading-text {
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    margin: 8px 0;
    animation: text-fade 2s ease-in-out infinite;
}

@keyframes text-fade {

    0%,
    100% {
        opacity: 1;
        transform: translateY(0);
    }

    50% {
        opacity: 0.7;
        transform: translateY(-3px);
    }
}

.hero-center {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    padding: 20px;
    z-index: 10;
    height: 100%;
}

@media (min-width: 768px) {
    .hero-center {
        padding: 40px;
    }
}

.hero-center h2 {
    margin: 0;
    max-width: 100%;
    color: var(--texte);
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 600;
    letter-spacing: -0.015em;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .hero-center h2 {
        max-width: 920px;
    }
}

.hero-center p {
    margin: 18px auto 24px;
    color: #ffffff;
    max-width: 100%;
    opacity: 1;
    font-size: clamp(0.95rem, 2.5vw, 1.125rem);
    line-height: 1.7;
    letter-spacing: 0.015em;
    font-weight: 500;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7), 0 4px 24px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    padding: 16px 20px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

@media (min-width: 768px) {
    .hero-center p {
        max-width: 920px;
        padding: 24px 32px;
        border-radius: 16px;
    }
}

.cta {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: clamp(0.9rem, 2vw, 1rem);
    font-weight: 600;
    letter-spacing: 0.02em;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(124, 55, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: var(--gradient-primary);
    color: var(--texte);
    transition: transform var(--transition-bounce), box-shadow var(--transition-bounce);
    backdrop-filter: blur(6px);
}

@media (min-width: 768px) {
    .cta {
        padding: 14px 32px;
    }
}

.cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
}

main {
    width: 100%;
    margin: 0;
    padding: 40px 0 80px;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    main {
        padding: 60px 0 100px;
    }
}

@media (min-width: 1024px) {
    main {
        padding: 80px 0 120px;
    }
}

h3.section-title {
    font-size: clamp(1.5rem, 5vw, 2.25rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0 0 24px;
    color: #fff;
    background: var(--gradient-title);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 20px rgba(255, 255, 0, 0.3);
    position: relative;
    padding-bottom: 12px;
}

@media (min-width: 768px) {
    h3.section-title {
        margin: 0 0 32px;
        padding-bottom: 16px;
    }
}

h3.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, rgba(255, 255, 0, 0.8), transparent);
    border-radius: 2px;
}

.grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--card-gap);
}

/* Tablet et plus */
@media (min-width: 640px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop moyen */
@media (min-width: 1024px) {
    .grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Grand desktop */
@media (min-width: 1440px) {
    .grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 28px;
    }
}

.card {
    background: var(--gradient-glass-light);
    padding: 0;
    border-radius: 16px;
    min-height: 320px;
    overflow: hidden;
    position: relative;
    border: var(--border-glass);
    backdrop-filter: var(--backdrop-blur-strong);
    transition: all var(--transition-slow);
    box-shadow: var(--shadow-small);
}

@media (min-width: 768px) {
    .card {
        border-radius: 20px;
        min-height: 340px;
    }
}

@media (min-width: 1024px) {
    .card {
        min-height: 360px;
    }
}

.card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 0, 0.4);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 0, 0.2);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

.card .thumb {
    height: 160px;
    border-radius: 0;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: all var(--transition-slow);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 640px) {
    .card .thumb {
        height: 180px;
    }
}

@media (min-width: 1024px) {
    .card .thumb {
        height: 200px;
    }
}

.card .thumb::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3));
    opacity: 0.6;
    transition: opacity var(--transition-slow);
}

.card:hover .thumb {
    transform: scale(1.05);
}

.card:hover .thumb::before {
    opacity: 0.3;
}

.card h4 {
    margin: 0;
    padding: 16px 20px 10px;
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.3;
    color: #fff;
    background: linear-gradient(90deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.9));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all var(--transition-medium);
}

@media (min-width: 768px) {
    .card h4 {
        padding: 20px 24px 12px;
    }
}

.card:hover h4 {
    background: var(--gradient-hover);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card p {
    margin: 0;
    padding: 0 20px 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: clamp(0.875rem, 1.8vw, 0.9375rem);
    line-height: 1.65;
    letter-spacing: 0.01em;
}

@media (min-width: 768px) {
    .card p {
        padding: 0 24px 24px;
    }
}

/* Card Badge Overlay */
.card .thumb::after {
    content: '';
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    background: url('images/icons-fleur.png');
    background-size: 85%;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 4px 16px rgba(255, 255, 0, 0.5), 0 0 0 2px rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
}

@media (min-width: 768px) {
    .card .thumb::after {
        top: 16px;
        right: 16px;
        width: 48px;
        height: 48px;
    }
}

.card:hover .thumb::after {
    opacity: 1;
    transform: scale(1) rotate(10deg);
}

/* Card Glow Effect on Hover */
.card::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, rgba(255, 255, 0, 0.4), rgba(255, 255, 255, 0.2));
    border-radius: 20px;
    opacity: 0;
    z-index: -1;
    transition: opacity var(--transition-slow);
    filter: blur(8px);
}

.card:hover::before {
    opacity: 0.3;
}

.services {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
    background: var(--gradient-glass-medium);
    padding: 24px 20px;
    border-radius: 16px;
    border: var(--border-glass);
    backdrop-filter: var(--backdrop-blur);
    transition: all var(--transition-medium);
}

@media (min-width: 768px) {
    .services {
        padding: 32px;
        border-radius: 20px;
    }
}

@media (min-width: 1024px) {
    .services {
        grid-template-columns: 1fr 340px;
        gap: 32px;
    }
}

@media (min-width: 1440px) {
    .services {
        grid-template-columns: 1fr 400px;
        gap: 40px;
        padding: 40px;
    }
}

.services:hover {
    border-color: rgba(255, 255, 0, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.services .text p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.75;
    font-size: 1rem;
    letter-spacing: 0.015em;
    margin-bottom: 16px;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.service-item {
    padding: 20px;
    background: var(--gradient-glass-dark);
    border-radius: 12px;
    border: var(--border-glass);
    transition: all var(--transition-medium);
}

.service-item:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    border-color: rgba(255, 255, 0, 0.2);
    transform: translateX(4px);
}

.service-item b {
    display: block;
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
    color: #fff;
    background: var(--gradient-title);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-item p {
    font-size: 0.9375rem;
    line-height: 1.7;
    letter-spacing: 0.015em;
    color: var(--muted);
}

.about {
    padding: 24px;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
}

.about p {
    font-size: 1rem;
    line-height: 1.75;
    letter-spacing: 0.015em;
}

/* Section Contact */
.contact-intro {
    text-align: center;
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    color: rgba(255, 255, 255, 0.9);
    margin: 12px auto 0;
    max-width: 600px;
    line-height: 1.6;
    letter-spacing: 0.015em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    font-weight: 500;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1.5fr;
    }
}

.contact-card-large {
    min-height: 400px;
}

.contact-card-large .map-container {
    height: 280px;
}

.contact-card-large .map-container.expanded {
    height: 500px !important;
}

.contact-card-large .map-container iframe {
    height: 100% !important;
}

.contact-card {
    background: var(--gradient-glass-medium);
    padding: 24px 20px;
    border-radius: 12px;
    text-align: center;
    border: var(--border-glass);
    transition: all var(--transition-medium);
    backdrop-filter: var(--backdrop-blur);
}

@media (min-width: 768px) {
    .contact-card {
        padding: 32px 24px;
        border-radius: 16px;
    }
}

.contact-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 0, 0.3);
    box-shadow: var(--shadow-large);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: inline-block;
    filter: grayscale(0.3);
}

.contact-card h4 {
    margin: 0 0 12px 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: #fff;
}

.contact-card p {
    margin: 6px 0;
    font-size: 1rem;
    line-height: 1.6;
}

.contact-card a {
    color: #00ffff;
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-fast);
}

.contact-card a:hover {
    color: #ffff00;
}

.contact-detail {
    font-size: 0.875rem;
    color: var(--muted);
    margin-top: 8px;
}

.map-container {
    margin-top: 16px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-small);
    height: 200px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
}

.map-container::before {
    content: '🗺️ Cliquez pour agrandir';
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    z-index: 150;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.map-container.expanded::before,
.map-container:hover::before {
    opacity: 0;
}

.map-container iframe {
    display: block;
    filter: grayscale(0.2) contrast(1.1);
    transition: filter var(--transition-medium);
    width: 100%;
    height: 100%;
}

.map-container:hover iframe {
    filter: grayscale(0) contrast(1.2);
}

.map-container.expanded {
    height: 450px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    z-index: 200;
}

.map-container.expanded iframe {
    filter: grayscale(0) contrast(1.2);
}

.contact-cta {
    text-align: center;
    padding: 48px 32px;
    background: var(--gradient-glass-light);
    border-radius: 20px;
    border: var(--border-glass);
    backdrop-filter: var(--backdrop-blur-strong);
    margin-top: 40px;
    transition: all var(--transition-medium);
    box-shadow: var(--shadow-small);
}

.contact-cta:hover {
    border-color: rgba(255, 255, 0, 0.3);
    box-shadow: var(--shadow-medium);
    transform: translateY(-2px);
}

.contact-cta .btn-send {
    font-size: 1.125rem;
    padding: 16px 40px;
    margin-bottom: 16px;
}

.contact-note {
    color: var(--muted);
    font-size: 0.9375rem;
    margin: 0;
    line-height: 1.6;
}



.services aside {
    align-self: flex-start;
    margin-top: 0;
}

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    animation: reveal 2s ease forwards
}

.stagger-1 {
    animation-delay: .0s
}

.stagger-2 {
    animation-delay: .3s
}

.stagger-3 {
    animation-delay: .6s
}

.stagger-4 {
    animation-delay: .9s
}

.stagger-5 {
    animation-delay: 1.2s
}

@keyframes reveal {
    to {
        opacity: 1;
        transform: none
    }
}

.fade-up .reveal {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
}

/* Vidéo background footer */
.footer-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.footer-video-bg iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    /* Ratio 16:9 */
    min-height: 100vh;
    min-width: 177.77vh;
    /* Ratio 16:9 */
    transform: translate(-50%, -50%);
    opacity: 1;
}

footer {
    position: relative;
    width: 100%;
    margin: 40px 0 0 0;
    padding: 40px 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    line-height: 1.65;
    letter-spacing: 0.015em;
    z-index: 200;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4));
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    footer {
        padding: 50px 32px;
        margin-top: 60px;
    }
}

footer .tooltip {
    max-width: 850px;
    margin: 0 auto;
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.65);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

@media (min-width: 768px) {
    footer .tooltip {
        padding: 20px 28px;
        border-radius: 12px;
    }
}

footer a {
    color: rgba(255, 0, 0, 1.0);
    transition: color var(--transition-fast);
    text-decoration: none;
}

footer a:hover {
    color: rgb(255, 255, 255);
}

/* Footer Content Layout */
.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
    text-align: center;
}

@media (min-width: 640px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        text-align: left;
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: all var(--transition-fast);
}

.footer-nav a:hover {
    color: rgba(255, 255, 0, 1);
    transform: translateX(4px);
}

.footer-contact p {
    margin: 8px 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.85);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 30px;
    margin-top: 30px;
    text-align: center;
}

.footer-copyright {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    font-weight: 500;
}



/*

form { display: flex; flex-direction: column; gap: 12px }

input, textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.06);
  background: transparent;
  color: #fff;
  outline: none;
}

textarea { min-height: 140px; resize: vertical ;}

*/

.btn-send {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    border: none;
    background: var(--gradient-primary);
    color: var(--texte);
    font-size: clamp(0.9rem, 2vw, 1rem);
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: transform var(--transition-bounce), box-shadow var(--transition-bounce);
}

@media (min-width: 768px) {
    .btn-send {
        padding: 14px 32px;
    }
}

.btn-send:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.btn-send:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}







/* Bubble animation styles */
header .bubbles {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    pointer-events: none;
    z-index: 10;
}

header .bubble {
    border-radius: 100%;
    position: absolute;
    will-change: transform, opacity;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 24px rgba(124, 55, 255, 1.0);
    border: 1.5px solid rgba(255, 255, 255, 1.2);
    filter: saturate(1.0) brightness(1.0);
}

@keyframes bubble-rise {
    0% {
        transform: translateY(0) scale(1);
        opacity: 1.0;
    }

    50% {
        opacity: 1.0;
    }

    100% {
        transform: translateY(-280px) scale(0);
        opacity: 0;
    }
}


/* Loading layer styles */
#loading-layer {
    position: fixed;
    inset: 0;
    background: var(--gradient-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 5000;
    transition: opacity 0.5s;
}

.loading-spinner {
    width: 48px;
    height: 48px;
    border: 6px solid rgba(255, 255, 255, 0.2);
    border-top: 6px solid #fff;
    border-radius: 50%;
    animation: loading-spinner 1s linear infinite;
    margin-bottom: 18px;
}

.loading-text {
    color: #fff;
    font-family: Montserrat, Arial, sans-serif;
    font-size: medium;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

/* container, ready to rescale */
.fleur-container {
    width: 120px;
    height: 120px;
    position: relative;
    transform: scale(1.0);
    transform-origin: 50% 50%;
}

/* Animated brand flower logo with petals that fly away and flip */
.petale {
    position: absolute;
    right: 50%;
    top: 50%;
    width: 20px;
    height: 50px;
    background: #ffffff;
    border-radius: 60% 60% 60% 60%/40% 40% 100% 100%;
    opacity: 1;
    transform: rotate(calc(var(--i) * 40deg)) translate(0, -48px) scale(1.0);
    animation: petaleAnim 5s cubic-bezier(.7, 0, .3, 1) infinite, petaleColor 5s linear infinite;
    animation-delay: calc(var(--i) * .1s);
    box-shadow: 0 0 8px var(--color);
    border: 2px solid var(--stroke);
}

.petale.envol {
    animation: envolFlip 3.0s cubic-bezier(.7, 0, .3, 1) forwards, petaleColor 30s linear infinite;
    z-index: 5;
}

@keyframes envolFlip {
    0% {
        opacity: 1;
        transform: rotate(calc(var(--i) * 40deg)) translate(0, -48px) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
    }

    30% {
        opacity: 1;
        transform: rotate(calc(var(--i) * 40deg + 20deg)) translate(30px, -80px) rotateX(120deg) rotateY(120deg) rotateZ(120deg);
    }

    80% {
        opacity: 0.5;
        transform: rotate(calc(var(--i) * 40deg + 60deg)) translate(120px, -180px) rotateX(260deg) rotateY(260deg) rotateZ(260deg);
    }

    100% {
        opacity: 0;
        transform: rotate(calc(var(--i) * 40deg + 90deg)) translate(200px, -300px) rotateX(360deg) rotateY(360deg) rotateZ(360deg);
    }
}

@keyframes petaleAnim {
    0% {
        opacity: 1;
        transform: rotate(calc(var(--i) * 40deg)) translate(0, -48px) scale(1);
    }

    100% {
        opacity: 1;
        transform: rotate(calc(var(--i) * 40deg)) translate(0, -48px) scale(1);
    }
}

@keyframes petaleColor {

    0%,
    1% {
        background: #fff;
    }

    70%,
    80% {
        background: var(--color);
    }

    99%,
    100% {
        background: #fff;
    }
}

/* Dark Mode Styles */
body.dark {
    /*background: #121212;*/
    background: linear-gradient(90deg, rgb(0, 0, 0, 1), rgb(61, 61, 61), rgb(0, 0, 0));
    color: #dfdfdf;
}

body.dark header .bg {
    filter: contrast(1.0) saturate(1.0) brightness(0.5) grayscale(0.8);
}

body.dark .textzone {

    background: rgba(0, 0, 0, 1.0);
    border-color: rgba(255, 255, 255, 0.2);
}

body.dark .services {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
    border-color: rgba(255, 255, 255, 0.05);
    opacity: 0.85;
}

body.dark .card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    border-color: rgba(255, 255, 255, 0.08);
}

body.dark .card:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
    border-color: rgba(255, 255, 0, 0.3);
}

body.dark .card .thumb::before {
    opacity: 0.7;
}

body.dark .card:hover .thumb::before {
    opacity: 0.4;
}

body.dark .cta {
    background: linear-gradient(90deg, #444, #555);
    color: #fff;
}


body.dark #darkModeToggle {
    background: linear-gradient(90deg, #444, #555);
}

#darkModeToggle {
    position: fixed;
    top: 10px;
    z-index: 600;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 5px 5px;
    border-radius: 30px;
    background: var(--gradient-primary);
    color: #ffffff;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

#darkModeToggle:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

#darkModeToggle:active {
    transform: scale(0.98);
}

#darkModeToggle .material-symbols-outlined {
    font-size: 30px;
    transition: transform var(--transition-medium);
}

#darkModeToggle:hover .material-symbols-outlined {
    transform: rotate(50deg);
}

/* End Dark Mode Styles */



/* Lien a Clicker */
.link .toclick {
    &--popup-text {
        position: relative;

        &::before,
        &::after {
            font-size: 0.9em;
            background: yellow;
            color: black;
            line-height: 1em;
            padding: 0.2em 0.15em 0.2em;
            border-radius: 0.2em;
            position: absolute;
            top: -1em;
            left: 50%;
            opacity: 0;
            transition: 0.2s opacity cubic-bezier(0.33, 1, 0.68, 1), 0.2s transform cubic-bezier(0.33, 1, 0.68, 1);
        }

        &::before {
            content: "Click";
            transform: translate(-65%, 20%) rotateZ(-1deg);
        }

        &::after {
            content: "me!";
            transform: translate(45%, 20%) rotateZ(1deg);
        }

        &:hover::before,
        &:hover::after {
            transition: 0.4s opacity cubic-bezier(0.33, 1, 0.68, 1), 0.4s transform cubic-bezier(0.33, 1, 0.68, 1);
            opacity: 1;
        }

        &:hover::before {
            transform: translatex(-75%) rotateZ(-3deg);
        }

        &:hover::after {
            transform: translatex(45%) rotateZ(3deg);
        }
    }
}

/* Tooltip copyright - Design Premium Ultra */
.tooltip {
    position: relative;
    display: inline-block;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 0, 0.1), transparent);
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, #ffff00, #00ffff, #ff00ff) 1;
    padding: 2px 8px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999;
}



.copyright {
    visibility: hidden;
    opacity: 0;
    width: calc(100% - 64px);
    max-width: 1200px;
    max-height: 80vh;
    overflow-y: auto;
    overflow-x: hidden;
    background:
        linear-gradient(135deg, rgba(0, 0, 0, 0.98), rgba(20, 20, 40, 0.98)),
        linear-gradient(45deg, transparent 30%, rgba(255, 255, 0, 0.03) 50%, transparent 70%);
    color: #fff;
    text-align: left;
    border-radius: 20px;
    padding: 32px 40px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    z-index: 9999;
    font-size: 14px;
    line-height: 1.8;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 400;
    letter-spacing: 0.015em;
    box-shadow:
        0 15px 50px -10px rgba(224, 220, 220, 0.7),
        5px 5px 30px -5px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.15),
        0 0 30px rgba(255, 255, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px) saturate(180%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: tooltipFloat 3s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 0, 0.2);
}

/* Effet de brillance animée */
.copyright::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
    border-radius: 20px;
}

.tooltip:hover .copyright::before {
    left: 100%;
}

/* Flèche du tooltip avec gradient - Désactivée en mode plein écran */
.copyright::after {
    content: '';
    display: none;
}

/* Mini-flèche intérieure pour effet 3D */
.tooltip::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-top-color: rgba(255, 255, 0, 0.1);
    top: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.tooltip:hover::after {
    opacity: 1;
}

.copyright[style*="display: block"] {
    visibility: visible;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Animation de flottement subtile */
@keyframes tooltipFloat {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, calc(-50% - 3px)) scale(1);
    }
}

/* Bouton de fermeture */
.copyright .close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition-medium);
}

.copyright .close-btn:hover {
    background: rgba(255, 0, 0, 0.3);
    border-color: rgba(255, 0, 0, 0.5);
    color: #fff;
    transform: rotate(90deg);
}

/* Améliorer la structure du texte */
.copyright p {
    margin: 14px 0;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    font-size: 0.95em;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.copyright p:first-child {
    font-weight: 600;
    color: #ffff00;
    font-size: 1.15em;
    margin-top: 0;
    text-shadow: 0 0 12px rgba(255, 255, 0, 0.4);
    letter-spacing: 0.03em;
    line-height: 1.4;
}

.copyright p:last-child {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.85);
}

.copyright a {
    color: #00ffff;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 255, 255, 0.4);
    transition: all var(--transition-medium);
    font-weight: 500;
    letter-spacing: 0.01em;
}

.copyright a:hover {
    color: #ffff00;
    border-bottom-color: rgba(255, 255, 0, 0.8);
    text-shadow: 0 0 10px rgba(255, 255, 0, 0.6);
    letter-spacing: 0.02em;
}

/* Séparer visuellement les sections */
.copyright br+p {
    margin-top: 18px;
}

/* Mobile: Optimisation responsive premium */
@media (max-width: 768px) {
    .tooltip {
        padding: 3px 10px;
    }

    .copyright {
        width: calc(100% - 32px);
        max-width: none;
        max-height: 85vh;
        overflow-y: auto;
        padding: 24px 26px;
        font-size: 14.5px;
        line-height: 1.75;
        border-radius: 18px;
        letter-spacing: 0.018em;
    }

    .copyright::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .tooltip {
        padding: 4px 12px;
    }

    .copyright {
        width: calc(100% - 20px);
        max-height: 90vh;
        padding: 20px 16px;
        font-size: 14px;
        line-height: 1.75;
        border-radius: 16px;
        letter-spacing: 0.02em;
    }

    .copyright::after {
        display: none;
    }

    .copyright p {
        font-size: 0.98em;
    }

    .copyright p:first-child {
        font-size: 1.18em;
        line-height: 1.35;
    }
}

/* wave Animation */
.parallax>use {
    animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite;
}

.parallax>use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
}

.parallax>use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
}

.parallax>use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
}

.parallax>use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s;
}

.parallax>use:nth-child(5) {
    animation-delay: -6;
    animation-duration: 15s;
}

@keyframes move-forever {
    0% {
        transform: translate3d(-90px, 0, 0);
    }

    100% {
        transform: translate3d(85px, 0, 0);
    }
}

.flex {
    /*Flexbox for containers*/
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.waves {
    z-index: -1;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0%;
    width: 100%;
    min-height: 300px;
    max-height: 300px;
}