* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Palette remappée sur les nouvelles couleurs */
    --primary-color: #069494;       /* Bleu-vert foncé */
    --primary-dark: #066666;        /* Variante plus sombre de --primary-color */
    --accent-color: #FFD700;        /* Or vif */
    --accent-gold: #FFC107;         /* Or plus doux */
    --mucha-green: #4CAF50;         /* Vert vif */
    --mucha-blue: #069494;          /* Bleu-vert */
    --mucha-purple: #66BB6A;        /* Vert clair / pastel */
    --mucha-coral: #FFC107;         /* Pour rappeler accent chaud */
    --mucha-teal: #069494;          /* Bleu-vert secondaire */
    
    --bg-dark: #066666;             /* Fond sombre cohérent avec primary-dark */
    --bg-darker: #004747;           /* Variante encore plus sombre */
    --text-light: #FFD700;          /* Texte clair pour contraste sur bg sombre */
    --text-gray: #FFC107;           /* Texte gris clair/jaune doux */
    --text-muted: #66BB6A;          /* Texte secondaire */
    --border-color: #4CAF50;        /* Bordures */
    --success-color: #4CAF50;       /* Succès vert */
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}


/* AJOUTEZ CES CLASSES MANQUANTES AU DÉBUT DE VOTRE CSS */

/* Système de grille */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: -1rem;
}

.row > * {
    padding: 1rem;
}

.col-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

@media screen and (max-width: 736px) {
    .col-12-xsmall {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* CORRECTION CRITIQUE : Supprimez ou modifiez cette règle */
body.is-preload * {
    /* NE PAS bloquer les interactions */
    animation-delay: 0.25s !important;
    animation-duration: 0.75s !important;
    /* AJOUTEZ CECI pour permettre les interactions après le chargement */
    pointer-events: auto !important;
}

/* Classes utilitaires manquantes */
.gtr-uniform {
    margin: -1rem;
}

.gtr-uniform > * {
    padding: 1rem;
}

.gtr-50 {
    margin: -0.5rem;
}

.gtr-50 > * {
    padding: 0.5rem;
}

/* Styles pour le wrapper */
.wrapper {
    padding: 4rem 0;
}

.wrapper.style1 {
    background: var(--bg-dark);
}

/* Correction pour les champs de formulaire */
.form-control {
    width: 100%;
    padding: 1.1rem 1.5rem;
    background: rgba(15, 12, 10, 0.9);
    border: 2px solid rgba(232, 184, 109, 0.3);
    border-radius: 15px;
    color: var(--text-light);
    font-size: 1rem;
    transition: var(--transition);
    outline: none;
    font-family: 'Georgia', serif;
    /* IMPORTANT : Assurez-vous que les champs sont cliquables */
    pointer-events: auto !important;
    position: relative;
    z-index: 10;
}

.form-control:focus {
    border-color: var(--accent-gold);
    background: rgba(15, 12, 10, 0.95);
    box-shadow: 
        0 0 0 4px rgba(232, 184, 109, 0.2),
        0 0 20px rgba(232, 184, 109, 0.4),
        inset 0 0 10px rgba(232, 184, 109, 0.1);
}

/* Correction pour le label */
.control-label {
    display: block;
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 0.7rem;
    font-size: 1.05rem;
    font-family: 'Georgia', serif;
    text-shadow: 0 0 10px rgba(232, 184, 109, 0.3);
}

/* ----- Boutons : version globale très discrète et petite ----- */

.button,
#nav a.button.primary,
button[type="submit"],
input[type="submit"],
input[type="submit"].primary,
button[type="submit"].primary {
    display: inline-block;                /* <-- inline-block au lieu de flex pour compatibilité input */
    padding: 0.35rem 0.8rem;              /* petit */
    font-size: 0.82rem;                   /* réduit */
    background: linear-gradient(180deg, rgba(18,18,18,0.88), rgba(34,34,34,0.82));
    color: var(--text-gray);
    text-decoration: none;
    border-radius: 12px;
    transition: var(--transition);
    border: 1px solid rgba(255,215,0,0.05);
    cursor: pointer;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.6);
    min-height: 32px;                     /* hauteur de clic minimale */
    line-height: 1.2;                     /* pour centrer le texte */
}

/* Hover : léger contraste */
.button:hover,
#nav a.button.primary:hover,
button[type="submit"]:hover,
input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.55);
    color: var(--text-light);
    background: linear-gradient(180deg, rgba(40,40,40,0.95), rgba(28,28,28,0.9));
}

