@font-face {
    font-family: 'Morn-DemiBoldOblique';
    src: url('fonts/Morn-DemiBoldOblique.woff2') format('woff2'),
         url('fonts/Morn-DemiBoldOblique.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins-Regular';
    src: url('fonts/Poppins-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'YesevaOne-Regular';
    src: url('fonts/YesevaOne-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
/* Reset styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    font-family: 'Morn-DemiBoldOblique', Arial, sans-serif;
    background-color: #000;
    color: #fff;
    height: 100%;
}

.not-scrollable {
    overflow: hidden;
}

.mobile-container {
    max-width: 90%;
    margin: 20px auto;
    padding: 60px;
    border: 2px solid #333;
    border-radius: 10px;
    background-color: #282828bf; /* couleur à appliquer */
    background-image: url('images/texture.svg');
    background-blend-mode: multiply; /* Mélange la couleur avec le SVG */
    background-size: cover;
    position: relative;
    min-height: 100vh;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}


/* Header */
header {
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
}

/* Main content */
main {
    z-index: 999;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

h1 {
    text-shadow: 7px 5px 8px #282828;
    font-size: 2.2rem;
}
#backgroundMusic {
    display: none;
} 
#playMusicBtn {
    z-index: 999;
    position: absolute;
    left: 10px;
    top: 10px;
}

.music-btn {
    z-index: 999;
    text-shadow: 7px 5px 8px #282828;
}

.music-icon {
    width: 30px;
}

#pauseMusicBtn {
    display: none;
    position: absolute;
    left: 10px;
    top: 10px;
}
.artist-btn {
    background-color: #444;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
}

.artist-btn:hover {
    background-color: #666;
}

/* Flamingo image */
.flamingo-image {
    margin-top: 30px;
    
}

.flamingo-img {
    position: absolute;
    width: 46%;
    right: -12%;
    bottom: -11%;
    height: auto;
    border-radius: 50px 50px 0 0;
    opacity: 30%;
    object-fit: cover; /* Ensures the image is cropped to fit the container */
    object-position: bottom; /* Focuses on the bottom part of the image */
}


/* Footer */
footer {
    z-index: 9999;
    text-align: center;
    text-transform: uppercase;
    text-shadow: 7px 5px 8px #282828;
}

a {
    color: #fff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.artist-link {
    float: left;
}

.about-link {
    float: right;
}

.logo {
    text-decoration: none;
}

.logo-link:hover {
    text-decoration: none;
}

/* ===================== */
/* Media Queries for Mobile */
/* ===================== */

@media (max-width: 600px) {
    /* Adjust the container padding for smaller screens */
    .mobile-container {
        padding: 20px;
        min-height: 90vh;
        height: auto;
    }

    /* Adjust the logo and email icon sizes */
    .logo-img, .icon-img {
        max-height: 120px;
    }

    .logo-img {
        width: 25vh;
    }

    /* Decrease the font size for mobile */
    h1 {
        font-size: 1.2rem;
    }

    .artist-btn {
        font-size: 0.9rem;
        padding: 8px 16px;
    }

    /* Adjust the size of the flamingo image for mobile */
    .flamingo-img {
        width: 100%;
        left: 35%;
        border-radius: 40px 40px 0 0;
    }

    /* Ensure footer is still visible and accessible */
    footer {
        padding: 8px 0;
    }
}

/* About Page Specific Styles */
.about-text {
    font-size: 1.2rem;
    text-align: center;
    line-height: 1.6;
    padding: 0 10px;
    margin-bottom: 15px;
}

.about-card {
    z-index: 999;
    background-color: #333;
    border-radius: 10px;
    padding: 20px;
    color: #fff;
    box-shadow: rgba(0, 0, 0, 0.18) 0px 2px 4px;
    align-items: center;
    margin-top: 20px;
    font-family: 'Poppins-Regular';
}

/* Media Queries for Mobile */
@media (max-width: 600px) {
    .about-text {
        font-size: 1rem;
        padding: 0 5px;
    }
}

/* Existing styles from your main page */

/* Artists Page Specific Styles */
.artist-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.artist-card {
    z-index: 999;
    display: flex;
    background-color: #333;
    border-radius: 10px;
    padding: 20px;
    color: #fff;
    box-shadow: rgba(0, 0, 0, 0.18) 0px 2px 4px;
    align-items: center;
}
.artist-card-details {
    z-index: 999;
    display: flex;
    flex-direction: column;
    background-color: #333;
    border-radius: 10px;
    padding: 20px;
    color: #fff;
    box-shadow: rgba(0, 0, 0, 0.18) 0px 2px 4px;
    align-items: center;
    margin-bottom: 20px;
}

.artist-image {
    flex-shrink: 0;
    margin-right: 20px;
}

.artist-image-details {
    flex-shrink: 0;
}

.artist-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}

