/* CETTE FICHE CONCERNE L'ENSEMBLE DU SITE */

/* ENSEMBLE */

body {
    margin: 0;
    padding: 0;
    font-family: Monaco, monospace;
}

main {
    display: flex;
    flex: 1;
    flex-direction: column;
    text-align: center;
}

/* PARTIES PRINCIPALES */

/* header */

header {
    background: linear-gradient(to right, #c3903a, #9e96a5);
    display: flex;
    align-items: center;
    justify-content: space-between;
    
    position: sticky;
    top: 0;

    height: 60px;
    border-top: 1px solid black;
    border-bottom: 1px solid black;
	z-index: 1;
}

.lang_selector {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

header img {
    height: auto;
    max-width: 40px;
}

header nav ul {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 100px;

    list-style: none;
    text-decoration: underline black;
    text-transform: uppercase;
}

header .nav_reseaux {
    display: flex;
    align-items: center;
    padding-right: 40px;
}

.reseaux {
    gap: 40px;
    align-items: center;
}

.reseaux img {
    width: 60px;
    height: auto;
    transition: all 0.2s ease;
}

.reseaux img:hover {
    filter: brightness(1.3);
}

/* bannière */

.banner {
    display: flex;
    justify-content: center;
}

.banner h1 {
    text-transform: uppercase;
    color: white;
    font-size: 5em;

    margin-top: 0px;
    margin-bottom: 0px;
}

/* footer */

footer {
    background: linear-gradient(to right, #c3903a, #9e96a5);
    font-size: smaller;
    text-decoration: underline;
    text-align: center;
    color: black;

    padding-top: 20px;
    padding-bottom: 20px;

    border-top: 1px solid black;
    border-bottom: 1px solid black;
}

/* infos */

.main_content p {
    text-align: justify;
    max-width: 1000px;
}

.main_content {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.main_content article img {
    width: 250px;
    height: auto;
    border-radius: 50%;
}

.mail {
    color: brown;
    text-decoration: underline;
}

.main_content article {
    padding: 20px;
    border-right: 2px solid black;
    border-left: 2px solid black;
}

/* lecteur */

#divInfos {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.player {
    position: sticky;
    background: linear-gradient(to right, #c3903a, #9e96a5);
    border-top: 1px solid black;
    border-bottom: 1px solid black;
    bottom: 0px;
    display: flex;
    flex-direction: row;
    justify-content:space-between;
    align-items: center;
    height: 50px;
    gap: 50px;
    padding-left: 20px;
    padding-right: 20px;
}

.player img {
    width: 30px;
    height: auto;
}

.player img:last-child, .player img:first-child {
    width: 20px;
}

.player .slider {
    display: flex;
    flex-direction: row;
    justify-content:space-between;
    align-items: center;
    text-align: center;
    width: 40%;
}

.buttons {
    position: absolute;
    right: 50%;
    left: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.slider section {
    width: 30%;
}

input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 80%;
    height: 10px;
    background-color: #ddd;
    border-radius: 5px;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    background-color: black;
    border-radius: 50%;
    cursor: pointer;
}

.button-icon {
    background: none;
    border: none;
    padding: 0px;
    cursor: pointer;
    outline: none;
}

#imgPlay, #imgPause {
    min-width: 40px;
    transition: all 0.1s ease;
}

#imgPlay {
    display: block;
}

#imgPause {
    display: none;
}

#imgPlay:hover, #imgPause:hover {
    transform: scale(1.05);
}

#audioPlayer {
    display: none;
}

/* AUTRES */

/* liens */

a {
    text-decoration: none;
    color: black;
}

section a, .note {
    color: brown;
}

#track-title {
    font-size: 0.9em;
}

#sectionTrackName {
    color: black;
}

#sectionTrackName:hover {
    cursor: pointer;
}