/* Variante .primary : teinte très discrète */
#nav a.button.primary,
input[type="submit"].primary,
button[type="submit"].primary {
    background: linear-gradient(180deg, rgba(30,40,40,0.86), rgba(40,34,30,0.82));
    border: 1px solid rgba(123,160,91,0.08);
    color: var(--text-gray);
}

/* Adaptation mobile */
@media screen and (max-width: 736px) {
    .button,
    #nav a.button.primary,
    button[type="submit"],
    input[type="submit"] {
        padding: 0.4rem 0.9rem;
        font-size: 0.88rem;
        min-height: 34px;
    }
}


/* Fix clickable submit - avoid pseudo-element overlay blocking clicks */
form::before {
    pointer-events: none; /* IMPORTANT: laisse passer les clics */
    z-index: 0;
}

/* Ensurer que les contrôles du formulaire soient au-dessus */
form .controls,
.form-control,
input[type="submit"],
button[type="submit"] {
    position: relative;
    z-index: 2; /* met les champs et boutons au-dessus de l'overlay */
}

/* Si tu veux forcer le bouton submit à rester cliquable et visible */
input[type="submit"],
button[type="submit"] {
    pointer-events: auto;
}

/* Section content */
#content {
    position: relative;
    z-index: 1;
}

/* Major header */
.major {
    text-align: center;
    margin-bottom: 3rem;
}

.major h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-family: 'Georgia', serif;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--mucha-coral) 50%, var(--mucha-teal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 15px rgba(232, 184, 109, 0.5));
}

.major p {
    color: var(--text-gray);
    font-size: 1.2rem;
    font-style: italic;
}

/* Help block */
.help-block {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Palatino', 'Times New Roman', serif;
    background: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
}

body.is-preload * {
    animation-delay: 0.25s !important;
    animation-duration: 0.75s !important;
}

/* Container principal */
#page-wrapper {
    min-height: 100vh;
    background: 
        radial-gradient(ellipse at top, rgba(193, 126, 60, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at bottom, rgba(123, 160, 91, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
}

/* Header et navigation - Style Art Nouveau */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: linear-gradient(180deg, rgba(26, 20, 16, 0.98) 0%, rgba(26, 20, 16, 0.95) 100%);
    backdrop-filter: blur(15px);
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, var(--mucha-teal), var(--accent-gold), var(--mucha-coral), var(--mucha-purple)) 1;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    transition: var(--transition);
    box-shadow: 0 2px 30px rgba(232, 184, 109, 0.2);
}

#header.scrolled {
    background: linear-gradient(180deg, rgba(15, 12, 10, 0.99) 0%, rgba(15, 12, 10, 0.98) 100%);
    box-shadow: 0 2px 40px rgba(232, 184, 109, 0.3);
}

#logo a {
    color: var(--accent-gold);
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: bold;
    font-family: 'Georgia', serif;
    text-shadow: 
        0 0 10px rgba(255, 215, 0, 0.5),
        0 0 20px rgba(255, 215, 0, 0.3),
        2px 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 2px;
    transition: var(--transition);
    position: relative;
}

#logo a::before {
    content: '🍇';
    margin-right: 8px;
}

#logo a:hover {
    color: var(--mucha-coral);
    text-shadow: 
        0 0 15px rgba(232, 152, 128, 0.8),
        0 0 25px rgba(232, 152, 128, 0.5),
        2px 2px 4px rgba(0, 0, 0, 0.8);
    transform: translateY(-2px);
}

#nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

#nav a {
    color: var(--text-gray);
    text-decoration: none;
    padding: 0.6rem 1.3rem;
    border-radius: 30px;
    transition: var(--transition);
    font-family: 'Georgia', serif;
    font-size: 1rem;
    position: relative;
    background: linear-gradient(135deg, transparent 0%, rgba(123, 160, 91, 0.1) 100%);
    border: 1px solid rgba(232, 184, 109, 0.2);
}

