body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

main {
    padding: 0 0 7% 0;
}

h2 {
    color: #6D6B64;
    margin-bottom: 2vh;
    text-align: center;
    font-size: 1.8em;
}

h3 {
    font-family: "Just Me Again Down Here", cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 30px;
}

p{
    font-size: 0.8em;
    text-align: justify;
}


/************************************************************************************************************/
/*                                                                                                          */
/*                                                                                                          */
/*                                                                                                          */
/*                                                  SCROLL BAR                                              */
/*                                                                                                          */
/*                                                                                                          */
/*                                                                                                          */
/************************************************************************************************************/

::-webkit-scrollbar {
    width: 0.8vw;
}

::-webkit-scrollbar-track {
    background: #363D46;
    border-radius: 0vw;
}

::-webkit-scrollbar-thumb {
    background: #959965;
    border-radius: 0.4vw;
}

::-webkit-scrollbar-thumb:hover {
    background: #8c915c;
}

/************************************************************************************************************/
/*                                                                                                          */
/*                                                                                                          */
/*                                                                                                          */
/*                                                  NAVIGATEUR                                              */
/*                                                                                                          */
/*                                                                                                          */
/*                                                                                                          */
/************************************************************************************************************/

.navbar {
    position: fixed;
    top: 0;
    width: 100vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0% 2vw;
    z-index: 1000;
    background: rgba(221, 220, 185, 0.7);
}

.navbar-brand img {
    width: 8vw;
}

.navbar-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.nav-item {
    margin-right: 1vw;
}

.nav-link {
    text-decoration: none;
    color: #fff !important;
    padding: 1vh 1.5vw;
    position: relative;
    font-size: 1.1em;
}

.nav-link:hover,
.nav-link:focus {
    color: #fff !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0.2vh;
    background: #fff;
    left: 0;
    bottom: -1vh;
    transition: width 0.3s;
}

.nav-link:hover::after,
.nav-link:focus::after,
.nav-link.active::after {
    width: 100%;
}

/************************************************************************************************************/
/*                                                                                                          */
/*                                                                                                          */
/*                                                                                                          */
/*                                                  SECTION 1                                               */
/*                                                                                                          */
/*                                                                                                          */
/*                                                                                                          */
/************************************************************************************************************/

section {
    padding: 3em 8em;
    background-color: #7a7e4f;
    
    a:hover {
        text-decoration: none;
    }
}
#container {
    display: flex;
    flex-direction: column;
    gap: 2.5vw;
}

.fullscreen-section {
    background: url('../Image/Site/Artiste_fond.jpg') no-repeat center center;
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    color: white;
    text-align: left;
    position: relative;
}

.fullscreen-section .bottom-left-text {
    padding: 1.85vh 1.04vw 23.15vh 0vw;
    border-radius: 0.93vh 0.52vw;
    margin: 1.85vh 1.04vw 0 0;
}

.fullscreen-section h1 {
    margin: 0;
    font-size: 4em;
}

/************************************************************************************************************/
/*                                                                                                          */
/*                                                                                                          */
/*                                                                                                          */
/*                                                  SECTION 2                                               */
/*                                                                                                          */
/*                                                                                                          */
/*                                                                                                          */
/************************************************************************************************************/
/* Hero section */
.hero {
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    color: white;
    text-align: left;
}

.artist-img {
    border-radius: 0.5vh;
}

.artist-info h2 {
    text-align: start;
    margin-bottom: 2vh;
}

.social-icons img {
    margin: 1vh;
}

/* Carousel customization */
.carousel-inner {
    transition: transform 0.5s ease;
}

.carousel-item img {
    object-fit: cover;
    aspect-ratio: 1/1;
}

.carousel-control-prev,
.carousel-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    color: #7a7e4f;
    border: none;
    background-color: #7a7e4f80;
    cursor: pointer;
}

.carousel-indicators .active {
    background-color: #7a7e4f;
}

.main-content {
    background-color: #EDEEDC;
    border-radius: 15px;
}

.telephone{
    display: none !important;
}

.ordinateur{
    display: block !important;
}

/************************************************************************************************************/
/*                                                                                                          */
/*                                                                                                          */
/*                                                                                                          */
/*                                                  TELEPHONE                                               */
/*                                                                                                          */
/*                                                                                                          */
/*                                                                                                          */
/************************************************************************************************************/

/* Styles généraux pour les téléphones */
@media (max-width: 768px) {

    .telephone{
        display: block !important;
    }
    
    .ordinateur{
        display: none !important;
    }
    body {
        font-size: 0.9em;
    }

    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.8em;
    }

    h3 {
        font-size: 1.5em;
    }

    .fullscreen-section {
        height: auto;
        padding: 20vh 2vw;
        background-size: cover;
        text-align: center;
        align-items: center;
        justify-content: center;
    }

    .fullscreen-section .bottom-left-text {
        padding: 15vh 0 2vw 0;
        margin: 0;
    }

    .fullscreen-section h1 {
        font-size: 2.5em;
    }

    .fullscreen-section p {
        font-size: 1em;
    }

    .navbar {
        padding: 0 4vw;
    }

    .navbar-brand img {
        width: 20vw;
    }

    .navbar-nav {
        flex-direction: column;
        align-items: center;
    }

    .nav-item {
        margin-right: 0;
        margin-bottom: 1vh;
    }

    .nav-link {
        font-size: 1.2em;
        padding: 1vh 2vw;
    }

    .telephone {
        display: block;
    }

    .ordinateur {
        display: none;
    }

    .nav-link {
        color: #3E412E !important;
    }

    .navbar {
        background: rgba(221, 220, 185, 0.9);
    }

    section {
        padding: 3em 1em;
        border-bottom: 0.1vh solid;
        background-color: #7a7e4f;
    }

    .col-12,
    .col-md-6 {
        padding: 0;
    }


    .image {
        display: flex !important;
        align-items: center; /* Pour aligner verticalement au centre */
        justify-content: space-evenly;
    }
    
    .image img {
        width: 40vw; 
        height: auto; 
        margin-right: 10px;
    }

    .artist-info p{
        margin-top: 6%;
    }
}
