/*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&family=Monoton&family=Montserrat:ital,wght@0,100..900;1,100..900&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: #030304;
    --secondary-color:#bb8a60;
    --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 {
    /*overflow:   scroll;
}

::-webkit-scrollbar {
    width: 0px;
    background: transparent; /* make scrollbar transparent */
}*/


/* styling for the whole site */

ul{
    list-style: none;
}

a{
    text-decoration: none;
}

button{
    cursor: pointer;
    border: none;
    background: none;
}

.logo{
    width: 100%;
}

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

.section-title {
    text-align: center;
    padding: 60px 0 100px;
    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);
}

.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: var(--primary-color);
    font-size: var(--font-size-l);
    transition: 0.2s ease;
}

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

.about-details  .bio p a{
    text-decoration: none;
}

/* Navbar styling */

header {
    position: fixed;
    width: 100%;
    z-index: 5;
    height: 80px;
    background-color: var(--primary-color);
}

header .navbar{
    display: flex;
    /*padding: 20px;*/
    align-items: center;
    justify-content: space-between;
    
}

.navbar .nav-logo .logo-text {
    font-family: 'Monotsera';
    color: var(--secondary-color);
    font-size: var(--font-size-l);
    font-weight: var(--font-weight-semibold);
    width: 75px;
    cursor: pointer;
    padding: 15px 0;
}

.navbar .nav-logo {
    display: flex;
    justify-content: normal;
    align-items: flex-start;
}
.navbar .nav-logo .logo {
    width: 10%;
    padding: 0;
}

.navbar .nav-menu {
    display: flex;
    gap: 10px;
    list-style: none;
}

.navbar .nav-menu .nav-link {
    padding: 10px;
    color: var(--secondary-color);
    font-size: var(--font-size-m);
    border-radius: var(--Border-radius-m);
    transition: 0.3s ease;
}

.navbar .nav-menu .nav-link:hover{
    color: var(--white-color);
    background: var(--secondary-color);
}

.navbar :where(#menu-close-button, #menu-open-button){
    display: none;
}

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

.navbar .social-link-list .social-link{
    color: var(--secondary-color);
    font-size: var(--font-size-l);
    transition: 0.2s ease;
}

.navbar .social-link-list .social-link:hover{
    color: var(--white-color)
}
.logo {
    width: 85px;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    width: 100%;
    background-image: url("img/welcome.png");
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
}

.hero-section{
    min-height: 100vh;
    background-color: var(--primary-color);
}

.hero-section .section-content {
    display: flex;
    align-items: center;
    min-height: 100vh;
    color: var(--white-color);
    justify-content: space-between;
}

.hero-section .hero-details .title {
    font-size: var(--font-size-xxl);
    color: var(--secondary-color);
    font-family: "poppins", sans-serif;
}

.hero-section .hero-details .subtitle {
    /*margin-top: 8px;*/
    max-width: 70%;
    font-size: var(--font-size-l);
    font-weight: var(--font-weight-semibold);
}

.hero-section .hero-details .description {
    max-width: 70%;
    margin: 24px 0 40px;
    font-size: var(--font-size-m);
}

.hero-section .hero-details .buttons {
    display: flex;
    gap: 23px;
}

.hero-section .hero-details .button {
    padding: 10px 26px;
    border: 2px solid transparent;
    color: var(--primary-color);
    border-radius: var(--Border-radius-m);
    background-color: var(--secondary-color);
    font-weight: var(--font-weight-medium);
    transition: 0.3s ease;
}

.hero-section .hero-details .button:hover,
.hero-section .hero-details .contactez-nous {
    color: var(--white-color);
    border-color: var(--white-color);
    background: transparent;
}

.hero-section .hero-details .contactez-nous:hover{
    color: var(--primary-color);
    border-color: var(--secondary-color);
    background: var(--secondary-color);
}

.hero-section .hero-image-wrapper {
    max-width: 100%;
    margin-right: 30px;
}

