/* importation de la police */
@font-face {
    font-family: "Franchise";
    src: url("../assets/Franchise.ttf") format("truetype");
}

@font-face {
    font-family: "Poppins_Med";
    src: url("../assets/Poppins/Poppins-Medium.ttf") format("truetype");
}

@font-face {
    font-family: "Poppins_SemiBold";
    src: url("../assets/Poppins/Poppins-SemiBold.ttf") format("truetype");
}

/* valeurs générales */
html{
    height:100%;
    color:#373737;
}
body {
    font-family: Poppins_Med;
    background-color:white;
    color:#373737;
}

h2{
    color: #000;
    text-align: center;
    font-family: Poppins_Med;
    font-size: 100%;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

h3{
    color: black ;
    text-align: justify;
    font-family: Poppins_Med;
    font-weight: 700;
    font-size: 100%;
    font-style: normal;
    line-height: normal;
}

h4{
    color: white;
    text-align: center;
    font-family: Franchise, sans-serif;
    font-size: 35px;
    font-weight: 400;
    margin : 0px;
}

.content{
    font-family: Poppins_Med;
    justify-content: space-evenly;
    display: flex;
    flex-direction: column;
    text-align: justify;
    font-size: 20px;
    color:#264040;
    width: 70%;
}

.items_placement{
    display: flex;
    flex-direction: column;
    position: relative;
    top: -20em;
}

.box_colum{
    display: flex; 
    flex-direction: column;
    position: relative;
    text-align: justify;
    width: 100%;
    font-family: Poppins_Med;
    font-size: 20px;
}

.box_row{
    display: flex; 
    flex-direction: row;
    position: relative;
    justify-content: space-evenly;
    text-align: center;
    text-decoration: none;
    width: 100%;
}

.login-form {
    margin: 50px auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.form-control, .btn 
{
    min-height: 38px;
    border-radius: 10px;
    border: solid;
    border-width: 2px;
    text-align: center;
    min-width: 150px;
    width: 70%;
}

.btn 
{        
    font-size: 15px;
    font-weight: bold;
    text-align: center;
    color:black;
    font-family: Poppins_Med;
    background:white;
    width: 100%;
}

.btn:hover{
    color:#B41611;
}

.login-form form 
{
    margin-bottom: 15px;
    background: white;
    border: solid;
    border-width: 4px;
    padding: 30px;
    border-radius: 20px;
    min-width: 100px;
    width: 100%;
}

.title{
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.note {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 2;
    bottom: 0px;
}

.note_com{
    position: relative;
    width: 100px;
    height: 100px;
    background-color:black;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    color : white;
}

.lateral_box{
    width: 20px;
    min-width: 7px;
    max-width: 30px;
    display:block;
    background-color:#B41611;
    border-radius: 5px;
}

.affiche{
    width: 35%;
}

.com_input{
    border-radius:20px; 
    text-align: center; 
    width:400px;
    height:100px;
    border-width: 4px;
    align-items: center;
}

.commentaire_connex{
    justify-content: center;
}

.rating-buttons {
    display: flex;
    gap: 2%;
    justify-content: space-evenly;
}

.rating-buttons button {
    padding: 10px;
    border: none;
    background-color: white;
    color: black;
    border-radius: 50%;
    cursor: pointer;
    border: solid;
    border-width: 3px;
    font-size: 15px;
    font-weight: bold;
    font-family: Poppins_Med;
    width: 50px;
    height: 50px;
}

.rating-buttons button:hover {
    color: #B41611;
}

.rating-buttons button.selected {
    background-color: white;
    color: #B41611;
}

.avis img {
    display: block;
    width: 200px;
    border-radius: 50px;
}

.carte_monde {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.carte_image {
    width: 100%;
    height: auto;
    display: block;
}

a{
    text-decoration: none;
}

.film_connect:hover{
    color: #B41611;
}


/* Styles pour les écrans de petite taille (ex : téléphones) */
@media (max-width: 600px) {
    h1 {
        font-size: 17px;
        font-weight: normal;
    }
    h2{
        font-size: 15px;
    }
    h3{
        font-size: 15px;
    }
    .film_connect{
        margin-left: 2rem;
        color: black;
        font-size: 12px;
    }
}

/* Styles pour les écrans de taille moyenne (ex : tablettes) */
@media (min-width: 601px) and (max-width: 1024px) {
    h1 {
        font-size: 17px;
        font-weight: normal;
    }
    h2{
        font-size: 15px;
    }
    h3{
        font-size: 15px;
    }
    .film_connect{
        margin-left: 2rem;
        color: black;
        font-size: 15px;
    }
}

/* Styles pour les écrans larges (ex : ordinateurs de bureau) */
@media (min-width: 1025px) {
    h1 {
        font-size: 25px;
        font-weight: normal;
    }
    h2{
        font-size: 20px;
    }
    h3{
        font-size: 20px;
    }
    .film_connect{
        margin-left: 2rem;
        color: black;
        font-size: 20px;
    }
}