#nav a::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 30px;
    padding: 2px;
    background: linear-gradient(135deg, var(--mucha-teal), var(--mucha-purple));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: var(--transition);
}

#nav a:hover {
    color: var(--accent-gold);
    background: linear-gradient(135deg, rgba(91, 154, 160, 0.2) 0%, rgba(139, 111, 158, 0.2) 100%);
    transform: translateY(-3px);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(232, 184, 109, 0.2);
}

#nav a:hover::before {
    opacity: 1;
}

#nav a.button.primary {
    background: linear-gradient(135deg, var(--mucha-teal) 0%, var(--mucha-purple) 50%, var(--mucha-coral) 100%);
    color: var(--text-light);
    padding: 0.8rem 1.8rem;
    font-weight: 600;
    border: 2px solid var(--accent-gold);
    box-shadow: 
        0 0 20px rgba(91, 154, 160, 0.4),
        0 5px 15px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

#nav a.button.primary:hover {
    background: linear-gradient(135deg, var(--mucha-coral) 0%, var(--accent-gold) 50%, var(--mucha-teal) 100%);
    transform: translateY(-4px);
    box-shadow: 
        0 0 30px rgba(232, 184, 109, 0.6),
        0 8px 25px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Menu mobile */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), var(--mucha-coral));
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(232, 184, 109, 0.5);
}

/* Banner section - Style Art Nouveau */
#banner {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(91, 154, 160, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(139, 111, 158, 0.15) 0%, transparent 50%),
        linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 50%, rgba(193, 126, 60, 0.2) 100%);
    overflow: hidden;
}

#banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(232, 184, 109, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(123, 160, 91, 0.1) 0%, transparent 50%);
    z-index: 1;
}

#banner .content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    padding: 2rem;
    z-index: 2;
    position: relative;
}

#banner .text-content {
    text-align: center;
}

#banner header h2 {
    font-size: 4.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    font-family: 'Georgia', serif;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--mucha-coral) 50%, var(--mucha-teal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(232, 184, 109, 0.6)) drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.8));
    animation: fadeInUp 1s ease-out;
    letter-spacing: 3px;
}

#banner header p {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    text-shadow: 
        0 0 10px rgba(232, 184, 109, 0.5),
        1px 1px 3px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 1s ease-out 0.3s both;
    font-family: 'Georgia', serif;
    font-style: italic;
}

#banner .image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(232, 184, 109, 0.3);
    border: 3px solid transparent;
    background: linear-gradient(var(--bg-dark), var(--bg-dark)) padding-box,
                linear-gradient(135deg, var(--mucha-teal), var(--accent-gold), var(--mucha-coral)) border-box;
}

#banner .image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(91, 154, 160, 0.2) 0%, transparent 50%, rgba(232, 152, 128, 0.2) 100%);
    z-index: 2;
}

#banner .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    animation: fadeInRight 1s ease-out 0.6s both;
}

#banner .image:hover img {
    transform: scale(1.08);
}

.goto-next {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--accent-gold);
    font-size: 2.5rem;
    text-decoration: none;
    animation: bounce 2s infinite;
    z-index: 2;
    filter: drop-shadow(0 0 10px rgba(232, 184, 109, 0.8));
    transition: var(--transition);
}

.goto-next:hover {
    color: var(--mucha-coral);
    filter: drop-shadow(0 0 20px rgba(232, 152, 128, 1));
    transform: translateX(-50%) scale(1.2);
}

/* Sections spotlight - Style Art Nouveau */
.spotlight {
    position: relative;
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.spotlight-content {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

.spotlight.style1 {
    background: 
        radial-gradient(ellipse at 30% 50%, rgba(91, 154, 160, 0.1) 0%, transparent 60%),
        var(--bg-dark);
}

.spotlight.style2 {
    background: 
        radial-gradient(ellipse at 70% 50%, rgba(139, 111, 158, 0.1) 0%, transparent 60%),
        linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
}

.spotlight.style3 {
    background: 
        radial-gradient(ellipse at 50% 30%, rgba(123, 160, 91, 0.1) 0%, transparent 60%),
        var(--bg-dark);
}

.image-section {
    position: relative;
    overflow: hidden;
}

.image-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(91, 154, 160, 0.3) 0%, transparent 40%, rgba(232, 152, 128, 0.2) 100%);
    z-index: 2;
    mix-blend-mode: overlay;
}

