/* ==========================

   STRUCTURE DE BASE

   ========================== */



body {

    background-image: url(../img/fond_Equipe.png);

    background-size: cover;

    background-repeat: no-repeat;

    background-position: center;

}



/* ==========================

   ANIMATION VINYLES INTRO

   ========================== */



.vinyl-intro-animation {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    pointer-events: none;

    z-index: 9999;

    animation: fadeOutVinylContainer 5s ease-out forwards;

}



@keyframes fadeOutVinylContainer {

    0%, 85% { opacity: 1; }

    100% { opacity: 0; display: none; }

}



.vinyl-intro {

    position: absolute;

    width: 250px;

    height: 250px;

    border-radius: 50%;

    background: radial-gradient(circle at 30% 30%, 

                rgba(40, 40, 40, 0.8), 

                rgba(20, 20, 20, 0.9), 

                rgba(10, 10, 10, 1));

    box-shadow: 

        inset 0 0 30px rgba(0, 0, 0, 0.8),

        0 0 40px rgba(0, 162, 255, 0.6),

        0 0 60px rgba(78, 205, 196, 0.4);

    opacity: 0;

}



.vinyl-intro::before {

    content: '';

    position: absolute;

    top: 15%;

    left: 20%;

    width: 35%;

    height: 35%;

    border-radius: 50%;

    background: radial-gradient(circle, rgba(255, 255, 255, 0.4), transparent);

    filter: blur(10px);

    animation: shine 2s ease-in-out infinite;

}



@keyframes shine {

    0%, 100% { opacity: 0.3; }

    50% { opacity: 0.7; }

}



.vinyl-center-intro {

    position: absolute;

    top: 50%;

    left: 50%;

    transform: translate(-50%, -50%);

    width: 80px;

    height: 80px;

    border-radius: 50%;

    background: radial-gradient(circle, 

                rgba(0, 162, 255, 0.9), 

                rgba(78, 205, 196, 0.8),

                rgba(255, 105, 180, 0.7));

    box-shadow: 

        0 0 25px rgba(0, 162, 255, 0.8),

        inset 0 0 10px rgba(0, 0, 0, 0.5);

}



.vinyl-center-intro::after {

    content: '';

    position: absolute;

    top: 50%;

    left: 50%;

    transform: translate(-50%, -50%);

    width: 15px;

    height: 15px;

    border-radius: 50%;

    background: rgba(0, 0, 0, 0.9);

    box-shadow: inset 0 0 5px rgba(0, 0, 0, 1);

}



.vinyl-groove-intro {

    position: absolute;

    top: 50%;

    left: 50%;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    border: 1px solid rgba(0, 162, 255, 0.3);

}



.vinyl-groove-intro:nth-child(2) {

    width: 70%;

    height: 70%;

}



.vinyl-groove-intro:nth-child(3) {

    width: 85%;

    height: 85%;

}



.vinyl-groove-intro:nth-child(4) {

    width: 95%;

    height: 95%;

}



@keyframes vinylZoomSpin {

    0% {

        opacity: 0;

        transform: scale(0) rotate(0deg);

    }

    30% {

        opacity: 1;

        transform: scale(1.3) rotate(360deg);

    }

    60% {

        opacity: 1;

        transform: scale(1) rotate(720deg);

    }

    85% {

        opacity: 0.8;

        transform: scale(0.8) rotate(900deg);

    }

    100% {

        opacity: 0;

        transform: scale(0.3) rotate(1080deg);

    }

}



.vinyl-intro-1 {

    top: 15%;

    left: 10%;

    animation: vinylZoomSpin 1.5s ease-out forwards;

    animation-delay: 0.3s;

}



.vinyl-intro-1 .vinyl-center-intro {

    background: radial-gradient(circle, 

                rgba(0, 162, 255, 1), 

                rgba(78, 205, 196, 0.9));

}



.vinyl-intro-2 {

    top: 50%;

    left: 50%;

    transform: translate(-50%, -50%);

    width: 200px;

    height: 200px;

    animation: vinylZoomSpin 2.1s ease-out forwards;

    animation-delay: 0s;

}



.vinyl-intro-2 .vinyl-center-intro {

    width: 100px;

    height: 100px;

    background: radial-gradient(circle, 

                rgba(246, 246, 8, 1), 

                rgba(255, 215, 0, 0.9));

}



