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;
}

/* CONTENT */
.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;
}

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

/* Titre Collab */
.titre-collab {
    display: flex;              /* aligne les éléments sur une ligne */
    align-items: center;        /* centre verticalement */
    justify-content: center;    /* centre horizontalement */
    gap: 15px;                  /* espace entre h2, h3 et l'image */
    margin-top: 30px;
    margin-bottom: 30px;
}

.titre-collab h2 {
    font-family: 'Barbra', sans-serif; /* police différente pour le "x" */
    font-size: 3rem;
    color: #49252F;
    margin: 0;
}

.titre-collab h3 {
    font-family: 'Inter', sans-serif; /* police H2 */
    font-size: 3rem;
    color: #101211;
    margin: 0;
}

.titre-collab .logo-mints {
    max-width: 150px;       /* taille de l'image */
    height: auto;
    border-radius: 60%;    /* optionnel, arrondi */
}

/* Tarifs */
.grid-tarifs {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.tarif-card {
    display: flex;
    justify-content: space-between;
    background-color: #EBD3BB;
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
}

.tarif-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.tarif-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transform: translateY(-3px) !important;
}

.tarif-left {
    flex: 2;
}

.tarif-left h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.8rem;
    color: #49252F;
    margin-bottom: 10px;
}

.tarif-left .description {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #101211;
}

.tarif-right {
    flex: 1;
    text-align: right;
}

.tarif-right .mention {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-style: italic;
    color: #101211;
    margin-bottom: 5px;
}

.tarif-right .prix {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
    color: #49252F;
}

.collab {
    background-color: #FFFCF6;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    text-align: center;
}

.collab p {
    padding: 30px 20px;
    margin-top: 20px;
    margin-bottom: 30px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #101211;
    line-height: 1.6;
}

.collab-liens {
    background-color: #FFFCF6;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    max-width: 600px;
    margin: 40px auto;
    padding: 20px;
    display: flex;
    flex-direction: column;    /* colonne pour tout centrer */
    align-items: center;       /* centre horizontalement */
    text-align: center;
    gap: 5px;                 /* espace entre logo, texte et liens */
}

.collab-liens img.logo-mints {
    width: 120px;              /* taille du logo */
    height: auto;
    border-radius: 8px;        /* optionnel, arrondi */
}

.collab-liens p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #101211;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    margin-bottom: 10px;
}

.collab-liens .lien-blandine {
    display: flex;
    justify-content: center;   /* centre les icônes horizontalement */
    gap: 20px;                 /* espace entre les icônes */
    flex-wrap: wrap;           /* permet de passer sur plusieurs lignes si nécessaire */
}

.collab-liens .lien-blandine a img {
    width: 50px;
    height: 50px;
    transition: transform 0.2s, filter 0.2s;
}

.collab-liens .lien-blandine a img:hover {
    transform: scale(1.1);
    filter: brightness(1.2);
}

.btn-tarif-contact {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    margin-bottom: 40px;
    padding: 0 20px;
}

.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);
}

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

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

.mentionslegales a:hover {
    text-decoration: underline;
}
/* MEDIA QUERY */
/* Tablette */
@media screen and (max-width: 1024px) {
    .tarif-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 15px;
    }

    .tarif-right {
        text-align: left;
    }

    .tarif-left h4 {
        font-size: 1.6rem;
    }

    .tarif-left .description {
        font-size: 0.95rem;
    }

    .tarif-right .prix {
        font-size: 1.4rem;
    }

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

/* Mobile */
@media screen and (max-width: 768px) {
    .grid-tarifs {
        padding: 0 15px;
    }

    .tarif-left h4 {
        font-size: 1.4rem;
    }

    .tarif-left .description {
        font-size: 0.9rem;
    }

    .tarif-right .prix {
        font-size: 1.3rem;
    }

    .tarif-right .mention {
        font-size: 0.85rem;
    }

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

/* Petit mobile */
@media screen and (max-width: 480px) {
    .tarif-left h4 {
        font-size: 1.2rem;
    }

    .tarif-left .description {
        font-size: 0.85rem;
    }

    .tarif-right .prix {
        font-size: 1.1rem;
    }

    .tarif-right .mention {
        font-size: 0.8rem;
    }

    .btn-tarif-contact {
        flex-direction: column;
        gap: 15px;
    }

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