@import url('https://fonts.googleapis.com/css2?family=Playwrite+RO:wght@100..400&display=swap');



/* Animations rock pour les côtés */
.side-animations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}
.section-title2{
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 25px;
  
}
.section-title1{
    color: #7ac1ed;
}

/* Étoiles scintillantes */
.star {
    position: absolute;
    background-color: #fff;
    border-radius: 50%;
    animation: twinkle 2s infinite alternate-reverse;
}

@keyframes twinkle {
    0% { opacity: 0.2; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1.2); }
}

/* Éclairs rock */
.lightning {
    position: absolute;
    background: linear-gradient(45deg, var(--primary-color), transparent);
    clip-path: polygon(0 0, 100% 0, 80% 50%, 100% 100%, 0 100%, 20% 50%);
    opacity: 0;
    animation: flash 4s infinite;
}

@keyframes flash {
    0%, 90% { opacity: 0; transform: scale(0.8); }
    92%, 94% { opacity: 0.8; transform: scale(1.1); }
    96%, 98% { opacity: 0; transform: scale(1); }
    99% { opacity: 0.5; transform: scale(1.05); }
    100% { opacity: 0; transform: scale(0.8); }
}

/* Cercles pulsants */
.circle-pulse {
    position: absolute;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    opacity: 0;
    animation: pulse 6s infinite;
}

@keyframes pulse {
    0% { transform: scale(0); opacity: 0.7; }
    50% { transform: scale(1.5); opacity: 0.2; }
    100% { transform: scale(3); opacity: 0; }
}

/* Ondulations sonores */
.sound-wave {
    position: absolute;
    height: 3px;
    background-color: var(--primary-color);
    opacity: 0.6;
    animation: wave 2s infinite ease-in-out;
}

@keyframes wave {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(6); }
}



/* Style pour les sous-titres (nom et profession) */
.name-title-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto 2rem;
    padding: 0 15px;
    box-sizing: border-box;
    text-align: center;
    transform: translateY(30px);
    opacity: 0;
    transition: transform 1s ease, opacity 1s ease;
}

.name-title-container.visible {
    transform: translateY(0);
    opacity: 1;
}

/* Améliorations pour la section profile */
.conatiner {
    max-width: 100%;
    height: 1000px;

}
.profile-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (min-width: 768px) {
    .profile-section {
        flex-direction: row;
        align-items: flex-start;
    }
}

.profile-img {
    max-width: 100%;
    height: auto;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .profile-img {
        max-width: 40%;
        margin-right: 2rem;
        margin-bottom: 0;
    }
    
    .profile-text {
        flex: 1;
    }
}


.gradient-bg {
    background: var(--gradient-bg);
}

/* Profile Section */
.profile-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(1rem, 3vw, 2rem);
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s;
}

.profile-img {
    max-width: 100%;
    width: clamp(200px, 80%, 300px);
    border-radius: 5px;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.5);
    transition: transform 0.5s;
}

.profile-img:hover {
    transform: scale(1.03) rotate(1deg);
}

.profile-text {
    flex: 1;
    text-align: center;
}

.profile-text p {
    margin-bottom: 1.5rem;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    line-height: 1.8;
}

/* Style amélioré pour la frise chronologique */
.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s;
    padding: 0 clamp(1rem, 5vw, 2rem);
}

.timeline.in-view {
    opacity: 1;
    transform: translateY(0);
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--secondary-color);
    top: 0;
    bottom: 0;
    left: 20px;
    margin-left: -2px;
}

.timeline-item {
    padding: 10px 0 10px 40px;
    position: relative;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 1.5rem;
}

