/*Style pour mon vidéo youtube.*/
.video_section {
    float: left;
    width: 100%;
    text-align: center;
    margin: 40px 0;
}

.video_container {
    display: inline-block;
    width: 90%;
    max-width: 800px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.video_container iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: none;
}
/*Style pour ma liste de contact dans la section*/
.contact_box {
    width: 80%;               
    max-width: 500px;         
    margin: 40px auto;       
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.9); 
    border: 3px solid #f1c40f; 
    border-radius: 15px;      
    box-shadow: 0 10px 20px rgba(0,0,0,0.1); 
    text-align: left;         
}

.contact_box h2 {
    text-align: center;      
    margin-top: 0;
    color: #333;
}

.contact_list {
    list-style: none;         
    padding: 0;
    margin: 20px 0 0 0;
}

.contact_list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;           
    align-items: center;
}

.contact_list i {
    color: #f1c40f;           
    width: 40px;             
    font-size: 1.4rem;
    text-align: center;
}
/*Style de mon article pour l'image et ma balise <p>*/
.content3{
	margin-top: 10px;
text-align: center;

}
/*Style pour mes citations de livre et du site web.*/
blockquote{
	clear: both;              
    margin: 40px auto;        
    padding: 25px;
    width: 85%;
    max-width: 750px;
    background-color: rgba(241, 196, 15, 0.05);
    border-left: 6px solid #f1c40f;
    border-radius: 0 15px 15px 0;
    font-family: 'Georgia', serif;
    display: block;
}
/*Style pour mon footer en bas de page.*/
footer {
    clear: both;       
    width: 100%;
    text-align: center;
    padding: 20px 0;
    margin-top: 50px; 
    border-top: 1px solid #ddd;
}

footer p {
    margin: 5px 0;      
}
/*Style pour les sources du livre dans le footer.*/
.source-livre cite {
    font-style: italic; 
}

.source_livre a {
    color: #333;
    text-decoration: underline;
}
/*Ligne pour créer mon dégradé sur ma page à propos de mon site web.*/
body{
background-image: linear-gradient(135deg, #FFF9E3 0%, #F9E076 100%);
}
/*Style de ma liste pour les compétences du restaurant.*/
.competences {
    clear: both;
    width: 80%;
    max-width: 600px;
    margin: 30px auto;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
}

.competences h2 {
    text-align: center;
    color: #333;
}

.competences ul {
    list-style-type: disc;
    padding-left: 40px;
}

.competences li {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: #444;
}
/*Centrer le lien et le texte à l'intérieur de la balise <p> */
.texterandom{
	text-align: center;
    width: 100%;
    margin: 20px 0;
    clear: both;
}