body {
    background-color: #FFFCF6;
}

/* FONTS */
@font-face {
    font-family: 'Barbra';
    src: url('../fonts/barbra-font/Barbra-Regular.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter/Inter-VariableFont_opsz\,wght.ttf') format('truetype');
    font-display: swap;
} 

h1 {
    display: none;
}

/* TITRE */
.titre {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 20px;
}
.titre h2, 
.titre h3 {
    display: inline-block;
    vertical-align: middle;
    margin: 0;
}

.titre h2 {
    font-family: 'Inter', sans-serif;
    font-size: 3rem;
    color: #101211;
    margin-right: 10px;
}

.titre h3 {
    font-family: 'Barbra', sans-serif;
    font-size: 3rem;
    color: #49252F;
}

.a-propos-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Inter', sans-serif;
    color: #101211;
}

.intro-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.intro-container.visible {
    opacity: 1;
    transform: translateY(0);
}

.photo-bloc img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #49252F;
    transition: transform 0.3s ease;
}

.photo-bloc img:hover {
    transform: scale(1.05);
}

.texte-bloc {
    max-width: 600px;
}

.texte-bloc h2 {
    margin: 0 0 10px 0;
    font-size: 28px;
    color: #49252F;
    font-family: 'Barbra', sans-serif; 
}

.texte-bloc p {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
}

.texte-bloc a {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    color: #49252F;
    text-decoration: none;
}

.texte-bloc a:hover {
    text-decoration: underline;
}

/* Texte complémentaire en dessous */
.texte-complementaire {
    margin-top: 20px;
    line-height: 1.6;
    padding: 0 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.texte-complementaire.visible {
    opacity: 1;
    transform: translateY(0);
}

.texte-complementaire p {
    margin-bottom: 20px;
    font-size: 16px;
}

.texte-complementaire a {
    color: #49252F;
    text-decoration: none;
    font-weight: bold;
}

.texte-complementaire a:hover {
    text-decoration: underline;
}

.spotify-player {
    display: flex;
    justify-content: center;
    margin: 20px auto;
    max-width: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.spotify-player iframe {
    border-radius: 12px;
}

.contact-linkedin-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 40px 0;
}

.btn-tarif-contact a {
    display: inline-block;
    padding: 14px 36px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    text-decoration: none;
    color: #FFFCF6;
    background-color: #49252F;
    border-radius: 40px;
    transition: all 0.3s ease;
}

.btn-tarif-contact a:hover {
    background-color: #101211;
    color: #FFFCF6;
    transform: translateY(-2px);
}

.linkedin img {
    width: 50px;
    height: 50px;
    transition: transform 0.3s ease;
}

.linkedin img:hover {
    transform: scale(1.1);
}

.mentionslegales p {
    padding: 30px 100px;
    margin-top: 20px;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-style: italic;
    font-size: 0.8rem;
    color: #101211;
}

/* MEDIA QUERY */
/* Tablette */
@media screen and (max-width: 1024px) {
    .a-propos-section {
        padding: 40px 30px;
    }

    .texte-bloc {
        max-width: 100%;
    }

    .intro-container {
        gap: 20px;
    }

    .photo-bloc img {
        width: 160px;
        height: 160px;
    }

    .texte-bloc h2 {
        font-size: 24px;
    }

    .texte-bloc p {
        font-size: 16px;
    }

    .texte-complementaire p {
        font-size: 15px;
    }

    .spotify-player {
        max-width: 350px;
    }
}

/* Mobile */
@media screen and (max-width: 768px) {
    .a-propos-section {
        padding: 30px 20px;
    }

    .texte-bloc h2 {
        font-size: 22px;
    }

    .texte-bloc p {
        font-size: 15px;
    }

    .texte-complementaire p {
        font-size: 14px;
    }

    .photo-bloc img {
        width: 140px;
        height: 140px;
    }

    .spotify-player {
        max-width: 350px;
    }

    .btn-tarif-contact a {
        font-size: 1rem;
        padding: 12px 30px;
    }
}

/* Petit mobile */
@media screen and (max-width: 480px) {
    .a-propos-section {
        padding: 20px 15px;
    }

    .texte-bloc h2 {
        font-size: 20px;
    }

    .texte-bloc p {
        font-size: 14px;
    }

    .texte-complementaire p {
        font-size: 13px;
    }

    .photo-bloc img {
        width: 120px;
        height: 120px;
    }

    .spotify-player {
        max-width: 350px;
    }

    .btn-tarif-contact a {
        font-size: 0.95rem;
        padding: 10px 25px;
    }

    .contact-linkedin-container {
        flex-direction: column;
        gap: 15px;
    }
}