.timeline-content {
    padding: clamp(15px, 3vw, 20px);
    background-color: rgba(18, 18, 18, 0.7);
    border-radius: 12px;
    position: relative;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s, box-shadow 0.4s;
    border-left: 4px solid var(--secondary-color);
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.timeline-title {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    margin-bottom: 1rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: var(--primary-color);
    border: 4px solid var(--secondary-color);
    border-radius: 50%;
    top: 20px;
    z-index: 1;
    left: 10px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.timeline-item:hover::after {
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

/* Nouvelle frise chronologique horizontale avec design amélioré */
.musical-journey {
    position: relative;
    padding: 80px 20px 40px;
    margin: 30px 0 10px;
    overflow-x: hidden;
}

.journey-timeline {
    position: relative;
    height: 8px;
    background: linear-gradient(90deg, 
        rgba(255,255,255,0.1), 
        rgba(255,255,255,0.3), 
        rgba(255,255,255,0.1));
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    margin: 70px 0;
}

.journey-event {
    position: absolute;
    transform: translate(-50%, -50%);
    z-index: 2;
    top: 50%;
}

.event-node {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    position: relative;
    left: 0;
    border: 3px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.event-range {
    position: absolute;
    height: 20px;
    border-radius: 10px;
    top: 50%;
    transform: translateY(-50%);
    border: 2px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.event-connector {
    position: absolute;
    width: 2px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.9), rgba(255,255,255,0.3));
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.event-detail {
    position: absolute;
    width: 180px;
    background-color: rgba(20, 20, 20, 0.9);
    padding: 10px 15px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease;
    opacity: 0.9;
    z-index: 10;
}

.event-detail.top {
    bottom: 45px;
    transform: translateX(-50%);
    left: 12px;
}

.event-detail.bottom {
    top: 45px;
    transform: translateX(-50%);
    left: 12px;
}

.event-year {
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 5px;
    padding: 2px 8px;
    border-radius: 4px;
    display: inline-block;
    color: #fff;
}

.event-title {
    font-weight: 700;
    font-size: .7rem;
    color: #fff;
    margin-bottom: 20px;
}

.event-description {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Animations et effets d'hover */
.journey-event:hover .event-node {
    transform: scale(1.3);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.9);
}

.journey-event:hover .event-detail {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}

.journey-event:hover .event-range {
    transform: translateY(-50%) scaleY(1.2);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.7);
}

/* Couleurs pour les groupes et pour les années (dates) */
.cancert {
    background-color: gray;
}

.mage {
    background-color: #dce6ef;
}

.heiphen {
    background-color: gray;
}

.ken {
    background-color: gray ;
}

.cancert-year {
    background-color: gray;
    color: #fff;
}

.mage-year {
    background-color: gray;
    color: #fff;
}

.heiphen-year {
    background-color: gray;
    color: #fff;
}

.ken-year {
    background-color: red;
    color: #fff;
}

/* Effets de particules et animations */
.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.6);
    animation: float 5s infinite ease-in-out;
    opacity: 0.5;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0.2;
    }
    50% {
        transform: translateY(-15px) translateX(5px);
        opacity: 0.7;
    }
}

/* Media queries pour la responsivité */
@media (max-width: 768px) {
    .journey-timeline {
        margin: 100px 0 80px;
    }
    
    .event-detail {
        width: 140px;
    }
    
    .event-detail.top {
        bottom: 35px;
    }
    
    .event-detail.bottom {
        top: 35px;
    }
    
    .timeline::after {
        left: 20px;
    }
    
    .timeline-item {
        padding-left: 40px;
    }
    
    .timeline-item::after {
        left: 10px;
    }
    
    .musical-journey {
        padding: 60px 10px 30px;
    }
}

@media (min-width: 769px) {
    .timeline::after {
        left: 50%;
    }
    
    .timeline-item {
        width: 50%;
    }
    
    .timeline-item.left {
        left: 0;
        padding-right: 40px;
    }
    
    .timeline-item.right {
        left: 50%;
        padding-left: 40px;
    }
    
    .timeline-item::after {
        left: calc(50% - 10px);
    }
}




/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    animation: zoom 0.3s ease;
}

@keyframes zoom {
    from {transform: scale(0.1)}
    to {transform: scale(1)}
}

.lightbox-img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 90vh;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
    border-radius: 5px;
}

.close-lightbox {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close-lightbox:hover {
    color: #ddd;
}


/* Styles pour le bouton live */
/* Styles pour un bouton 3D attractif et moderne */
.live-button-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    margin-bottom: 20px;
}

.live-button {
    display: inline-block;
    padding: 14px 45px;
    background: linear-gradient(to bottom, #6f9cb3, #35133e);
    color: white;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    position: relative;
    text-align: center;
    font-size: 18px;
    font-family: 'Segoe UI', Arial, sans-serif;
    letter-spacing: 0.5px;
    text-shadow: 0 -2px 0 rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 5px 0 #345566,
        0 5px 10px rgba(0, 0, 0, 0.3),
        0 10px 20px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    transition: all 0.2s ease;
    transform-style: preserve-3d;
    transform: perspective(500px) translateZ(0);
}

.live-button:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 50px;
}