.image-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(232, 184, 109, 0.03) 2px,
        rgba(232, 184, 109, 0.03) 4px
    );
    z-index: 3;
}

.image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.spotlight:hover .image-section img {
    transform: scale(1.1);
}

.text-section {
    display: flex;
    align-items: center;
    padding: 4rem;
    background: 
        linear-gradient(135deg, rgba(15, 12, 10, 0.95) 0%, rgba(26, 20, 16, 0.95) 100%);
    backdrop-filter: blur(20px);
    border-left: 4px solid transparent;
    border-image: linear-gradient(180deg, var(--mucha-teal), var(--accent-gold), var(--mucha-coral)) 1;
    position: relative;
}

.spotlight.right .text-section {
    border-left: none;
    border-right: 4px solid transparent;
    border-image: linear-gradient(180deg, var(--mucha-purple), var(--accent-gold), var(--mucha-green)) 1;
}

.text-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(232, 184, 109, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(91, 154, 160, 0.08) 0%, transparent 50%);
    z-index: -1;
}

.content-inner {
    width: 100%;
}

.spotlight header h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-family: 'Georgia', serif;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--mucha-coral) 50%, var(--mucha-teal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 15px rgba(232, 184, 109, 0.5));
    letter-spacing: 2px;
}

.spotlight header p {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    text-shadow: 0 0 10px rgba(232, 184, 109, 0.3);
    font-style: italic;
}

.spotlight .content-inner p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.9;
    font-size: 1.1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.spotlight .content-inner ul {
    list-style: none;
    margin: 2rem 0;
}

.spotlight .content-inner li {
    color: var(--text-light);
    margin-bottom: 1.2rem;
    padding-left: 2.5rem;
    position: relative;
    font-size: 1.05rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1.7;
}

.spotlight .content-inner li::before {
    content: '🍇';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.3rem;
    filter: drop-shadow(0 0 5px rgba(123, 160, 91, 0.8));
}

/* Buttons - Style Art Nouveau éclatant */
.button {
    display: inline-block;
    padding: 1.1rem 2.5rem;
    background: linear-gradient(135deg, var(--mucha-teal) 0%, var(--mucha-purple) 50%, var(--mucha-coral) 100%);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 35px;
    transition: var(--transition);
    border: 2px solid var(--accent-gold);
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 1rem 0;
    font-family: 'Georgia', serif;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 0 20px rgba(91, 154, 160, 0.4),
        0 5px 15px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.button:hover::before {
    width: 300px;
    height: 300px;
}

.button:hover {
    background: linear-gradient(135deg, var(--mucha-coral) 0%, var(--accent-gold) 50%, var(--mucha-teal) 100%);
    transform: translateY(-4px);
    box-shadow: 
        0 0 40px rgba(232, 184, 109, 0.7),
        0 10px 30px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: var(--mucha-coral);
}

/* Section Four - Contacts */
#four {
    padding: 6rem 0;
    background: 
        radial-gradient(ellipse at 50% 50%, rgba(139, 111, 158, 0.1) 0%, transparent 60%),
        var(--bg-darker);
}

#four .major h2 {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    font-family: 'Georgia', serif;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--mucha-purple) 50%, var(--mucha-teal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(232, 184, 109, 0.6));
    letter-spacing: 2px;
}

#four .major p {
    text-align: center;
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    font-style: italic;
}

.contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-card {
    text-align: center;
    padding: 2.5rem;
    background: 
        linear-gradient(135deg, rgba(26, 20, 16, 0.9) 0%, rgba(15, 12, 10, 0.9) 100%);
    border-radius: 20px;
    transition: var(--transition);
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
}

.contact-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, var(--mucha-teal), var(--accent-gold), var(--mucha-coral));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.5;
    transition: var(--transition);
}