.vinyl-intro-2 .vinyl-center-intro::after {

    width: 20px;

    height: 20px;

}



.vinyl-intro-3 {

    bottom: 15%;

    right: 10%;

    width: 200px;

    height: 200px;

    animation: vinylZoomSpin 2.2s ease-out forwards;

    animation-delay: 0.6s;

}



.vinyl-intro-3 .vinyl-center-intro {

    width: 65px;

    height: 65px;

    background: radial-gradient(circle, 

                rgba(255, 105, 180, 1), 

                rgba(184, 79, 206, 0.9));

}



.vinyl-intro-3 .vinyl-center-intro::after {

    width: 12px;

    height: 12px;

}



/* ==========================

   CARTE PRINCIPALE (L'ÉQUIPE)

   ========================== */



.main-card {

    max-width: 1200px;

    margin: 1rem auto;

    background: linear-gradient(135deg, rgba(0, 162, 255, 0.4), rgba(242, 9, 149, 0.4));

    border-radius: 20px;

    padding: 2rem;

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);

    backdrop-filter: blur(10px);

    border: 1px solid rgba(255, 255, 255, 0.2);

}



.card-header {

    text-align: center;

    margin-bottom: 1rem;

    color: white;

    font-size: 1.1rem;

    font-family: 'Work Sans', sans-serif;

    line-height: 1.6;

}



/* Desktop : tout sur une ligne */

.brand-name-desktop {

    display: inline;

}



.brand-name-mobile {

    display: none;

}



.brand-name {

    font-weight: bold;

    font-size: 2rem;

    color: #f6f608;

    font-family: 'Bebas Neue', sans-serif;

    letter-spacing: 3px;

    -webkit-text-stroke: 0.095px #000000;

}



.intro-text {

    color: white;

    font-size: 1.1rem;

    line-height: 2;

    text-align: center;

    max-width: 95%;

    margin: 0 auto;

    padding: 0 1rem;

    font-family: 'Work Sans', sans-serif;

}



.intro-text p {

    margin-bottom: 1.5rem;

    white-space: nowrap;

}



.intro-text .highlight {

    color: #fff200;

    font-weight: bold;

}



.intro-text .tagline {

    font-style: italic;

    color: #fff200;

    font-size: 1.1rem;

    white-space: nowrap;

}



/* ==========================

   SECTIONS VALEURS (ZONE + PHILOSOPHIE)

   ========================== */



.values-section {

    max-width: 1200px;

    margin: 2rem auto;

    background: linear-gradient(135deg, rgba(0, 162, 255, 0.4), rgba(242, 9, 149, 0.4));

    border-radius: 20px;

    padding: 2rem;

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);

    backdrop-filter: blur(10px);

    border: 1px solid rgba(255, 255, 255, 0.2);

    text-align: center;

}



.values-title {

    color: #fff200;

    font-size: 2rem;

    margin: 0 0 1.5rem;

    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);

    font-family: 'Bebas Neue', sans-serif;

    letter-spacing: 2px;

    text-align: center;

}



.zone-content {

    color: white;

    font-size: 1.1rem;

    line-height: 1.8;

}



.zone-main {

    margin-bottom: 1rem;

}



.zone-cities {

    opacity: 0.9;

}



.philosophy-content {

    color: white;

    font-size: 1.1rem;

    line-height: 1.8;

    max-width: 800px;

    margin: 0 auto;

}



.philosophy-quote {

    margin-bottom: 1rem;

    font-style: italic;

}



.philosophy-text {

    text-align: center;

}



/* ==========================

   SECTION CE QUI NOUS DIFFÉRENCIE

   ========================== */



.team-section {

    max-width: 1200px;

    margin: 2rem auto;

    padding: 2rem;

    background: linear-gradient(135deg, rgba(0, 162, 255, 0.4), rgba(242, 9, 149, 0.4));

    backdrop-filter: blur(10px);

    border-radius: 20px;

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);

    border: 1px solid rgba(255, 255, 255, 0.2);

}



.section-title {

    text-align: center;

    color: #fff200;

    font-size: 2rem;

    margin: 0 0 2rem 0;

    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);

    font-family: 'Bebas Neue', sans-serif;

    letter-spacing: 2px;

}