.live-button:hover {
    background: linear-gradient(to bottom, #7badc4, #5889a1);
    transform: perspective(500px) translateZ(15px) translateY(-2px);
    box-shadow: 
        0 7px 0 #345566,
        0 8px 15px rgba(0, 0, 0, 0.3),
        0 12px 25px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 0 25px rgba(255, 255, 255, 0.15);
}

.live-button:active {
    transform: perspective(500px) translateZ(0) translateY(5px);
    background: linear-gradient(to bottom, #4a7890, #3e6577);
    box-shadow: 
        0 2px 0 #345566,
        0 3px 5px rgba(0, 0, 0, 0.2),
        inset 0 -1px 0 rgba(255, 255, 255, 0.2);
}

/* Animation d'attention */
@keyframes pulse {
    0% {
        transform: perspective(500px) translateZ(0) scale(1);
        box-shadow: 
            0 5px 0 #345566,
            0 5px 10px rgba(0, 0, 0, 0.3),
            0 10px 20px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: perspective(500px) translateZ(10px) scale(1.03);
        box-shadow: 
            0 7px 0 #345566,
            0 8px 15px rgba(0, 0, 0, 0.3),
            0 12px 25px rgba(0, 0, 0, 0.3);
    }
    100% {
        transform: perspective(500px) translateZ(0) scale(1);
        box-shadow: 
            0 5px 0 #345566,
            0 5px 10px rgba(0, 0, 0, 0.3),
            0 10px 20px rgba(0, 0, 0, 0.2);
    }
}

.live-button {
    animation: pulse 2s infinite;
}

/* Nouveau style pour les influences */
.influences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s;
}

.influence-card {
    background: linear-gradient(135deg, rgba(30,30,30,0.8) 0%, rgba(18,18,18,0.9) 100%);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: transform 0.4s cubic-bezier(0.25,0.1,0.25,1);
    border: 1px solid rgba(255,255,255,0.05);
}

.influence-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.25);
}

.card-header {
    padding: 1.5rem;
    background: rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    text-align: center;
}

.icon-wrapper {
    display: inline-block;
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
    background: white;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    text-align: center;
}

.card-body {
    padding: 1.5rem;
}

.genre-tag {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(255,255,255,0.1);
    border-radius: 50px;
    font-weight: 500;
    margin: 0.5rem 0;
}

.influence-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.influence-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
}

.bullet {
    color: #ff5e5e;
    margin-right: 0.8rem;
    font-size: 1.2rem;
}

/* Animation */
.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}
/* Testimonials */
blockquote {
    background-color: rgba(18, 18, 18, 0.7);
    padding: clamp(1rem, 3vw, 1.5rem);
    border-left: 5px solid var(--primary-color);
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s;
    font-size: clamp(0.9rem, 1.8vw, 1rem);
}

blockquote:hover {
    transform: scale(1.02);
}



/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    text-align: justify;
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s;
    width: 100%;
    padding: 0 clamp(1rem, 5vw, 2rem);
}

.form-group {
    margin-bottom: 1.5rem;
    width: 100%;
}

.form-control {
    width: 100%;
    padding: clamp(0.6rem, 2vw, 0.8rem) clamp(0.8rem, 2vw, 1rem);
    background-color: rgba(238, 238, 238, 0.7);
    border: 1px solid #333;
    border-radius: 5px;
    color: white;
    transition: border-color 0.3s;
    font-size: clamp(0.9rem, 1.8vw, 1rem);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.3);
    color: white;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-control::placeholder {
    color: white;
    opacity: 1; 
  }
  


/* contact design */
.contact-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    background: black;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.contact-form {
    flex: 2;
}

.samy-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.samy-text-container {
    text-align: center;
   background: linear-gradient( 90deg,  #a9b6c3,  #5c6a79,  #2f3540 );
    padding: 2rem;
    border-radius: 15px;
    color: black;
    transform: rotate(-5deg);
    box-shadow: 0 0 0 3px white;
    transition: transform 0.3s ease;
}

.samy-text-container:hover {
    transform: rotate(-3deg) scale(1.05);
}

.samy-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.samy-subtitle {
    font-size: 1.8rem;
    font-style: italic;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
    }

    .samy-title {
        font-size: 2rem;
    }

    .samy-subtitle {
        font-size: 1.5rem;
    }
}


/* Social Links */
.social-linkss {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
    z-index: 10;
}

.social-lin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.social-lin::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, var(--accent-color), transparent);
    opacity: 0;
    transform: scale(0);
    transition: all 0.4s ease;
}

.social-lin:hover::before {
    opacity: 0.3;
    transform: scale(1.5);
}

.social-lin:hover {
    background-color: rgba(226, 158, 149, 0.2);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Changement ici pour la couleur bleu métallique */
.social-ico {
    width: 24px;
    height: 24px;
    fill: #4682B4; /* Couleur bleu métallique (Steel Blue) */
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

/* Si vous préférez une couleur bleu métallique plus foncée */
/* Vous pouvez utiliser #2A5B84 à la place */

.social-lin:hover .social-ico {
    fill: var(--accent-color); 
    transform: scale(1.1);
}


/* Footer */
footer {
    background-color: var(--dark-bg);
    text-align: center;
    padding: clamp(1rem, 4vw, 2rem);
    border-top: 1px solid #333;
    width: 100%;
}

footer p {
    margin: 0.5rem 0;
    font-size: clamp(0.8rem, 1.6vw, 0.9rem);
    color: #888;
}

/* Animation Helper */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s, transform 1s;
}

/* Boutique section */
#boutique {
    background: linear-gradient(135deg, rgba(13, 13, 24, 0.9), rgba(76, 79, 105, 0.7));
    padding: clamp(3rem, 6vw, 5rem) 0;
    position: relative;
}