.hero-image {
    width: 115%;
    margin-left: -15%;
}

/* End Hero Section */

/* About Section styling */

.about-section {
    padding: 120px 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: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: var(--Border-radius-circle);
}
/* End About Section */

/* Artistes Section styling */

.artistes-section {
    color: var(--white-color);
    background: var(--medium-gray-color);
    padding: 50px 0 100px;
}

.artistes-section .artistes-list {
    display: flex;
    flex-wrap: wrap;
    gap: 110px;
    align-items: center;
    justify-content: space-between;
}

.artistes-section .artistes-list .artistes-item {
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: column;
    justify-content: space-between;
   width: calc(100% /2 - 110px);
}

.artistes-section .artistes-list .artistes-item .artistes-image {
    max-width: 57%;
    border-radius: 3px;
    /*aspect-ratio: 1;*/
}

.artistes-section .artistes-list .artistes-item .name{
    margin: 12px 0;
    font-size: var(--font-size-l);
    font-weight: var(--font-weight-semibold);
}

.artistes-section .artistes-list .artistes-item .text {
    font-size: var(--font-size-s);
}

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

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

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

.agenda-section {
    color: var(--secondary-color);
    background: var(--white-color);
    padding: 150px 0 100px;


}

.agenda .agenda-title {
    text-align: center;
    font-size: 50px;
    font-weight: bolder;
    color: darkred;
    margin-top: 100px;
}

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

.part2 {
    margin: 20px;
}

/* Testimonials Section styling */
.testimonials-section{
    padding: 50px 0 100px;
    background: var(--light-pink-color);
}

.testimonials-section .slider-wrapper {
   overflow: hidden;
    margin: 0 60px 50px;
}

.testimonials-section .testimonial {
    user-select: none;
    display: flex;
    padding: 35px;
    text-align: center;
    flex-direction: column;
    align-items: center;
}

.testimonials-section .testimonial .user-image {
    width: 180px;
    height: 180px;
    object-fit: cover;
    margin-bottom: 50px;
    border-radius: var(--Border-radius-circle);
}

.testimonials-section .testimonial .name {
    margin-bottom: 16px;
    font-size: var(--font-size-m);
}

.testimonials-section .testimonial .feedback {
    line-height: 25px;
}

.testimonials-section .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    opacity: 1;
    background: var(--secondary-color);
}

.testimonials-section .swiper-slide-button{
    margin-top: -50px;
    color: var(--secondary-color);
    transition: 0.3s ease;
}

.testimonials-section .swiper-slide-button:hover{
    color: var(--primary-color);
}

/* Styling Gallery */

.gallery-section {
    padding: 50px 0 100px;
}

.gallery-section .text {
    margin-bottom: 20px;
}

.gallery-section .text .button{
    color: var(--primary-color);
}

.gallery-section .gallery-list {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.gallery-section .gallery-list .gallery-item {
    overflow: hidden;
    border-radius: var(--Border-radius-s);
    width: calc(100% / 3 - 32px);
}

.gallery-section .gallery-item .gallery-image{
    width: 85%;
    height: 85%;
    cursor: zoom-in;
    transition: 0.3s ease;
}

.gallery-section .gallery-item:hover .gallery-image{
    transform: scale(1.3);
}

/* Styling Contact */

.contact-section{
    min-height: 120vh;
    padding: 50px 0 100px;
    background: var(--light-pink-color);
}
.contact-section .section-content {
    display: flex;
    gap: 48px;
    align-items: flex-start;
    justify-content: space-between;
}
.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);
}
.contact-section .contact-form .form-input {
    width: 100%;
    height: 50px;
    padding: 0 12px;
    outline: none;
    margin-bottom: 16px;
    background: var(--white-color);
    border-radius: var(--Border-radius-s);
    border: 1px solid var(--medium-gray-color);
}
.contact-section .contact-form{
    max-width: 50%;
}
.contact-section .contact-form .form-input:focus{
    border-color: var(--secondary-color);
}

