@import url('https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400..700;1,400..700&family=Dancing+Script:wght@400..700&family=Lora:ital,wght@0,400..700;1,400..700&display=swap');
:root{
    /* Palette de couleurs principale */
    --primary-light: #EEC487;      /* Beige/doré clair */
    --primary-dark: #734D12;       /* Marron foncé */
    --primary-medium: #856043;     /* Marron moyen */
    --accent-orange: #C36940;      /* Orange/terracotta */
    --accent-grey: #C1AF9C;        /* Gris/beige */
    --dark-brown: #55362C;         /* Marron très foncé */
    --white: #FFFFFF;
    --black: #000000;
    
    /* Aliases pour la rétrocompatibilité */
    --brown-theme: #734D12;
    --light-theme: #EEC487;
    --logo-theme: #856043;
    
    /* Polices */
    --dancing-style: 'Dancing Script', cursive;
    --lora-font: "Lora", serif;
    --arimo-font: "Arimo", sans-serif;
}

*{
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

a{
    color: black;
}

/*contact*/
.header-mobile{
    position: relative;
    background: linear-gradient(135deg, var(--logo-theme) 0%, var(--brown-theme) 100%);
    color: white;
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header-mobile h1{
    color: var(--light-theme);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/*Menu dréoulant*/
.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    width: 280px;
    border-radius: 15px;
    display: none;
    z-index: 100;
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.dropdown-menu.active {
    display: block;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-menu li {
    padding: 18px 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu li:hover {
    background: rgba(238, 196, 135, 0.1);
    transform: translateX(5px);
}

.dropdown-menu a {
    text-decoration: none;
    color: var(--brown-theme);
    font-weight: 600;
    display: block;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

.dropdown-menu a:hover {
    color: var(--logo-theme);
    transform: translateX(3px);
}
/*Fin menu déroulane*/

.contact{
    position: relative;
    display: flex;
    width: 100%;
    height: 120px;
    justify-content: space-between;
    color: black;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
    padding: 35px 0px 25px 0px;
    box-shadow: 0 8px 20px rgba(115, 77, 18, 0.15);
    border-bottom: 3px solid var(--primary-dark);
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(238, 196, 135, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(115, 77, 18, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.mail-tel{
    display: flex;
    gap: 10px;
    width: 90dvw;
    margin-left: 5dvw;
    position: relative;
    z-index: 2;
}

.mail-tel a{
    text-decoration: none;
    font-weight: 700;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    color: var(--brown-theme);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 15px;
    border-radius: 25px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(238, 196, 135, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.mail-tel a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.9);
}

.mail-tel a svg {
    transition: all 0.3s ease;
}

.mail-tel a:hover svg {
    transform: scale(1.1);
    color: var(--logo-theme);
}

nav a{
    color: white;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    font-weight: 600;
    padding: 8px 15px;
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

nav a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

nav a:hover::before {
    opacity: 1;
}

.header-social-media-logo{
    display: flex;
    width: 180px;
    justify-content: space-around;
    margin-right: 2dvw;
    position: relative;
    z-index: 2;
}

.header-social-media-logo a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(238, 196, 135, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.header-social-media-logo a:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 1);
}

.header-social-media-logo a svg {
    transition: all 0.3s ease;
    color: var(--brown-theme);
}

.header-social-media-logo a:hover svg {
    color: var(--logo-theme);
    transform: scale(1.1);
}

/*fin contact*/

/*début barre navigation*/
.barre-nav{
    position: absolute;
    display: flex;
    width: 85%;
    height: 140px;
    margin: -5em 0em 0em 7.5%;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #856043 0%, #856043 60%, #EEC487 100%);
    border-radius: 25px;
    z-index: 10;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.barre-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 25px;
    z-index: -1;
}

.barre-nav::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: rotate 8s linear infinite;
    z-index: -1;
    opacity: 0.3;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

nav{
    display: flex;
    justify-content: space-between;
    width: 65%;
    margin-right: 8dvw;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}

.barre-nav img{
    margin-left: 3em;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.barre-nav img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.3));
}

/* Responsive pour maintenir la taille du logo */
@media screen and (max-width: 1200px) {
    .barre-nav img {
        width: 110px !important;
        height: 120px !important;
        margin-left: 2em;
    }
}

@media screen and (max-width: 768px) {
    .barre-nav {
        width: 90%;
        margin: -4em 0em 0em 5%;
        height: 120px;
    }
    
    .barre-nav img {
        width: 100px !important;
        height: 110px !important;
        margin-left: 1.5em;
    }
    
    nav {
        width: 60%;
        margin-right: 5dvw;
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 480px) {
    .barre-nav {
        width: 95%;
        margin: -3.5em 0em 0em 2.5%;
        height: 100px;
    }
    
    .barre-nav img {
        width: 100px !important;
        height: 110px !important;
        margin-left: 1em;
    }
    
    nav {
        width: 55%;
        margin-right: 3dvw;
        font-size: 0.8rem;
    }
}
/*fin barre navigation*/

/*début banderolle*/
.banderolle{
    width: 100vw;
    height: 100vh;
    position: relative;
    z-index: 7;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-background{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.brand-background img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) contrast(1.1);
}

.ecran{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(115, 77, 18, 0.3) 50%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 2;
}

.brand{
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    max-width: 1200px;
    padding: 0 2rem;
    animation: fadeInUp 1s ease-out;
}

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

.brand h1{
    font-size: 6rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    font-weight: 700;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #EEC487 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        filter: drop-shadow(0 0 20px rgba(238, 196, 135, 0.3));
    }
    to {
        filter: drop-shadow(0 0 30px rgba(238, 196, 135, 0.6));
    }
}

.brand-buttons{
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.brand button{
    border: none;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 50px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 200px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.brand button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 50px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.brand button:hover::before {
    opacity: 1;
}

.brand-button:hover{
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.brand a:first-of-type button{
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent-orange) 100%);
    color: white;
    box-shadow: 0 12px 30px rgba(115, 77, 18, 0.35);
}

.brand a:first-of-type button:hover {
    box-shadow: 0 18px 45px rgba(115, 77, 18, 0.45);
}

.brand a:last-of-type button{
    background: var(--primary-light);
    color: var(--primary-dark);
    border: 2px solid var(--primary-dark);
    backdrop-filter: blur(10px);
}

.brand a:last-of-type button:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

@media screen and (max-width:768px) { 
    .banderolle{
        height: 80vh;
    }
    
    .brand h1{
        font-size: 4rem;
        margin-bottom: 1.5rem;
    }
    
    .brand-buttons{
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .brand button{
        padding: 1rem 2rem;
        font-size: 1rem;
        min-width: 180px;
    }
}

@media screen and (max-width:480px) {
    .banderolle{
        height: 70vh;
    }
    
    .brand h1{
        font-size: 3rem;
        margin-bottom: 1rem;
    }
    
    .brand-buttons{
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .brand button{
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        min-width: 160px;
    }
}
/*fin banderolle*/

/*début mission*/

.missions{
    background: linear-gradient(135deg, #f5f0eb 0%, #ede5dd 25%, #e5ddd5 50%, #ede5dd 75%, #f5f0eb 100%);
    padding: 2rem 0;
    margin-top: -1rem;
    position: relative;
    overflow: hidden;
}

.missions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(238, 196, 135, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(115, 77, 18, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.missions::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(115,77,18,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.missions h1{
    text-align: center;
    background: linear-gradient(135deg, #734D12 0%, #C36940 50%, #EEC487 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 3.5em;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        filter: drop-shadow(0 0 20px rgba(238, 196, 135, 0.3));
    }
    to {
        filter: drop-shadow(0 0 30px rgba(238, 196, 135, 0.6));
    }
}

.missions .card{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 4rem;
    margin-top: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.missions .details-mission{
    text-align: center;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 25px;
    padding: 3rem 2.5rem;
    border: 1px solid rgba(238, 196, 135, 0.2);
    backdrop-filter: blur(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.missions .details-mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(238, 196, 135, 0.05), rgba(115, 77, 18, 0.05));
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.missions .details-mission:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.15),
        0 0 40px rgba(238, 196, 135, 0.2);
}

.missions .details-mission:hover::before {
    opacity: 1;
}

.missions img{
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.missions .details-mission:hover img {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.details-mission a{
    background: linear-gradient(135deg, var(--brown-theme), var(--logo-theme));
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 1rem;
    box-shadow: 0 8px 20px rgba(115, 77, 18, 0.3);
}

.details-mission a:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(115, 77, 18, 0.4);
    color: white;
}
@media screen and (max-width:768px) { 
    .missions {
        padding: 3rem 0;
    }
    
    .missions h1{
        font-size: 2.5em;
        margin-bottom: 2rem;
    }
    
    .missions .card{
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
        padding: 0 1rem;
    }
    
    .missions .details-mission{
        padding: 2rem 1.5rem;
    }
    
    .missions img{
        height: 250px;
    }
}

@media screen and (max-width:480px) {
    .missions h1{
        font-size: 2em;
    }
    
    .missions .details-mission{
        padding: 1.5rem 1rem;
    }
    
    .missions img{
        height: 200px;
    }
}

/*fin mission*/

/*début chiffre asso*/
.asso-chiffre{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: -80px auto 60px auto;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
    border-radius: 30px;
    backdrop-filter: blur(20px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.asso-chiffre::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(238, 196, 135, 0.05) 0%, rgba(115, 77, 18, 0.05) 100%);
    border-radius: 30px;
    z-index: -1;
}

.asso-chiffre::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(238, 196, 135, 0.1), transparent);
    animation: rotate 8s linear infinite;
    z-index: -1;
    opacity: 0.3;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.asso-chiffre-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    border: 1px solid rgba(238, 196, 135, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.asso-chiffre-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(238, 196, 135, 0.1), rgba(115, 77, 18, 0.1));
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.asso-chiffre-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 30px rgba(238, 196, 135, 0.2);
}

.asso-chiffre-item:hover::before {
    opacity: 1;
}

.asso-chiffre-item h1{
    background: linear-gradient(135deg, var(--brown-theme) 0%, var(--logo-theme) 50%, var(--light-theme) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 3.5em;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.asso-chiffre-item:hover h1 {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(238, 196, 135, 0.3));
}

.asso-chiffre-item p{
    font-size: 1.1em;
    color: var(--brown-theme);
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.asso-chiffre-item:hover p {
    opacity: 1;
    color: var(--logo-theme);
}

/* Responsive pour asso-chiffre */
@media screen and (max-width: 768px) {
    .asso-chiffre {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin: -60px auto 40px auto;
        padding: 2rem 1rem;
    }
    
    .asso-chiffre-item {
        padding: 1.5rem 0.5rem;
    }
    
    .asso-chiffre-item h1 {
        font-size: 2.5em;
    }
    
    .asso-chiffre-item p {
        font-size: 0.9em;
    }
}

@media screen and (max-width: 480px) {
    .asso-chiffre {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: -50px auto 30px auto;
        padding: 1.5rem 1rem;
    }
    
    .asso-chiffre-item h1 {
        font-size: 2.2em;
    }
    
    .asso-chiffre-item p {
        font-size: 0.85em;
    }
}

/*fin chiffr asso*/

/*nouveautés*/
.nouveautés{
    background: linear-gradient(135deg, #4a5568 0%, #718096 25%, #a0aec0 50%, #718096 75%, #4a5568 100%);
    color: var(--brown-theme);
    padding: 3rem 0;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}

.nouveautés::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(238, 196, 135, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(115, 77, 18, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.nouveautés::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(238,196,135,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.nouveautés-card{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.nouveautés h1{
    font-size: 4em;
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: linear-gradient(135deg, #EEC487 0%, #D4B896 50%, #B8860B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
    animation: glow 3s ease-in-out infinite alternate;
}

.nouveautés h2{
    margin-bottom: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: linear-gradient(135deg, #EEC487 0%, #B8860B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.8em;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.nouveautés img{
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 35px rgba(45, 55, 72, 0.3);
}

.nouveautés-card .card{
    text-align: center;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 25px;
    padding: 2.5rem;
    border: 1px solid rgba(238, 196, 135, 0.15);
    backdrop-filter: blur(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 20px 40px rgba(45, 55, 72, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.nouveautés-card .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(238, 196, 135, 0.05), rgba(115, 77, 18, 0.05));
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nouveautés-card .card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 30px 60px rgba(45, 55, 72, 0.3),
        0 0 40px rgba(238, 196, 135, 0.2);
}

.nouveautés-card .card:hover::before {
    opacity: 1;
}

.nouveautés-card .card:hover img {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(45, 55, 72, 0.4);
}

@media screen and (max-width:768px) { 
    .nouveautés{
        padding: 3rem 0;
    }
    
    .nouveautés h1{
        font-size: 2.5em;  
        margin-bottom: 1.5rem;
    }
    
    .nouveautés-card{
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
        padding: 0 1rem;
    }
    
    .nouveautés h2{
        font-size: 1.4em;
    }
    
    .nouveautés .card{
        padding: 2rem 1.5rem;
    }
    
    .nouveautés img{
        height: 200px;
    }
}
/*fin nouveautés*/

/*TESTIMONIALS*/
.swiper{
    background: linear-gradient(135deg, #8b7355 0%, #a68b5b 25%, #c4a484 50%, #a68b5b 75%, #8b7355 100%);
    position: relative;
    padding: 3rem 0;
    overflow: hidden;
}

.swiper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(238, 196, 135, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(115, 77, 18, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(133, 96, 67, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.swiper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(238,196,135,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.swiper h1{
    font-size: 3.5em;
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: linear-gradient(135deg, #EEC487 0%, #D4B896 50%, #B8860B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
    text-shadow: none;
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        filter: drop-shadow(0 0 20px rgba(238, 196, 135, 0.3));
    }
    to {
        filter: drop-shadow(0 0 30px rgba(238, 196, 135, 0.6));
    }
}

.swiper-slide{
    text-align: center;
    margin-top: 2em;
    margin-bottom: 3em;
    width: 100%;
    position: relative;
    z-index: 2;
}

.slide-card-item{
    width: 65%;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    padding: 3.5rem 3rem;
    box-shadow: 
        0 25px 50px rgba(139, 115, 85, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(238, 196, 135, 0.25);
    position: relative;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    overflow: hidden;
}

.slide-card-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(238, 196, 135, 0.1), rgba(115, 77, 18, 0.1));
    border-radius: 30px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.slide-card-item::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(238, 196, 135, 0.1), transparent);
    animation: rotate 4s linear infinite;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.slide-card-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 35px 70px rgba(139, 115, 85, 0.4),
        0 0 50px rgba(238, 196, 135, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.slide-card-item:hover::before {
    opacity: 1;
}

.slide-card-item:hover::after {
    opacity: 1;
}

.slide-card-item img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 2rem;
    border: 3px solid transparent;
    background: linear-gradient(135deg, #EEC487, #B8860B) border-box;
    box-shadow: 
        0 10px 30px rgba(139, 115, 85, 0.3),
        0 0 20px rgba(238, 196, 135, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.slide-card-item img::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, #EEC487, #B8860B);
    border-radius: 50%;
    z-index: -1;
}

.slide-card-item:hover img {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 
        0 15px 40px rgba(139, 115, 85, 0.4),
        0 0 30px rgba(238, 196, 135, 0.5);
}

.slide-card-item h3 {
    background: linear-gradient(135deg, #EEC487 0%, #B8860B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.4em;
    margin-bottom: 0.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.slide-card-item span {
    color: rgba(238, 196, 135, 0.8);
    font-size: 0.95em;
    font-style: italic;
    display: block;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.slide-card-item svg {
    color: #EEC487;
    margin-bottom: 1.5rem;
    opacity: 0.8;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
    transition: all 0.3s ease;
}

.slide-card-item:hover svg {
    transform: scale(1.1);
    opacity: 1;
}

.slide-card-item p {
    font-size: 1.15em;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    position: relative;
    padding: 0 1.5rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.slide-card-item span{
    font-weight: normal;
}

.swiper-button-prev, .swiper-button-next {
    color: var(--brown-theme) !important;
    background: rgba(255, 255, 255, 0.9) !important;
    border-radius: 50% !important;
    width: 50px !important;
    height: 50px !important;
    box-shadow: 0 8px 20px rgba(115, 77, 18, 0.2) !important;
    transition: all 0.3s ease !important;
}

.swiper-button-prev:hover, .swiper-button-next:hover {
    background: var(--brown-theme) !important;
    color: white !important;
    transform: scale(1.1) !important;
}

.swiper-pagination-bullet {
    background: var(--brown-theme) !important;
    opacity: 0.3 !important;
    width: 12px !important;
    height: 12px !important;
    margin: 0 6px !important;
}

.swiper-pagination-bullet-active {
    opacity: 1 !important;
    transform: scale(1.2) !important;
}

@media screen and (max-width:768px) { 
    .swiper {
        padding: 3rem 0;
    }
    
    .swiper h1 {
        font-size: 2.5em;
        margin-bottom: 2.5rem;
    }
    
    .slide-card-item{
        width: 90%;
        margin: 0 auto;
        padding: 2.5rem 2rem;
    }
    
    .slide-card-item img {
        width: 70px;
        height: 70px;
    }
    
    .slide-card-item h3 {
        font-size: 1.2em;
    }
    
    .slide-card-item p {
        font-size: 1.05em;
        padding: 0 1rem;
    }
    
    .swiper-button-prev, .swiper-button-next {
        width: 45px !important;
        height: 45px !important;
    }
}

/*FIN TESTIMONIALS*/

body{
    margin: 0;
    padding: 0;
}
  
html, body {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/*toast 👋 */
.toast{
    border: solid transparent;
    background: var(--brown-theme);
    border-radius: 50%;
    height: 70px;
    width: 70px;
    position: fixed;
    color: white;
    bottom: 50px;
    right: 50px;
    z-index: 5;
}

.notifs{
    border: solid transparent;
    border-radius: 50%;
    width: 10px;
    height: 10px;
    background: var(--light-theme);
}

.toast p{
    font-size: 50px;
    margin-top: -15px;
    margin-left: -3px;
}

@media screen and (max-width:480px) { 
    .toast{
        width: 45px;
        height: 45px;
        bottom: 25px;
        right: 25px;
    }
    .toast p{
        font-size: 30px;
        margin-top: -0.5em;
        margin-left: -1.5px;
    }
    .notifs{
        width: 10px;
        height: 10px;
        background: var(--light-theme);
    }
}

/* Formulaire */
#form {
    max-width: 500px;
    background: var(--light-theme);
    overflow: hidden;
    border-radius: 16px;
    color: var(--brown-theme);
}

.form {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 50px 50px 50px 50px;
    gap: 15px;
    text-align: center;
}

/*Form text*/
.title {
    font-weight: bold;
    font-size: 1.6rem;
}

.subtitle {
    font-size: 1rem;
    color: #666;
}

/*Inputs box*/
.form-container {
    overflow: hidden;
    border-radius: 8px;
    background-color: #fff;
    margin: 1rem 0 .5rem;
    width: 100%;
}

.input {
    background: none;
    border: 0;
    outline: 0;
    height: 40px;
    width: 100%;
    border-bottom: 1px solid #eee;
    font-size: .9rem;
    padding: 8px 15px;
}

.form-section {
    padding: 16px;
    font-size: 1.5em;
}

.form-section a {
    font-weight: bold;
    color: var(--brown-theme);
    transition: color .3s ease;
}

/*Button*/
.form button {
    background-color: var(--brown-theme);
    color: var(--light-theme);
    border: 0;
    border-radius: 24px;
    padding: 10px 16px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color .3s ease;
}

.form button:hover {
    background-color: var(--logo-theme);
    color: var(--light-theme);
}
/*Fin formulaire*/

#overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    background: rgba(0,0,0,0.5);
    justify-content: center;
    align-items: center;
    z-index: 100;
}

#icon-close{
    border: solid transparent;
    background-color: var(--light-theme);
    width: 100%;
    display: flex;
    justify-content: end;
    color: var(--brown-theme);
    padding-top: 25px;
    padding-right: 20px;
}

#icon-close-hover{
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    width: 35px;
    height: 35px;
}

#icon-close-hover:hover{
    background-color: var(--brown-theme);
    color: var(--light-theme);
}

/* Mission Section Styles */
.mission-section {
    margin: 60px 0;
    padding: 40px 50px;
    background: transparent;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.mission-section:hover {
    transform: translateY(-5px);
}

.mission-content {
    margin-bottom: 40px;
}

.mission-content h2 {
    font-size: 2.2rem;
    color: var(--brown-theme);
    margin-bottom: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    text-align: center;
}

.mission-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px;
}

.voir-plus-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--brown-theme), var(--logo-theme));
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    margin: 0 auto;
    display: block;
    width: fit-content;
}

.voir-plus-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(115, 77, 18, 0.3);
    color: white;
}

/* Carousel Styles */
.mission-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 650px;
    overflow: hidden;
    border-radius: 15px;
    background: black;
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.carousel-slide.prev {
    transform: translateX(-100%);
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 15px;
    background: #f8f9fa;
}

.carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
}

.carousel-prev,
.carousel-next {
    background: rgba(115, 77, 18, 0.8);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 15;
    pointer-events: auto;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: rgba(115, 77, 18, 1);
    transform: scale(1.1);
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.indicator.active {
    background: var(--brown-theme);
    transform: scale(1.2);
    border-color: white;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

/* Responsive Design for Missions */
@media (max-width: 768px) {
    .mission-section {
        margin: 40px 0;
        padding: 30px 20px;
    }
    
    .mission-content h2 {
        font-size: 1.8rem;
    }
    
    .mission-content p {
        font-size: 1rem;
    }
    
    .carousel-container {
        height: 500px;
    }
    
    .carousel-prev,
    .carousel-next {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .carousel-controls {
        padding: 0 10px;
    }
}

/* PODCASTS SECTION */
.podcasts {
    width: 100%;
    padding: 3rem 0;
    background: linear-gradient(135deg, #faf7f3 0%, #ede5dd 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.podcasts h1 {
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #734D12 0%, #C36940 50%, #EEC487 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
    text-align: center;
}

.podcasts-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
    width: 85%;
    max-width: 900px;
    margin-top: 3rem;
    padding: 0 2rem;
}

.podcast-video {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(85, 54, 44, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.podcast-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    border: none;
}

.podcast-video:hover {
    box-shadow: 0 15px 50px rgba(85, 54, 44, 0.3);
    transform: translateY(-5px);
}

@media screen and (max-width: 768px) {
    .podcasts {
        padding: 5rem 0;
    }
    
    .podcasts h1 {
        font-size: 2.5rem;
    }
    
    .podcasts-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ===== POPUP PAIEMENT ===== */

.payment-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    animation: fadeIn 0.3s ease;
}

.payment-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    width: 90%;
    max-width: 500px;
    animation: slideUp 0.4s ease;
}

.payment-modal-content {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    position: relative;
}

.payment-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    color: #333;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.payment-close-btn:hover {
    color: var(--accent-orange);
}

.payment-header {
    text-align: center;
    margin-bottom: 35px;
}

.payment-header h2 {
    color: var(--primary-dark);
    font-size: 1.8rem;
    margin: 0 0 10px 0;
    font-weight: 700;
}

.payment-header p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.payment-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border: 2px solid #f0f0f0;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    background: #fafafa;
}

.payment-card:hover {
    border-color: var(--accent-orange);
    background: #fff5f0;
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(195, 105, 64, 0.15);
}

.payment-card-logo {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 12px;
    overflow: hidden;
}

.payment-card-logo img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.payment-card-info {
    flex: 1;
}

.payment-card-info h3 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    color: var(--primary-dark);
    font-weight: 600;
}

.payment-card-info p {
    margin: 0;
    font-size: 0.85rem;
    color: #999;
}

.payment-card svg {
    flex-shrink: 0;
    color: var(--accent-orange);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.payment-card:hover svg {
    opacity: 1;
    transform: translateX(3px);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translate(-50%, -40%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

/* Responsive */
@media screen and (max-width: 480px) {
    .payment-modal {
        width: 95%;
        max-width: none;
    }

    .payment-modal-content {
        padding: 30px 20px;
    }

    .payment-header h2 {
        font-size: 1.5rem;
    }

    .payment-card {
        padding: 15px;
        gap: 15px;
    }

    .payment-card-logo {
        width: 50px;
        height: 50px;
    }

    .payment-card-info h3 {
        font-size: 1rem;
    }
}

/* ===== NEWSLETTER POPUP MODERNE ===== */

.newsletter-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    animation: fadeInNewsletter 0.3s ease;
}

@keyframes fadeInNewsletter {
    from { opacity: 0; }
    to { opacity: 1; }
}

.newsletter-popup {
    background: var(--primary-light) !important;
    border-radius: 25px;
    padding: 0;
    max-width: 450px;
    width: 90%;
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    position: relative;
    animation: slideUpNewsletter 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
}

@keyframes slideUpNewsletter {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.newsletter-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(115, 77, 18, 0.1);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    transition: all 0.3s ease;
    z-index: 10;
}

.newsletter-close:hover {
    background: rgba(115, 77, 18, 0.2);
    color: var(--accent-orange);
}

.newsletter-content {
    padding: 50px 35px 40px;
    background: var(--primary-light) !important;
}

.newsletter-title {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin: 0 0 10px 0;
    font-weight: 700;
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.newsletter-subtitle {
    font-size: 0.95rem;
    color: #999;
    margin: 0 0 25px 0;
    text-align: center;
    line-height: 1.5;
}

.newsletter-popup .form-container {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    margin: 25px 0 !important;
    border-radius: 15px !important;
    background: transparent !important;
    padding: 0 !important;
    border: none !important;
    overflow: visible !important;
    margin-bottom: 0 !important;
    width: 100% !important;
}

.newsletter-popup .input {
    background: #f8f9fa !important;
    border: 1px solid #ddd !important;
    border-bottom: 1px solid #ddd !important;
    border-radius: 10px !important;
    padding: 12px 15px !important;
    font-size: 0.95rem !important;
    color: #333 !important;
    transition: all 0.3s ease !important;
    height: auto !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.newsletter-popup .input:focus {
    outline: none;
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 3px rgba(195, 105, 64, 0.1);
    background: rgba(255, 255, 255, 1);
}

.newsletter-popup .input::placeholder {
    color: #bbb;
}

.btn-send {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent-orange) 100%);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 20px rgba(115, 77, 18, 0.25);
    margin-top: 10px;
}

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

.btn-send:active {
    transform: translateY(0);
}

.newsletter-notice {
    font-size: 0.8rem;
    color: #bbb;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 0;
}

.newsletter-success {
    padding: 50px 35px;
    text-align: center;
    animation: successPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes successPop {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.success-icon {
    margin-bottom: 20px;
    animation: successBounce 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes successBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.newsletter-success h3 {
    font-size: 1.6rem;
    color: var(--primary-dark);
    margin: 15px 0 10px;
    font-weight: 700;
}

.newsletter-success p {
    font-size: 0.95rem;
    color: #777;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Newsletter */
@media screen and (max-width: 480px) {
    .newsletter-popup {
        width: 95%;
        max-width: 100%;
    }

    .newsletter-content {
        padding: 40px 25px 30px;
    }

    .newsletter-title {
        font-size: 1.5rem;
    }

    .newsletter-subtitle {
        font-size: 0.9rem;
    }

    .newsletter-popup .form-container {
        padding: 15px;
        gap: 10px;
    }

    .newsletter-popup .input {
        padding: 10px 12px;
        font-size: 0.9rem;
    }

    .btn-send {
        padding: 10px 18px;
        font-size: 0.9rem;
    }

    .newsletter-success {
        padding: 40px 25px;
    }

    .success-icon svg {
        width: 50px !important;
        height: 50px !important;
    }

    .newsletter-success h3 {
        font-size: 1.3rem;
    }

    .newsletter-success p {
        font-size: 0.9rem;
    }
}

/* FIN