#boutique::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/texture-overlay.png');
    opacity: 0.05;
    z-index: 0;
}

#boutique .container {
    position: relative;
    z-index: 1;
    background: rgba(14, 14, 26, 0.5);
    border-radius: clamp(10px, 3vw, 20px);
    padding: clamp(1.5rem, 4vw, 3rem);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

#boutique  {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: clamp(2rem, 5vw, 3.5rem);
    color: #f8f8f8;
    text-shadow: 0 0 15px rgba(106, 5, 114, 0.8);
}

#boutique :after {
    height: 4px;
    width: clamp(80px, 12vw, 120px);
    background: linear-gradient(90deg, var(--primary-color), transparent);
    box-shadow: 0 0 10px var(--primary-color);
}

/* Three dots button */
.three-dots-btn {
    position: absolute;
    top: clamp(15px, 4vw, 30px);
    right: clamp(15px, 4vw, 30px);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    width: clamp(30px, 5vw, 35px);
    height: clamp(30px, 5vw, 35px);
    font-size: clamp(16px, 3vw, 18px);
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s;
    backdrop-filter: blur(3px);
}

.three-dots-btn:hover {
    background: rgba(106, 5, 114, 0.7);
    transform: rotate(90deg);
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
}

.modal-content {
    background: linear-gradient(25deg,red,rgb(49, 45, 45),white);
    margin: clamp(5%, 10vw, 10%) auto;
    padding: clamp(15px, 3vw, 20px);
    border: 1px solid #888;
    width: clamp(280px, 90%, 500px);
    max-width: 90%;
    border-radius: 8px;
    position: relative;
}

.close {
    position: absolute;
    right: 15px;
    top: 10px;
    color: #aaa;
    font-size: clamp(20px, 4vw, 28px);
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: black;
}

/* Form dans modal */
.modal .form-group {
    margin-bottom: 15px;
}

.modal .form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    font-size: clamp(0.9rem, 1.8vw, 1rem);
}

.modal .form-group input {
    width: 100%;
    padding: clamp(6px, 1.5vw, 8px);
    box-sizing: border-box;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: clamp(0.9rem, 1.8vw, 1rem);
}

.toggle-password {
    cursor: pointer;
    margin-left: 5px;
}

.submit-btn {
   background: linear-gradient(50deg,rgb(205, 33, 11), rgb(234, 215, 7));
    color: white;
    padding: clamp(8px, 2vw, 10px) clamp(10px, 3vw, 15px);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.submit-btn:hover {
    background: linear-gradient(50deg, rgb(234, 215, 7), rgb(205, 33, 11));
}

/* Badge new */
.badge-new {
    position: absolute;
    top: 20px;
    left: -30px;
    background: linear-gradient(45deg, #ff4081, var(--primary-color));
    color: white;
    padding: clamp(3px, 1vw, 5px) clamp(20px, 5vw, 30px);
    font-size: clamp(0.7rem, 1.5vw, 0.8rem);
    transform: rotate(-45deg);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    z-index: 5;
    white-space: nowrap;
}

@keyframes pulse-badge {
    0% { transform: rotate(-45deg) scale(1); }
    50% { transform: rotate(-45deg) scale(1.05); }
    100% { transform: rotate(-45deg) scale(1); }
}

.badge-new {
    animation: pulse-badge 2s infinite;
}

/* Responsive media queries améliorés */
@media (min-width: 768px) {
    /* On revient au design original pour les écrans plus grands */
    .profile-section {
        flex-direction: row;
        text-align: left;
    }
    
    .timeline::after {
        left: 50%;
    }
    
    .timeline-item {
        width: 50%;
        padding: 10px 30px;
    }
    
    .timeline-item.left {
        left: 0;
    }
    
    .timeline-item.right {
        left: 50%;
    }
    
    .timeline-item.left::after {
        right: -10px;
        left: auto;
    }
    
    .timeline-item.right::after {
        left: -10px;
    }
    
    .profile-text {
        text-align: left;
    }
}

@media (max-width: 767px) {
    .header-content h1 {
        letter-spacing: 5px;
    }
    
    .header-content p {
        max-width: 100%;
    }
    
    .album-info p {
        font-size: clamp(0.85rem, 2vw, 0.95rem);
    }
    
    /* .section-title1 {
        margin-right: 0;
    } */
}

@media (max-width: 480px) {
    .container {
        padding: 1rem;
    }
    
    .btn {
        margin: 0 0.3rem 0.8rem 0.3rem;
        padding: 0.3rem 0.8rem;
    }
    
    .album-img {
        height: 180px;
    }
    
    .album-info {
        padding: 1rem;
    }
    
    .social-links {
        gap: 0.8rem;
    }
    
    .contact-form {
        padding: 0 0.5rem;
    }
    
    #boutique .container {
        padding: 1rem;
    }
    
    .influence-item {
        padding: 1rem;
    }
    
    .timeline-item {
        padding-left: 30px;
    }
    
    .timeline-content {
        padding: 15px;
    }
    
    .timeline::after {
        left: 15px;
    }
    
    .timeline-item::after {
        left: 5px;
    }
}

/* Animation pour les éléments au défilement */
.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}
/* Animation for items as they come into view */
.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

  /* styles pour trois points et la modal */
  .three-dots-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.album {
    position: relative;
}