.contact-section .contact-form textarea.form-input{
    height: 100px;
    padding: 12px;
    resize: vertical;
}
.contact-section .contact-form .submit-button{
    padding: 10px 26px;
    margin-top: 10px;
    color: var(--white-color);
    font-size: var(--font-size-m);
    font-weight: var(--font-weight-medium);
    background: var(--primary-color);
    border-radius: var(--Border-radius-m);
    border: 1px solid var(--primary-color);
    transition: 0.3s ease;
}
.contact-section .contact-form .submit-button:hover{
    color: var(--primary-color);
    background: transparent;
}

/*footer section styling */
.footer-section {
   padding: 5px 0;
    background: var(--dark-colors);
}
.footer-section .section-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-section :where(.copyright-text, .social-link,
.policy-link, .footer-section .contact-footer){
    color: var(--white-color);
    transition: 0.2s ease;
}
.footer-section .social-link-list {
    display: flex;
    gap: 25px;
}
.footer-section .social-link-list .social-link{
    font-size: var(--font-size-l);
}

.footer-section .social-link-list .social-link:hover,
.footer-section .policy-text .policy-link:hover .footer-section .contact-footer{
    color: var(--secondary-color);
}
.footer-section .policy-text .separator {
    margin: 0 5px;
    color: var(--white-color);
}


/*Responsive media query code for max width 1024px*/
@media  screen and (max-width: 1024px){
    .artistes-section .artistes-list{
    gap: 60px;
    }
    .artistes-section .artistes-list .artistes-item{
        width: calc(100% /2 - 60px);
    }
margin-top: 50%;
}

/*Responsive media query code for max width 900px*/
@media  screen and (max-width: 900px){
    :root{
        --font-size-m: 1rem;
        --font-size-l: 1.3rem;
        --font-size-xl: 1.5rem;
        --font-size-xxl: 1.8rem;
    }

    body.show-mobile-menu header::before {
        content: "";
        position: fixed;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        backdrop-filter: blur(5px);
        background: rgba(0, 0, 0, 0.2);
    }

    .navbar :where(#menu-close-button, #menu-open-button){
        display: block;
        font-size: var(--font-size-l);
    }

    .navbar #menu-close-button {
        position: absolute;
        right: 30px;
        top: 30px;
    }

    .navbar #menu-open-button{
        color: var(--white-color);
    }
    .navbar .nav-menu {
      display: block;
        position: fixed;
        left: -300px;
        top: 0;
        width: 300px;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 100px;
        background: var(--white-color);
        transition: left 0.2s ease;
    }

    body.show-mobile-menu .navbar .nav-menu{
        left: 0;
    }

    .navbar .nav-menu .nav-link{
     color: var(--dark-colors);
        display: block;
        margin-top: 17px;
        font-size: var(--font-size-l);
    }

    .hero-section .section-content {
        gap: 50px;
        text-align: center;
        padding: 30px 20px 20px;
        flex-direction: column-reverse;
        justify-content: center;
    }

    .hero-section .hero-details :is(.subtitle,
    .description), .about-section .about-details,
    .contact-section .contact-form {
        max-width: 100%;
    }

    .hero-section .hero-details .buttons {
       justify-content: center;
    }

    .hero-section .hero-image-wrapper {
        max-width: 270px;
        margin-right: 0;
        margin-top: 80px;
    }

    .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;
    }

    .artistes-section .artistes-list{
        gap: 30px;
    }
    .artistes-section .artistes-list .artistes-item{
        width: calc(100% /1 - 30px);
    }
    .artistes-section .artistes-list .artistes-item .artistes-image {
        max-width: 200px;
    }
    .artistes-section .artistes-list{
        gap: 30px;
    }
    .gallery-section .gallery-list .gallery-item{
        width: calc(100%/2 - 30px);
    }
    .contact-section .section-content {
        align-items: center;
        flex-direction: column-reverse;
    }
}