.contact-card:hover {
    background: 
        linear-gradient(135deg, rgba(91, 154, 160, 0.2) 0%, rgba(139, 111, 158, 0.2) 100%),
        linear-gradient(135deg, rgba(26, 20, 16, 0.95) 0%, rgba(15, 12, 10, 0.95) 100%);
    transform: translateY(-15px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(232, 184, 109, 0.4);
}

.contact-card:hover::before {
    opacity: 1;
}

.contact-card i {
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    transition: var(--transition);
    filter: drop-shadow(0 0 10px rgba(232, 184, 109, 0.6));
}

.contact-card:hover i {
    transform: scale(1.3) rotate(10deg);
    filter: drop-shadow(0 0 20px rgba(232, 152, 128, 1));
}

.contact-card h3 {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-family: 'Georgia', serif;
    font-size: 1.3rem;
}

.contact-card a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
}

.contact-card a:hover {
    color: var(--accent-gold);
    text-shadow: 0 0 10px rgba(232, 184, 109, 0.8);
}

/* Video container */
.video-container {
    width: 100%;
    margin: 2rem 0;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    margin-bottom: 15px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(232, 184, 109, 0.3);
    border: 3px solid transparent;
    background: linear-gradient(var(--bg-dark), var(--bg-dark)) padding-box,
                linear-gradient(135deg, var(--mucha-teal), var(--accent-gold), var(--mucha-coral)) border-box;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.copy-btn {
    display: block;
    margin: 0 auto;
    padding: 13px 30px;
    background: linear-gradient(135deg, var(--mucha-green) 0%, var(--mucha-teal) 100%);
    color: white;
    border: 2px solid var(--accent-gold);
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    transition: var(--transition);
    font-weight: 600;
    font-family: 'Georgia', serif;
    box-shadow: 
        0 0 20px rgba(123, 160, 91, 0.4),
        0 5px 15px rgba(0, 0, 0, 0.3);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.copy-btn:hover {
    background: linear-gradient(135deg, var(--mucha-teal) 0%, var(--mucha-green) 100%);
    transform: translateY(-3px);
    box-shadow: 
        0 0 30px rgba(91, 154, 160, 0.6),
        0 8px 20px rgba(0, 0, 0, 0.4);
    border-color: var(--mucha-coral);
}

.notification {
    text-align: center;
    color: var(--mucha-green);
    margin-top: 10px;
    display: none;
    padding: 1rem;
    background: rgba(123, 160, 91, 0.2);
    border-radius: 15px;
    border: 2px solid rgba(123, 160, 91, 0.5);
    box-shadow: 0 0 20px rgba(123, 160, 91, 0.3);
    font-weight: 600;
}

/* Section Five - Contact */
#five {
    padding: 6rem 0;
    background: 
        radial-gradient(ellipse at 30% 50%, rgba(193, 126, 60, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 50%, rgba(139, 111, 158, 0.15) 0%, transparent 60%),
        linear-gradient(135deg, var(--bg-dark) 0%, rgba(193, 126, 60, 0.2) 100%);
    text-align: center;
}

#five header h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    font-family: 'Georgia', serif;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--mucha-coral) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 15px rgba(232, 184, 109, 0.5));
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Formulaires de contact - Style Art Nouveau */
form {
    background: 
        linear-gradient(135deg, rgba(26, 20, 16, 0.9) 0%, rgba(15, 12, 10, 0.9) 100%);
    backdrop-filter: blur(20px);
    border: 3px solid transparent;
    background-clip: padding-box;
    border-radius: 20px;
    padding: 2.5rem;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
}

form::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 3px;
    background: linear-gradient(135deg, var(--mucha-teal), var(--accent-gold), var(--mucha-coral), var(--mucha-purple));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.6;
}

.form-group {
    margin-bottom: 1.8rem;
}

label {
    display: block;
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 0.7rem;
    font-size: 1.05rem;
    font-family: 'Georgia', serif;
    text-shadow: 0 0 10px rgba(232, 184, 109, 0.3);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="number"],
textarea,
select {
    width: 100%;
    padding: 1.1rem 1.5rem;
    background: rgba(15, 12, 10, 0.9);
    border: 2px solid rgba(232, 184, 109, 0.3);
    border-radius: 15px;
    color: var(--text-light);
    font-size: 1rem;
    transition: var(--transition);
    outline: none;
    font-family: 'Georgia', serif;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
textarea:focus,
select:focus {
    border-color: var(--accent-gold);
    background: rgba(15, 12, 10, 0.95);
    box-shadow: 
        0 0 0 4px rgba(232, 184, 109, 0.2),
        0 0 20px rgba(232, 184, 109, 0.4),
        inset 0 0 10px rgba(232, 184, 109, 0.1);
}

textarea {
    min-height: 140px;
    resize: vertical;
    font-family: 'Georgia', serif;
}

input::placeholder,
textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.8;
    font-style: italic;
}

input[type="submit"],
button[type="submit"] {
    background: linear-gradient(135deg, var(--mucha-teal) 0%, var(--mucha-purple) 50%, var(--mucha-coral) 100%);
    color: var(--text-light);
    border: 2px solid var(--accent-gold);
    padding: 1.2rem 2.5rem;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
    width: auto;
    display: inline-block;
    font-family: 'Georgia', serif;
    box-shadow: 
        0 0 20px rgba(91, 154, 160, 0.4),
        0 5px 15px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

input[type="submit"]:hover,
button[type="submit"]:hover {
    background: linear-gradient(135deg, var(--mucha-coral) 0%, var(--accent-gold) 50%, var(--mucha-teal) 100%);
    transform: translateY(-3px);
    box-shadow: 
        0 0 40px rgba(232, 184, 109, 0.7),
        0 10px 25px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: var(--mucha-coral);
}

/* Copyright et footer */
.copyright {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 2rem 0;
    padding: 1rem;
}

.copyright li {
    color: var(--text-gray);
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    background: rgba(232, 184, 109, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(232, 184, 109, 0.2);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Responsive Design */
@media screen and (max-width: 980px) {
    /* Navigation mobile */
    #nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(180deg, rgba(15, 12, 10, 0.99) 0%, rgba(15, 12, 10, 0.98) 100%);
        border-top: 2px solid transparent;
        border-image: linear-gradient(90deg, var(--mucha-teal), var(--accent-gold), var(--mucha-coral)) 1;
        padding: 1.5rem;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    }
    
    #nav.active {
        display: block;
    }
    
    #nav ul {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    #nav a {
        display: block;
        text-align: center;
        padding: 1rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    /* Banner mobile */
    #banner .content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    #banner header h2 {
        font-size: 2.8rem;
    }
    
    #banner header p {
        font-size: 1.2rem;
    }
    
    /* Spotlight mobile */
    .spotlight {
        min-height: auto;
        padding: 2rem 0;
    }
    
    .spotlight-content {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .image-section {
        height: 50vh;
        order: -1;
    }
    
    .text-section {
        padding: 2rem;
        border: none;
        border-top: 4px solid transparent;
        border-image: linear-gradient(90deg, var(--mucha-teal), var(--accent-gold), var(--mucha-coral)) 1;
    }
    
    .spotlight.right .text-section {
        border-right: none;
        border-top: 4px solid transparent;
        border-image: linear-gradient(90deg, var(--mucha-purple), var(--accent-gold), var(--mucha-green)) 1;
    }
    
    .spotlight header h2 {
        font-size: 2.2rem;
    }
    
    .spotlight header p {
        font-size: 1.1rem;
    }
    
    .contacts-grid {
        grid-template-columns: 1fr;
    }
    
    #four .major h2 {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 736px) {
    #header {
        padding: 0 1rem;
        height: 60px;
    }
    
    #logo a {
        font-size: 1.3rem;
    }
    
    #banner {
        min-height: 100vh;
    }
    
    #banner header h2 {
        font-size: 2.2rem;
    }
    
    #banner header p {
        font-size: 1.1rem;
    }
    
    .text-section {
        padding: 1.5rem;
    }
    
    .spotlight header h2 {
        font-size: 1.9rem;
    }
    
    .spotlight header p {
        font-size: 1rem;
    }
    
    #four .major h2 {
        font-size: 2rem;
    }
    
    #four .major p {
        font-size: 1.1rem;
    }
    
    #five header h2 {
        font-size: 2.2rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    form {
        padding: 1.5rem;
    }
    
    .button {
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }
    
    .goto-next {
        font-size: 2rem;
    }
}