/* Styles pour les modals */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
}

.modal-content {
    background: linear-gradient(25deg,red,rgb(49, 45, 45),white);
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    border-radius: 8px;
    position: relative;
}

.close {
    position: absolute;
    right: 15px;
    top: 10px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: black;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
    border: 1px solid #ddd;
    border-radius: 4px;
}
input{
    color: white;
}

.toggle-password {
    cursor: pointer;
    margin-left: 5px;
}

.submit-btn {
   background: linear-gradient(50deg,rgb(205, 33, 11), rgb(234, 215, 7) );
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.submit-btn:hover {
    background: linear-gradient(50deg, rgb(234, 215, 7), rgb(205, 33, 11));
}

/* emailjs */
input:invalid {
    border: 2px solid rgb(127, 124, 124);
  }






  



  /* Style amélioré pour la section boutique */
#boutique {
    background: linear-gradient(135deg, rgba(13, 13, 24, 0.9), rgba(76, 79, 105, 0.7));
    padding: 5rem 0;
    position: relative;
}

#boutique::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/texture-overlay.png');
    opacity: 0.05;
    z-index: 0;
}

#boutique .container {
    position: relative;
    z-index: 1;
    background: rgba(14, 14, 26, 0.5);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

#boutique {
    font-size: 3rem;
    margin-bottom: 3.5rem;
    color: #f8f8f8;
    text-shadow: 0 0 15px rgba(106, 5, 114, 0.8);
}

#boutique :after {
    height: 4px;
    width: 120px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    box-shadow: 0 0 10px var(--primary-color);
}

.discography {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2.5rem;
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s;
}

.discography.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.album {
    position: relative;
    background: linear-gradient(145deg, rgba(30, 30, 45, 0.9), rgba(20, 20, 35, 0.8));
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(122, 200, 206, 0.4);
    transition: transform 0.5s, box-shadow 0.5s;
    border: 1px solid rgba(22, 177, 185, 0.2);
}

.album::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    /* background: linear-gradient(45deg, transparent, rgba(106, 5, 114, 0.2), transparent);
    transform: rotate(45deg);
    transition: transform 0.5s; */
    z-index: 1;
    opacity: 0;
}

.album:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 25px 50px rgba(106, 5, 114, 0.3);
    border-color: rgba(106, 5, 114, 0.5);
}

.album:hover::before {
    opacity: 1;
    animation: shine 1.5s forwards;
}

@keyframes shine {
    100% {
        left: 100%;
    }
}

.album-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.8s, filter 0.5s;
    filter: contrast(0.95) brightness(0.95);
    position: relative;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    z-index: 2;
}

.album:hover .album-img {
    transform: scale(1.08);
    filter: contrast(1.1) brightness(1.1);
}

.album-info {
    padding: 1.8rem;
    position: relative;
    z-index: 3;
    transition: background 0.3s;
}

.album:hover .album-info {
    background: linear-gradient(180deg, rgba(20, 20, 35, 0), rgba(106, 5, 114, 0.15));
}

.album-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #f0f0f0;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.album:hover .album-title {
    color: #fff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.album-info p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    color: #bbb;
    transition: color 0.3s;
}

.album:hover .album-info p {
    color: #eee;
}

.album .btn, .album .btn-shop {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border: none;
    padding: 0.8rem 1.5rem;
    color: #fff;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
    z-index: 2;
}

.album .btn::before, .album .btn-shop::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    transition: width 0.4s ease-in-out;
    z-index: -1;
}

.album .btn:hover, .album .btn-shop:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(106, 5, 114, 0.4);
    color: #fff;
}

.album .btn:hover::before, .album .btn-shop:hover::before {
    width: 100%;
}


.three-dots-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s;
    backdrop-filter: blur(3px);
}

.three-dots-btn:hover {
    background: rgba(106, 5, 114, 0.7);
    transform: rotate(90deg);
}

/* Ajout d'un badge pour les nouveaux produits */
.badge-new {
    position: absolute;
    top: 20px;
    left: -30px;
    background: linear-gradient(45deg, #ff4081, var(--primary-color));
    color: white;
    padding: 5px 30px;
    font-size: 0.8rem;
    transform: rotate(-45deg);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    z-index: 5;
}

/* Animation de pulse pour le badge */
@keyframes pulse-badge {
    0% { transform: rotate(-45deg) scale(1); }
    50% { transform: rotate(-45deg) scale(1.05); }
    100% { transform: rotate(-45deg) scale(1); }
}

.badge-new {
    animation: pulse-badge 2s infinite;
}

/* Animation de hover pour les produits */
@keyframes float-product {
    0% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0); }
}

