@charset "UTF-8";

/* =========================
   BASE
   ========================= */

html {
    box-sizing: border-box;
    font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    background: #fff;
    color: #343144;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}


/* =========================
   HEADER
   ========================= */

.site-header {
    width: 100%;
    padding: 35px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}


/* =========================
   LOGO + LANGUES
   ========================= */

.header-left {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-shrink: 0;
}

.logo-link {
    display: block;
    line-height: 0;
}

.style-logo {
    display: block;
    width: 40px;
    height: auto;
    margin: 0;
}


/* =========================
   LANGUES
   ========================= */

.language-nav {
    display: flex;
    align-items: center;
    gap: 7px;

    font-size: 16px;
    line-height: 1;
}

.language-nav a {
    color: #999;
    text-decoration: none;
}

.language-nav a:hover,
.language-nav a:focus {
    color: #000;
}

.language-nav a.active {
    color: #000;
}

.language-nav span {
    color: #aaa;
}


/* =========================
   NAVIGATION PRINCIPALE
   ========================= */

.style-nav {
    margin-left: auto;
}

.style-nav ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    margin: 0;
    padding: 0;

    list-style: none;
    gap: 28px;
}

.style-nav li {
    margin: 0;
}

.style-nav a {
    display: block;

    padding: 0;

    color: #000;
    text-decoration: none;
    text-transform: uppercase;

    white-space: nowrap;
}

.style-nav a:hover,
.style-nav a:focus {
    text-decoration: underline;
}
/* =========================
   CONTENU / CARROUSEL
   ========================= */

/*
   Pas de hauteur fixe sur .intro :
   la section s'adapte à la hauteur réelle du carrousel.
*/

.intro {
    position: relative;
    width: 100%;
    padding: 2em;
    background: #fff;
}

#carouselPastels {
    width: 50%;
    margin: 0 auto;
    background: #eee;
}
#carouselSculptures {
    width: 50%;
    margin: 0 auto;
    background: #eee;
}
#carouselPeintures {
    width: 50%;
    margin: 0 auto;
    background: #eee;
}
.carousel-inner,
.carousel-item {
    width: 100%;
}

.carousel-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
}
.texte-centre {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* =========================
   FOOTER
   ========================= */

.site-footer {
    width: 100%;
    padding: 40px 20px;
    background: #fff;
    color: #000;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-section {
    margin: 0;
}

.email {
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 2px;
}

.footer-section p {
    margin: 0;
    font-size: 13px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #444;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    transition: transform 0.3s, background-color 0.3s;
}

.social-icons .icon:hover,
.social-icons .icon:focus {
    transform: translateY(-2px);
    background: #E98815;
}


/* =========================
   TABLETTE
   ========================= */

@media screen and (min-width: 768px) {
    body {
        max-width: 778px;
    }

    .site-header {
        padding: 35px;
    }
	
    .footer-container {
        flex-direction: row;
        text-align: right;
    }
}

/* =========================
   MOBILE
   ========================= */

@media screen and (max-width: 767px) {

    .site-header {
        padding: 25px 20px;

        flex-wrap: wrap;
        align-items: center;
    }

    .header-left {
        gap: 18px;
    }

    .style-logo {
        width: 38px;
    }

    .language-nav {
        font-size: 14px;
    }

    .style-nav {
        width: 100%;
    }

    .style-nav ul {
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 12px 20px;
    }

    .style-nav a {
        font-size: 14px;
    }
}
/* =========================
   GRAND ÉCRAN
   ========================= */

@media screen and (min-width: 1024px) {
    body {
        max-width: 1200px;
    }
}