@media screen and (max-width: 480px) {
    #banner header h2 {
        font-size: 1.8rem;
    }
    
    .spotlight header h2 {
        font-size: 1.6rem;
    }
    
    #four .major h2,
    #five header h2 {
        font-size: 1.8rem;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
}

/* Scrollbar personnalisée - Style Art Nouveau */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-darker);
    border-left: 1px solid rgba(232, 184, 109, 0.1);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--mucha-teal), var(--accent-gold), var(--mucha-coral));
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(232, 184, 109, 0.5);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--mucha-coral), var(--accent-gold), var(--mucha-teal));
    box-shadow: 0 0 15px rgba(232, 184, 109, 0.8);
}

/* Sélection de texte */
::selection {
    background: rgba(232, 184, 109, 0.3);
    color: var(--text-light);
}

::-moz-selection {
    background: rgba(232, 184, 109, 0.3);
    color: var(--text-light);
}

  
  .fa-bolt {
	
	color: #e60073;
	text-align: center;
	-webkit-animation: glow 1s ease-in-out infinite alternate;
	-moz-animation: glow 1s ease-in-out infinite alternate;
	animation: glow 1s ease-in-out infinite alternate;
  }

  .fa-fire {

	font-size: 26px;
	color: #ffd700;

  }
  
    .fa-fire-flame-simple {

	font-size: 26px;
	color: yellow;

  }
  
  
  
      .fa-fire {
 
	font-size: 26px;
	color: #ff8000;
/* text-shadow: 0 0 0.2em white, 0 0 0.2em white,  0 0 0.2em white; */

  }
  
        .fa-hotjar{
 
	font-size: 26px;
	color: #ff8000;
text-shadow: 0 0 0.2em white, 0 0 0.2em white,  0 0 0.2em white;

  }