/*Responsive media query code for max width 640px*/
@media screen and (max-width: 640px){

    .navbar .nav-logo .logo-text {
        padding: 5px 0;
        font-size: var(--font-size-m);
    }
    .hero-section {
        background-image: url("img/welcome_phone.png");
        /*background-repeat: no-repeat
        background-size: cover;
        min-height: 50vh;*/
    }
    .artistes-section .artistes-list{
        gap: 60px;
    }
    .artistes-section .artistes-list .artistes-item,
    .gallery-section .gallery-list .gallery-item{
        width: 100%;
    }
    .testimonials-section .swiper-slide-wrapper{
      margin: 0 0 30px;
    }
    .testimonials-section .swiper-slide-button {
        display: none;
    }
    .footer-section .section-content{
        flex-direction: column;
        gap: 20px;
    }
}


header h1 span {
    background: linear-gradient(#FFFFFF, #f7c7dd);
    background-repeat: no-repeat;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-size: 50%;
}

header h1 span:first-child {
    animation: textcolor1 2s linear infinite alternate;
}

header h1 span:last-child {
    animation: textcolor2 2s linear infinite alternate;
}
@keyframes textcolor1 {
    0%{
        background-size: 0%;
    }

    40%{
        background-size: 100%;
    }

    100%{
        background-size: 100%;
    }
}

@keyframes textcolor2 {
    0% {
        background-size: 0%;
    }

    40% {
        background-size: 0%;
    }

    100% {
        background-size: 100%;
    }
}

.menu-icon {
   display: none;
}

/* FOOTER*/
footer.bottom{
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background: linear-gradient(#C4BA81, #C4BA81);
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    justify-content: center;
    border-top:  #bc6ff1;

}

footer a {
    color: #CF1F0B;
    font-size: 20px;
}

footer a :hover {
    color: #fe346e;
    font-size: 13px;

}

footer p {
    color: #CF1F0B;
}

.footer-bottom-tex{
    color: #CF1F0B;
    text-align: center;
    padding-bottom: 0.5px;
}

footer h5 {
    color: #CF1F0B;

}
/*
@media only screen and (max-width: 600px) {
    nav ul {
        position: absolute;
        width: 100%;
        background: #B2AA6C;
        color: #FFFFFF;
        left: 0;
        top: 100%;
        text-align: center;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s;
    }

    .nav-btn {
        display: none;
    }

    nav .logo {
      width: 50px;
    }

    nav ul li {
      margin: 4px;
        font-size: 14px;
    }

    .menu-icon {
        display: block;
        width: 30px;
    }

    .show-menu {
        max-height: 60px;
    }
}

@media only screen and (max-width: 600px) {
    .header {
        min-height: auto;
        padding: 0;
    }

    .user-img{
        width: 100%;
        right: auto;
        position: relative;
        margin-top: 100px;
    }

    .header-content {
        position: absolute;
        bottom: 0;
        padding: 0 10%;
        z-index: 2;
        padding-bottom: 40px;
        background: linear-gradient(transparent, #FFFFFF);
    }

    .btn-container{
        margin: 5px 0;
    }

    .header button{
        font-size: 14px;
        margin-right: 10px;

    }

    .btn-dark {
        padding: 7px 7px 7px 20px;
        margin-bottom: 10px;
    }

    .btn-dark img {
        width: 30px;
        padding: 5px;
        margin-left: 15px;
    }

    .btn-light img{
        width: 12px;
        margin-left: 5px;
    }
    .header h1 {
        font-size: 70px;
        line-height: 60px;
        margin-bottom: 20px;
    }
}

@media only screen and (min-width:1600px) {

    .user-img{
        width: 100%;
        max-width: 800px;
        position: absolute;
        right: 1%;
        bottom: 3%;
    }

    .header h1{
        margin-top: 200px;

    }


}
*/