body {
    background-color: #f4f4f8;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background: linear-gradient(rgb(30, 130, 160), rgb(35, 150, 180));
    border-radius: 7px;
    text-align: center;
    padding: 20px;
    display: flex;
    align-items: center; 
    justify-content: space-between;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}

header h1 {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

header * {
    margin: 0;
    padding: 0;
}

.home {
    height: 50px;
    width: auto;
    transition: 0.3s ease;
}

.home:hover{
    transform: scale(1.05);
}

/*page acceuil*/

.access{
    display: flex;
    padding: 25px;
    position: relative;
    justify-content: center;
    gap: 20px;
}

.btn {
    display: inline-block;
    background: linear-gradient(rgb(30, 130, 160), rgb(35, 150, 180));
    text-decoration: none;
    padding: 20px 30px;
    color: white;
    font-size: large;
    border-radius: 15px;
    transition: 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.10);
}

.btn:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/*biographie (home)*/
.bio-row {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 650px;
    margin: 30px auto;
    padding: 20px;
    background-color: white;
    color: #222;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.10);
}

.bio-photo-row {
    width: 150px;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;  
    border: 4px solid rgb(35, 150, 180);
}

/* page jeu */
.catalogue {
    display: flex;
    justify-content: center; 
    flex-wrap: wrap;
    align-items: center; 
    padding: 15px;
    gap: 20px;
}

.game {
    width: 300px;
    height: 200px;
    border: 2px solid #d0d4f0;
    justify-content: center;
    align-items: center; 
    transition: 0.3s ease;
    border-radius: 13px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.10);
    background-color: white;
}

.game img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.game:hover {
    border: 2px solid rgb(35, 150, 180);
    transform: scale(1.05);
}

/*technique musical*/

.section-intro {
    max-width: 800px;
    margin: 20px auto 0;
    padding: 0 20px;
}

.section-choice {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    padding: 30px 20px 40px;
}

.section-card {
    display: flex;
    flex-direction: column;
    width: 280px;
    max-width: 90vw;
    background-color: white;
    border-radius: 15px;
    text-decoration: none;
    color: #222;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.10);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.section-card-text {
    padding: 15px 20px 20px;
}

.section-card h2 {
    margin: 0;
    font-size: 1.2rem;
}

.section-card h2 span {
    font-size: 0.9rem;
    font-weight: normal;
}

.section-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.20);
}


/*partition et mp3*/

.section-content {
    max-width: 900px;
    margin: 25px auto 40px;
    padding: 0 20px;
    line-height: 1.6;
    text-align: justify;
}

.section-content h2 {
    color: rgb(25, 120, 150);
}