.fa-fire-flame-curved {
    font-size: 26px;
    color: green;
    text-shadow: 
        0 0 0.5em white,
        0 0 1.5em green,
        0 0 2em green,
        0 0 0.5em white;
}

.fa-sun {
    font-size: 26px;
    color: yellowred;
    text-shadow: 
        0 0 0.5em yellow,
        0 0 1.5em red,
        0 0 2em red,
        0 0 0.5em yellow;
}

  
  .fa-glass-cheers {
	font-size: 26px;
	color: #ffd700;

  }
  
  
  
  .fa-walking,.fa-hand-scissors, .fa-dumbbell, .fa-shopping-basket, .fa-truck-moving, .fa-jedi, .fa-drumstick-bite, .fa-seedling, .fa-truck
	{ 
	color: green;
		  font-size: 26px;    
  }
  

.fa-star
{  
font-size: 26px; color: yellow;
}

.fa-drumstick-bite
{
	font-size: 26px; color: rgb(248, 129, 86);
}



.fa-seedling
{
font-size: 26px; color: greenyellow;

}

.fa-star-half
{
	font-size: 26px; color: yellow;
}


.fa-star-half-alt
{
	font-size: 26px; color: yellow;
}


.fa-watchman-monitoring {
    font-size: 26px;
    color: #00FFFF; /* Cyan (très lumineux sur fond noir) */
    text-shadow: 
        0 0 0.5em white,
        0 0 1.5em #00FFFF,
        0 0 2em #00FFFF,
        0 0 0.5em white;
}


  .fa-skull-crossbones   {
   
	font-size: 24px;
	color: white;
	  
  }


  .fa-chess   {
     
	font-size: 26px;
	color: #DAA520
	  
  }
  

  .fa-male   {
    
		  font-size: 26px;
		  color: #18bfef;
  
  }
  
  .fa-female   {
  
  
		  font-size: 26px;
		  color: pink;
  
  }
  
  
  .fa-check   {
  
  
		  font-size: 24px;
		  color: green;
  
  }

    
  .fa-check-circle, .fa-handshake , .fa-globe-africa, .fa-flag,  .fa-users   {
  
  
	font-size: 28px;
	color: green;

} 


  
  .fa-times-circle, .fa-exclamation-circle, .fa-times
    { 
		  font-size: 28px;
		  color:#e44c65;
  
  }

  .fa-trash-alt  {
  
  
		  font-size: 26px;
		  color: #e44c65;
  
  }
  
  .fa-carrot   {
  

		  font-size: 26px;
		  color: orange;
		  size: 3em;
  
  }
   
  
  .fa-frog,  .fa-ghost, .fa-earlybirds    {
  
	  color:#46B414;
	
	  font-size: 26px;
  
  } 



  .fa-taxi, .fa-thumbs-up  {
  
	text-shadow: 0 0 0.2em white, 0 0 0.2em white,  0 0 0.2em white;		  
	font-size: 26px;  color: green;
 
  }
  
  .fa-thumbs-down   {
  
		  text-shadow: 0 0 0.2em white, 0 0 0.2em white,  0 0 0.2em white;
		  font-size: 26px;
		 
		  color: #e44c65;
		  /*text-align: center;*/
  
  }
  
  .fa-jedi,   .fa-jedi-order, .fa-critical-role    {
  
		  text-shadow: 0 0 0.2em white, 0 0 0.2em white,  0 0 0.2em white;
		  font-size: 26px;
		  
		  color: black;
		  /*text-align: center;*/
  
  }
  