.album:hover {
    animation: float-product 3s infinite ease-in-out;
}

/* Media queries pour responsivité */
@media (max-width: 992px) {
    #boutique .container {
        padding: 2rem;
    }
    
    .discography {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
}

@media (max-width: 768px) {
    
    .album-img {
        height: 250px;
    }
}

@media (max-width: 576px) {
    #boutique .container {
        padding: 1.5rem;
    }
    
    .discography {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .album-img {
        height: 220px;
    }
    
    .album-info {
        padding: 1.2rem;
    }
    
    .album-title {
        font-size: 1.1rem;
    }
}




/* précence en ligne */
 #presence {
            padding: 4rem 0;
            position: relative;
            overflow: hidden;
        }

        #presence::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, #2f3540, #5c6a79, #a9b6c3, #dce6ef, #a9b6c3, #5c6a79, #2f3540);
            opacity: 0.15;
            z-index: 0;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }

     

        .social-platforms {
            margin-top: 2rem;
        }

        .social-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            grid-template-rows: repeat(2, 1fr);
            gap: 25px;
            max-width: 800px;
            margin: 0 auto;
        }

        .social-card {
            background: rgba(15, 15, 26, 0.7);
            border-radius: 20px;
            padding: 40px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid rgba(124, 237, 237, 0.1);
            backdrop-filter: blur(10px);
            min-height: 200px;
            text-align: center;
        }

        .social-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
            opacity: 0.8;
        }

        .social-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(124, 237, 237, 0.3);
        }

        .social-icon-wrapper {
            width: 90px;
            height: 90px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            position: relative;
            flex-shrink: 0;
        }

        .social-icon-wrapper::after {
            content: "";
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            border-radius: 50%;
            border: 2px solid transparent;
            background: linear-gradient(145deg, var(--primary-color), transparent) border-box;
            -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0.6;
            animation: rotate 10s linear infinite;
        }

        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .social-icon {
            width: 50px;
            height: 50px;
            transition: transform 0.3s ease;
            color: white;
        }

        .social-card:hover .social-icon {
            transform: scale(1.15);
        }

        .facebook {
            background: linear-gradient(135deg, #3b5998, #8b9dc3);
            box-shadow: 0 8px 20px rgba(59, 89, 152, 0.4);
        }

        .instagram {
            background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
            box-shadow: 0 8px 20px rgba(225, 48, 108, 0.4);
        }

        .youtube {
            background: linear-gradient(135deg, #ff0000, #cc0000);
            box-shadow: 0 8px 20px rgba(255, 0, 0, 0.4);
        }

        .twitter {
            background: linear-gradient(135deg, #1da1f2, #0d8bd9);
            box-shadow: 0 8px 20px rgba(29, 161, 242, 0.4);
        }

        .social-info {
            flex-grow: 1;
            width: 100%;
        }

        .social-info h3 {
            margin: 0 0 10px 0;
            font-size: 1.8rem;
            color: var(--primary-color);
            font-weight: bold;
        }

        .social-info p {
            margin: 0 0 20px 0;
            color: var(--light-text);
            font-size: 1.1rem;
            opacity: 0.9;
        }

        .badge {
            background-color: rgba(124, 237, 237, 0.2);
            color: var(--primary-color);
            font-size: 0.7rem;
            padding: 3px 8px;
            border-radius: 12px;
            margin-left: 8px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .visit-link {
            display: inline-flex;
            align-items: center;
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            position: relative;
            padding: 10px 20px;
            border: 2px solid var(--primary-color);
            border-radius: 25px;
            background: transparent;
        }

        .visit-link::after {
            content: "→";
            margin-left: 8px;
            transition: transform 0.3s ease;
        }

        .visit-link:hover {
            background: var(--primary-color);
            color: var(--dark-bg);
            transform: scale(1.05);
        }

        .visit-link:hover::after {
            transform: translateX(5px);
        }

        @media (max-width: 768px) {
            .social-grid {
                grid-template-columns: 1fr;
                grid-template-rows: auto;
                max-width: 400px;
            }
            
            /* .section-title {
                font-size: 2.5rem;
                letter-spacing: 5px;
            } */

            .social-card {
                padding: 30px;
                min-height: 180px;
            }

            .social-icon-wrapper {
                width: 70px;
                height: 70px;
                margin-bottom: 15px;
            }

            .social-icon {
                width: 40px;
                height: 40px;
            }

            .social-info h3 {
                font-size: 1.5rem;
            }

            .social-info p {
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .social-grid {
                gap: 15px;
            }
            
            .social-card {
                padding: 25px;
                min-height: 160px;
            }
        }


/* contact */
   .contact-section {
            padding: 80px 0;
            background: linear-gradient(135deg, rgba(106, 17, 203, 0.05) 0%, rgba(37, 117, 252, 0.05) 100%);
        }
        .contact-header {
            margin-bottom: 50px;
            text-align: center;
        }
        .contact-header h2 {
            color: var(--primary-color);
            font-weight: 700;
            position: relative;
            margin-bottom: 20px;
            font-size: 2.5rem;
        }
        .contact-header h2::after {
            content: '';
            width: 70px;
            height: 3px;
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }
        .contact-header p {
            font-size: 1.1rem;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }
        .contact-form-container {
            background-color: #fff;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            padding: 40px;
            transition: transform 0.3s ease;
        }
        .contact-form-container:hover {
            transform: translateY(-5px);
        }
        .contact-info {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: white;
            border-radius: 15px;
            padding: 40px;
            height: 100%;
        }
        .contact-info h3 {
            font-weight: 600;
            margin-bottom: 25px;
            font-size: 1.8rem;
        }
        .contact-info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
        }
        .contact-info-item i {
            font-size: 24px;
            margin-right: 15px;
            margin-top: 5px;
        }
        .social-links {
            margin-top: 30px;
        }
        .social-links a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            color: white;
            margin-right: 10px;
            transition: all 0.3s ease;
        }
        .social-links a:hover {
            background-color: white;
            color: var(--primary-color);
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-control {
            border-radius: 8px;
            padding: 12px 15px;
            border: 1px solid #e1e1e1;
            transition: all 0.3s ease;
        }
        .form-control:focus {
            box-shadow: 0 0 0 3px rgba(106, 17, 203, 0.2);
            border-color: var(--primary-color);
        }
        .form-control.error {
            border-color: #dc3545;
            box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.2);
        }
        .error-message {
            color: #dc3545;
            font-size: 0.85rem;
            margin-top: 5px;
            display: block;
        }
        .btn-submit {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: white;
            border: none;
            border-radius: 8px;
            padding: 12px 30px;
            font-weight: 600;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
        }
        .btn-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(106, 17, 203, 0.3);
        }
        .message-box {
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 25px;
            font-weight: 500;
        }
        .success {
            background-color: rgba(25, 135, 84, 0.1);
            color: #198754;
            border-left: 4px solid #198754;
        }
        .error-box {
            background-color: rgba(220, 53, 69, 0.1);
            color: #dc3545;
            border-left: 4px solid #dc3545;
        }
        .confirmation-check {
            margin-top: 15px;
        }
        footer {
            background-color: #222;
            color: #fff;
            padding: 40px 0 20px;
            text-align: center;
        }
        footer p {
            max-width: 800px;
            margin: 0 auto 20px;
            line-height: 1.6;
        }
        .copyright {
            font-size: 0.9rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            margin-top: 30px;
        }
        @media (max-width: 992px) {
            .contact-info {
                margin-bottom: 30px;
            }
        }





        /* Style de base pour les cartes sociales */
.social-card {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.social-info {
    flex: 1;
}

.social-info h3 {
    margin: 0;
    color: white;
    font-size: 1.2rem;
}

.social-info p {
    margin: 5px 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    margin-left: 5px;
}

.visit-link {
    display: inline-block;
    margin-top: 8px;
    color: white;
    text-decoration: none;
    font-size: 0.8rem;
    padding: 5px 10px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.visit-link:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Styles pour les boutons animés (commun à tous) */
.button {
    background: none;
    border: none;
    cursor: pointer;
}

.button .bloom-container {
    position: relative;
    transition: all 0.2s ease-in-out;
    border: none;
    background: none;
}

.button .bloom-container .button-container-main {
    width: 110px;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    display: grid;
    place-content: center;
    border-right: 5px solid white;
    border-left: 5px solid rgba(128, 128, 128, 0.147);
    transform: rotate(-45deg);
    transition: all 0.5s ease-in-out;
}

.button .bloom-container .button-container-main .button-inner {
    height: 60px;
    aspect-ratio: 1;
    border-radius: 50%;
    position: relative;
    box-shadow: rgba(100, 100, 111, 0.5) -10px 5px 10px 0px;
    transition: all 0.5s ease-in-out;
}

.button .bloom-container .button-container-main .button-inner .back {
    position: absolute;
    inset: 0;
    border-radius: 50%;
}

.button .bloom-container .button-container-main .button-inner .front {
    position: absolute;
    inset: 5px;
    border-radius: 50%;
    display: grid;
    place-content: center;
}

.button .bloom-container .button-container-main .button-inner .front .svg {
    fill: #ffffff;
    opacity: 0.5;
    width: 30px;
    aspect-ratio: 1;
    transform: rotate(45deg);
    transition: all 0.2s ease-in;
}

.button .bloom-container .button-container-main .button-glass {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.888) 100%
    );
    transform: translate(0%, -50%) rotate(0deg);
    transform-origin: bottom center;
    transition: all 0.5s ease-in-out;
}

.button .bloom-container .bloom {
    height: 1px;
    width: 1px;
    position: absolute;
    background: white;
}

.button .bloom-container .bloom1 {
    top: 10px;
    right: 20px;
    box-shadow:
        rgb(255, 255, 255) 0px 0px 10px 10px,
        rgb(255, 255, 255) 0px 0px 20px 20px;
}

.button .bloom-container .bloom2 {
    bottom: 10px;
    left: 20px;
    box-shadow:
        rgba(255, 255, 255, 0.5) 0px 0px 10px 10px,
        rgba(255, 255, 255, 0.5) 0px 0px 30px 20px;
}

.button .bloom-container:hover {
    transform: scale(1.1);
}

.button .bloom-container:hover .button-container-main .button-glass {
    transform: translate(0%, -40%);
}

.button .bloom-container:hover .button-container-main .button-inner .front .svg {
    opacity: 1;
    filter: drop-shadow(0 0 10px white);
}

.button .bloom-container:active {
    transform: scale(0.7);
}

.button .bloom-container:active .button-container-main .button-inner {
    transform: scale(1.2);
}

/* Couleurs spécifiques à chaque réseau */
.facebook-btn .button-inner .back {
    background: linear-gradient(60deg, rgb(23, 71, 150) 0%, rgb(66, 120, 204) 100%);
}

.facebook-btn .button-inner .front {
    background: linear-gradient(60deg, rgb(24, 90, 189) 0%, rgb(80, 136, 221) 100%);
}

.instagram-btn .button-inner .back {
    background: linear-gradient(60deg, rgb(131, 58, 180) 0%, rgb(253, 29, 29) 50%, rgb(252, 176, 69) 100%);
}

.instagram-btn .button-inner .front {
    background: linear-gradient(60deg, rgb(143, 70, 192) 0%, rgb(253, 29, 29) 50%, rgb(252, 176, 69) 100%);
}

.youtube-btn .button-inner .back {
    background: linear-gradient(60deg, rgb(230, 33, 23) 0%, rgb(214, 41, 41) 100%);
}

.youtube-btn .button-inner .front {
    background: linear-gradient(60deg, rgb(230, 33, 23) 0%, rgb(214, 41, 41) 100%);
}

.twitter-btn .button-inner .back {
    background: linear-gradient(60deg, rgb(1, 85, 103) 0%, rgb(147, 245, 255) 100%);
}

.twitter-btn .button-inner .front {
    background: linear-gradient(60deg, rgb(0, 103, 140) 0%, rgb(58, 209, 233) 100%);
}


/* bouton header */
@font-face {
    font-family: 'Gothic';
    src: url('https://fonts.googleapis.com/css2?family=MedievalSharp&display=swap');
    font-weight: normal;
    font-style: normal;
}

.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--gradient-bg);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
}

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(14, 14, 26, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
    padding: 0 20px;
}