.team-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

    gap: 2rem;

    margin-top: 2rem;

}



.team-member {

    background: rgba(255, 255, 255, 0.95);

    padding: 2rem;

    border-radius: 15px;

    text-align: center;

    transition: all 0.3s ease;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);

}



.team-member:hover {

    transform: translateY(-10px);

    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);

}



.value-icon {

    font-size: 2.5rem;

    color: #00a2ff;

    margin-bottom: 1rem;

}



.member-name {

    color: #333;

    font-size: 1.5rem;

    margin-bottom: 0.5rem;

    font-weight: bold;

    font-family: 'Bebas Neue', sans-serif;

    letter-spacing: 1px;

}



.member-description {

    color: #666;

    margin-top: 1rem;

    line-height: 1.6;

    font-size: 0.98rem;

    font-family: 'Work Sans', sans-serif;

}



.member-skills {

    margin-top: 1rem;

    padding-top: 1rem;

    border-top: 1px solid #eee;

}



.skill-tag {

    display: inline-block;

    background: #f0f8ff;

    color: #00a2ff;

    padding: 0.2rem 0.8rem;

    border-radius: 15px;

    font-size: 0.8rem;

    margin: 0.2rem;

    font-weight: bold;

    font-family: 'Work Sans', sans-serif;

}



/* ==========================

   RESPONSIVE - MOBILE UNIQUEMENT

   ========================== */



@media (max-width: 768px) {

    /* Navigation - disposition comme page contact - REMONTÉ */

    .navigation {

        display: flex;

        flex-wrap: wrap;

        justify-content: center;

        gap: 1rem;

        width: 100%;

        margin-top: -1.5rem;

    }

    

    .nav-btn {

        padding: 0.8rem 1.5rem;

        font-size: 1rem;

        text-align: center;

    }

    

    /* Ordre et taille des boutons */

    .nav-home {

        order: 1;

        flex: 0 1 auto;

    }

    

    .nav-contact {

        order: 2;

        flex: 0 1 auto;

    }

    

    .nav-prestations {

        order: 3;

        flex: 0 1 auto;

        max-width: 90%;

    }

    

    /* Animation vinyles */

    /* Animation vinyles DANS LA SECTION @media (max-width: 768px) */

.vinyl-intro {

    width: 150px;

    height: 150px;

}



.vinyl-center-intro {

    width: 50px;

    height: 50px;

}



.vinyl-intro-2 {

    width: 180px;

    height: 180px;

}



.vinyl-intro-2 .vinyl-center-intro {

    width: 60px;

    height: 60px;

}



.vinyl-intro-3 {

    width: 130px !important;

    height: 130px !important;

    left: 10% !important;

    right: auto !important;

    bottom: 15% !important;

}



.vinyl-intro-3 .vinyl-center-intro {

    width: 45px;

    height: 45px;

}

    

    /* Carte principale - REMONTÉ */

    .main-card {

        margin: 0.3rem 0.8rem 0.8rem;

        padding: 0.8rem 1.2rem;

    }



    .intro-text p:last-child {

        margin-bottom: 0.4rem;

    }



    .brand-name {

        font-size: 1.8rem;

        letter-spacing: 2px;

        color: #f940e9;

    }

    

    .card-header {

        font-size: 1rem;

        line-height: 1.5;

    }

    

    /* Mobile : "FAMILY MIX," sur la première ligne */

    .brand-name-desktop {

        display: none;

    }

    

    .brand-name-mobile {

        display: inline;

    }

    

    .brand-name-mobile br {

        display: block !important;

    }

    

    /* Texte intro - permettre retour à la ligne */

    .intro-text {

        font-size: 0.95rem;

        line-height: 1.6;

        padding: 0 0.5rem;

    }

    

    .intro-text p {

        white-space: normal;

        word-wrap: break-word;

        margin-bottom: 1rem;

    }

    

    /* Phrase satisfaction - 3 lignes forcées */

    .satisfaction-paragraph {

        text-align: center;

        line-height: 1.7;

        display: block;

    }

    

    .satisfaction-paragraph br {

        display: block !important;

    }

    

    /* Tagline - 2 lignes forcées */

    .intro-text .tagline {

        white-space: normal;

        font-size: 1rem;

        line-height: 1.7;

        display: block;

    }

    

    .tagline br {

        display: block !important;

    }

    

    /* Sections valeurs - REMONTÉ */

    .values-section {

        margin: 1rem 0.8rem;

        padding: 1.2rem;

    }

    

    .values-title {

        font-size: 1.6rem;

        margin-bottom: 1rem;

        letter-spacing: 1.5px;

    }

    

    .zone-content {

        font-size: 0.95rem;

        line-height: 1.6;

    }

    

    .zone-cities {

        font-size: 0.9rem;

    }

    

    .philosophy-content {

        font-size: 0.95rem;

        line-height: 1.6;

    }

    

    /* Citation en 2 lignes MOBILE UNIQUEMENT */

    .quote-desktop {

        display: none;

    }

    

    .quote-mobile {

        display: flex;

        flex-direction: column;

        align-items: center;

        gap: 0.2rem;

    }

    

    .quote-line {

        display: block;

        text-align: center;

    }

    

    /* Section équipe - REMONTÉ */

    .team-section {

        margin: 1.5rem 0.8rem 2rem;

        padding: 1rem;

    }

    

    .section-title {

        font-size: 1.6rem;

        margin-bottom: 1.5rem;

    }

    

    .team-grid {

        grid-template-columns: 1fr;

        gap: 1.5rem;

    }

    

    .team-member {

        padding: 1.5rem;

    }

    

    .member-name {

        font-size: 1.3rem;

    }

    

    .member-description {

        font-size: 0.9rem;

        line-height: 1.5;

    }

}