.fa-angrycreative
{
  
	font-size: 26px;
	color: rgb(131, 255, 131);


}

.eye
{
  
	font-size: 26px;
	color: rgb(131, 255, 131);


}



.fa-pepper-hot   {
  
	font-size: 26px;
	color: red;


}


.fa-battle-net   {
  
	
	font-size: 26px;
	
	color: #18bfef;
	
}

.fa-flask   {
 
	font-size: 26px;
	color: #9def18;
}


.fa-dragon   {
  
	text-shadow: 0 0 0.2em white, 0 0 0.2em white,  0 0 0.2em white;
	font-size: 26px;	
	color: green;
	

}


.fa-dove   {
  
	font-size: 26px;
	
	color: white;
	/*text-align: center;*/

}

.fa-cocktail   {
  
	text-shadow: 0 0 0.2em white, 0 0 0.2em white,  0 0 0.2em white;
	font-size: 26px;
	
	color: rgb(252, 255, 102);
	/*text-align: center;*/

}



.fa-utensils
{
  
	
	font-size: 26px;
	
	color: rgb(252, 255, 102);
	/*text-align: center;*/

}

/* Boutons de formulaire avec contour blanc toujours visible */
form input[type="submit"],
form button[type="submit"] {
    padding: 0.6rem 1.4rem;
    font-size: 0.95rem;
    min-height: 38px;
    line-height: 1;
    font-weight: 600;
    display: inline-block;
    cursor: pointer;
    border-radius: 35px;

    /* Fond identique au bouton login */
    background: linear-gradient(135deg, var(--mucha-teal) 0%, var(--mucha-purple) 50%, var(--mucha-coral) 100%);
    color: var(--text-light);

    /* Contour blanc toujours visible */
    border: 1px solid #fff;  /* ici on met blanc pur */
    box-shadow: 0 0 0 rgba(0,0,0,0); /* on retire les ombres qui cachent le contour */

    transition: all 0.3s ease;
}

/* Hover : légère animation */
form input[type="submit"]:hover,
form button[type="submit"]:hover {
    background: linear-gradient(135deg, var(--mucha-coral) 0%, var(--accent-gold) 50%, var(--mucha-teal) 100%);
    transform: translateY(-3px);
    box-shadow: 0 0 8px rgba(255,255,255,0.6); /* halo léger autour */
}



/* Mobile tweak */
@media screen and (max-width: 736px) {
    form input[type="submit"],
    form button[type="submit"] {
        padding: 0.65rem 1.25rem;
        font-size: 0.98rem;
        min-height: 42px;
    }
}


button,
input[type="submit"] {
    outline: none; /* supprime le contour par défaut du navigateur */
    border: 2px solid transparent; /* garde une base pour le style sans changer l'aspect */
    transition: border-color 0.3s ease, box-shadow 0.3s ease; /* effet smooth */
}

button:focus,
input[type="submit"]:focus {
    border-color: #fff; /* couleur de contour au focus, tu peux adapter */
    box-shadow: 0 0 10px #fff, 0 0 20px #ff69b4; /* glow style Art Nouveau au focus */
}