.hero-subtitle {
    font-family: 'MedievalSharp', cursive;
    font-size: 1.8rem;
    color: var(--light-text);
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    font-weight: 400;
    letter-spacing: 2px;
    transform: perspective(500px) rotateX(15deg);
    animation: floatText 4s ease-in-out infinite;
    max-width: 800px;
    line-height: 1.4;
}

.hero-cta {
    display: inline-block;
    padding: 12px 35px;
    background: var(--tertiary-color);
    color: var(--light-text);
    font-family: 'MedievalSharp', cursive;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    border: 2px solid var(--primary-color);
    box-shadow: 0 8px 16px rgba(0,0,0,0.3), 
                0 4px 4px rgba(0,0,0,0.2),
                inset 0 -3px 0 rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    transform: perspective(500px) rotateX(10deg);
    animation: pulse 3s infinite;
    letter-spacing: 1px;
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(125, 237, 237, 0.3), transparent);
    transition: 0.5s;
}

.hero-cta:hover {
    transform: perspective(500px) rotateX(10deg) scale(1.05);
    box-shadow: 0 12px 24px rgba(0,0,0,0.4), 
                0 6px 6px rgba(0,0,0,0.3),
                inset 0 -3px 0 rgba(0,0,0,0.3);
    background: var(--primary-color);
    color: var(--secondary-color);
    animation: none;
}

.hero-cta:hover::before {
    left: 100%;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes floatText {
    0% { transform: perspective(500px) rotateX(15deg) translateY(0); }
    50% { transform: perspective(500px) rotateX(15deg) translateY(-8px); }
    100% { transform: perspective(500px) rotateX(15deg) translateY(0); }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(109, 61, 197, 0.5); }
    70% { box-shadow: 0 0 0 12px rgba(109, 61, 197, 0); }
    100% { box-shadow: 0 0 0 0 rgba(109, 61, 197, 0); }
}