@media (max-width: 480px) {

    /* Carte principale - ENCORE PLUS REMONTÉ */

    .main-card {

        margin: 0.2rem 0.5rem 0.5rem;

        padding: 0.8rem 1.2rem;

    }



    .intro-text p:last-child {

        margin-bottom: 0.4rem;

    }

    

    .brand-name {

        font-size: 1.5rem;

        letter-spacing: 1.5px;

    }

    

    .card-header {

        font-size: 0.9rem;

        line-height: 1.4;

    }

    

    .intro-text {

        font-size: 0.85rem;

        line-height: 1.5;

        padding: 0 0.3rem;

    }

    

    .intro-text .tagline {

        font-size: 0.9rem;

    }

    

    /* Sections valeurs - ENCORE PLUS REMONTÉ */

    .values-section {

        margin: 0.8rem 0.5rem;

        padding: 1rem;

    }

    

    .values-title {

        font-size: 1.4rem;

        margin-bottom: 0.8rem;

    }

    

    .zone-content {

        font-size: 0.85rem;

    }

    

    .zone-cities {

        font-size: 0.8rem;

    }

    

    .philosophy-content {

    color: white;

    font-size: 0.85rem;

    line-height: 1.5;

    max-width: 800px;

    margin: 0 auto;

}



.philosophy-quote {

        font-size: 0.9rem;

    }





.philosophy-text {

    text-align: center;

}



/* DESKTOP : phrase philosophie sur une seule ligne */

@media (min-width: 769px) {

    .philosophy-text br {

        display: none;

    }

    

    .philosophy-text {

        white-space: nowrap;

    }

}

    

    /* Section équipe - ENCORE PLUS REMONTÉ */

    .team-section {

        margin: 1rem 0.5rem 1.5rem;

        padding: 0.8rem;

    }

    

    .section-title {

        font-size: 1.4rem;

        margin-bottom: 1rem;

    }

    

    .team-member {

        padding: 1.2rem;

    }

    

    .value-icon {

        font-size: 2rem;

    }

    

    .member-name {

        font-size: 1.2rem;

    }

    

    .member-description {

        font-size: 0.85rem;

    }

    

    .skill-tag {

        font-size: 0.75rem;

        padding: 0.15rem 0.6rem;

    }

}



/* DESKTOP : Masquer la version mobile de la citation */

@media (min-width: 769px) {

    .quote-mobile {

        display: none;

    }

    

    .quote-desktop {

        display: inline;

    }

    

    /* Cacher les <br> sur DESKTOP UNIQUEMENT */

    .satisfaction-paragraph br,

    .tagline br {

        display: none !important;

    }

}



@media (prefers-reduced-motion: reduce) {

    .vinyl-intro-animation {

        display: none;

    }

}

