/*Importing Google fonts*/

@import url('https://fonts.googleapis.com/css2?family=Miniver&family=Poppins:ital,wght@0,400;0,600;0,700;1,300;1,400;1,500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Miniver&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
}

:root{
    /* Color */
    --white-color: #fff;
    --dark-colors: #252525;
    --primary-color: #c0a409;
    --secondary-color:#f7c7dd;
    --light-pink-color: #faf4f5;
    --medium-gray-color:#ccc;

    /* Font size */
    --font-size-s: 0.9rem;
    --font-size-n: 1rem;
    --font-size-m: 1.12rem;
    --font-size-l: 1.5rem;
    --font-size-xl: 2rem;
    --font-size-xxl: 2.3rem;

    /* Font weight */
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;

    /* Bord radius */
    --Border-radius-s: 8px;
    --Border-radius-m: 30px;
    --Border-radius-circle: 50%;

    /* Site max width */
    --site-max-width: 1300px;
}

html {
    scroll-behavior: smooth;
}

/* styling for the whole site */

.section-content {
    margin: 0 auto;
    padding: 0 20px;
    max-width: var(--site-max-width);
}

.section-title {
    text-align: center;
    padding: 40px 0 60px;
    text-transform: uppercase;
    font-size: var(--font-size-xl);
}

.section-title::after{
    content: "";
    width: 80px;
    height: 5px;
    display: block;
    margin: 10px auto 0;
    border-radius: var(--Border-radius-s);
    background: var(--primary-color);
}

ul{
    list-style: none;
}

a{
    text-decoration: none;
}

button{
    cursor: pointer;
    border: none;
    background: none;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: 'Poppins', cursive;
}

body {

}

.header {
    background-image: url("img/Home.svg");
    object-fit: contain;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    min-height: 100vh;
    padding: 0 10%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    background-color: var(--light-pink-color);
}


.media ul{
    list-style: none;
    position: absolute;
    right: 20px;
    top: 20%;
    padding: 10px 10px;
    color: darkred;
}

.media ul li {
    font-size: 25px;
    margin: 24px 0;
    transition: 0.3s;
}

.media ul li a{
    color: #D42C16;
}

.media ul li:hover {
    transform: scale(1.9);

}

.agenda {
    width: 100%;
    min-height: 100vh;
    margin: 10px 5px 15px;
}



.about-section .about-details .section-title{
    padding: 0;
}

.about-section .about-details .text {
    line-height: 30px;
    margin: 50px 0 30px;
    text-align: center;
    font-size: var(--font-size-m);
}

.about-section .about-details {
    max-width: 50%;
}

.about-section .social-link-list{
    display: flex;
    gap: 25px;
    justify-content: center;
}

.about-section .social-link-list .social-link{
    color: #EDC003;
    font-size: var(--font-size-l);
    transition: 0.2s ease;
}

.about-section .social-link-list .social-link:hover{
    color: var(--secondary-color)
}



/* About Section styling */

.about-section {
    padding: 80px 0;
    background: var(--light-pink-color);
}
.about-section .section-content{
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: space-around;
}
.about-section .about-image-wrapper .about-image{
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: var(--Border-radius-circle);
}
/* End About Section */
.agenda-title {
    text-align: center;
    font-size: 50px;
    font-weight: bolder;
    color: darkred;
    margin: 10px 0 15px;
}

.planning {
    padding: 20px;
    font-size: 20px;
    display: grid;
}

.part1{
    margin: 20px;
}

.part2 {
    margin: 20px;
}

.logo {
    width: 50%;
    top: -5px;
    left: 36%
}

/* Styling Contact */

.contact-section{
    padding: 30px 0 100px;
    background: var(--light-pink-color);
}
.contact-section .section-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    justify-content: space-around;
}
.contact-section .contact-info-list .contact-info{
    display: flex;
    gap: 20px;
    margin: 20px 0;
    align-items: center;
}
.contact-section .contact-info-list .contact-info i{
    font-size: var(--font-size-m);
}

footer{
    background-color: #FDED9F;
    height: 7vh;
    bottom: 0;
    min-height: 40px;
    padding: 20px 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

footer p
{
    color: darkred;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 8px;
    font-size: 0.8em;
}

@media  screen and (max-width: 900px) {
    .about-section .about-details,
    .contact-section .contact-form {
        max-width: 100%;
    }
    .contact-section .section-content {
        align-items: center;
        flex-direction: column-reverse;
    }
    .about-section .section-content{
        gap: 70px;
        flex-direction: column-reverse;
    }
    .about-section .about-image-wrapper .about-image{
        width: 100%;
        height: 100%;
        max-width: 250px;
        aspect-ratio: 1;
    }
}

@media only screen and (max-width: 600px) {

    body {
        /*overflow: hidden;*/
    }

    .nav-links {

        height: 92vh;
        width: 100%;
    }

    nav .nav-links li a {
        font-size: 15px;
        white-space: nowrap;
    }

    .header {

        background-size: 600px;
        min-height: 50vh;
    }
    .agenda {
        margin-top: 0;
    }

    .planning {
        font-size: 15px;
    }

    .agenda-title {
        text-align: center;
        font-size: 25px;
        font-weight: bolder;
        color: darkred;
        margin: 0 0 15px 0;
    }


    .media ul{
        list-style: none;
        position: absolute;
        /*right: 5%;*/
        top: 10%;
        padding: 5px 5px;
    }
    .media ul li {
        font-size: 20px;
        margin: 10px 0;
    }

}

@media only screen and (max-width: 414px){

    .logo h4 a {
        font-size: 15px;
    }

    .header {
        background-size: 400px;
       min-height: 45vh;
    }
    .media ul{
        list-style: none;
        position: absolute;
        /*left: 5%;*/
        top: 4%;
        padding: 5px 5px;
        color: darkred;
    }

    .media ul li {
        font-size: 20px;
        margin: 10px 0;

    }

    .planning {
        font-size: 12px;
    }

    .logo-contact img{
        display: none;
    }

    .artiste1 .about-artiste1 p {
        overflow: scroll;
    }

}


@media screen and (orientation: landscape) {
    #toolbar {
        position: fixed;
        width: 2.65em;
        height: 100%;
    }


    p {
        margin-left: 2em;
    }

}