.artist-info {
    z-index: 999;
    flex-grow: 1;
}

.artist-info .description {
    font-family: 'Poppins-Regular';
}

.artist-header h2 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.artist-info .label {
    font-size: 1rem;
    color: #aaa;
}

.artist-info .location {
    font-size: 1rem;
    color: #ddd;
}

.tag-list {
    margin: 20px 0;
    display: flex;
    justify-content: center;
    gap: 10px; /* Espace entre les tags */
    flex-wrap: wrap; /* Permet aux tags de se placer sur plusieurs lignes si nécessaire */
}

.tag {
    background-color: #7accc8; /* Couleur de fond du tag */
    color: #fff; /* Couleur du texte */
    padding: 8px 12px; /* Espacement interne */
    border-radius: 20px; /* Bordure arrondie */
    font-size: 0.9rem; /* Taille du texte */
    font-weight: bold; /* Texte en gras */
    text-transform: uppercase; /* Texte en majuscules */
    display: inline-block;
    white-space: nowrap; /* Empêche le texte de se couper */
    transition: background-color 0.3s ease; /* Transition pour l'animation au hover */
}

.tag:hover {
    background-color: #7accc8c6; /* Couleur de fond au survol */
}

.artist-info .label {
    font-weight: bold;
}

.discover-btn {
    display: block;
    float: right;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #febe98;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.discover-btn:hover {
    background-color: #febd98ce;
}

/* Media Queries for Mobile */
@media (max-width: 600px) {
    .artist-card {
        flex-direction: column;
        align-items: center;
    }

    .artist-image {
        flex-shrink: 0;
        margin-right: 0px;
    }

    .artist-photo {
        width: 100%;
        max-width: 150px;
        height: auto;
        margin-bottom: 10px;
    }

    .artist-info .description {
        font-size: 0.9rem;
    }

    .discover-btn {
        display: inline-block;
        float: none;
    }
}


/* Performances Page */
.performance-list {
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.performance-photo {
    width: 25%;
    padding: 10px;
    height: auto;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.18) 0px 2px 4px;
}

/* Media Queries for Mobile */
@media (max-width: 600px) {
    .performance-item {
        max-width: 100%;
    }
}

/* Links Page Specific Styles */
.links-list {
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px 0;
}

.link-item {
    background-color: #444;
    color: #fff;
    padding: 15px 20px;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

.link-item:hover {
    background-color: #febe98;
}

/* Social links */
.social-links {
    z-index: 9999;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.social-item {
    display: flex;
    align-items: center;
    color: #fff;
    padding: 15px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

.social-icon {
    width: 24px;
    height: 24px;
}

.social-text {
    margin-left: 8px;
    font-size: 0.9rem;
}

/* Back link */
.back-link {
    display: inline-block;
    margin-top: 30px;
    padding: 10px 20px;
    background-color: #febe98;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.back-link:hover {
    background-color: #ff478b;
}

/* Media Queries for Mobile */
@media (max-width: 600px) {
    .link-item, .social-item {
        font-size: 1rem;
        padding: 12px 16px;
    }

    .social-icon {
        width: 20px;
        height: 20px;
    }
}

/* Container for the image (this will be dynamically added) */
.image-container {
    position: absolute;
    pointer-events: none; /* To make sure clicks go through the image */
}

/* The image itself */
.animated-image {
    width: 100px; /* Set a width for the image */
    height: 100px; /* Set a height for the image */
    opacity: 0;
    transform: scale(0); /* Start from scale 0 */
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

/* Animation for when the image becomes active */
.image-container.active .animated-image {
    opacity: 1;
    transform: scale(1); /* Scale to normal size */
}