/* Variables de couleurs */
:root {
    --rose-bonbon: #c1555f;
    --creme-cassee: #f7f5f2;
    --beige-peau: #ffeed8;
    --marron-ecorce: #a57d61;
    --caramel-clair: #e1c699;
    --blanc-paradis: #ffffff;
    --noir-charbon: #040606;
    --rose-pale: #ffeeee;
}

/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--noir-charbon);
    background-color: var(--creme-cassee);
    font-size: 18px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display SC', serif;
}

a {
    text-decoration: none;
    color: inherit;
    font-family: 'Poppins', sans-serif;
}

ul {
    list-style: none;
}

/* Bannière promotionnelle */
.promo-banner {
    background-color: var(--rose-bonbon);
    color: var(--blanc-paradis);
    text-align: center;
    padding: 8px 0;
    font-size: 0.9rem;
    font-weight: bold;
}

.logo{
    width: 10vw;
}

.logo img {
    width: 100%;
}

/* Header et Navigation */
header {
    background-color: var(--beige-peau);
    padding: 15px 0;
}

.header-container {
    max-width: 90vw;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--rose-bonbon);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-menu a {
    padding: 5px 2rem;
    font-size: 0.9rem;
    color: var(--marron-ecorce);
    font-family: 'Poppins', serif;
    border: 4px solid var(--rose-bonbon);
    border-radius: 5px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-menu a:hover, .nav-menu a.active {
    background-color: var(--rose-bonbon);
    color: var(--caramel-clair);
}

.icons {
    display: flex;
    gap: 15px;
}

.icons a {
    color: var(--marron-ecorce);
    font-size: 1.2rem;
}

/* Hero Section */
.hero {
    background-image: url('../Img/Accueil/Accueil.png'); /* Placeholder, replace with actual image */
    background-color: var(--beige-peau); /* Fallback */
    min-height: 80vh;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

/* Products Section */
.products {
    padding: 60px 20px;
    text-align: center;
}

.products h2 {
    margin-bottom: 40px;
    font-size: 2rem;
    color: var(--noir-charbon);
}

.product-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
    max-width: 100vw;
    margin: 0 auto;
}

.product-item {
    width: 200px;
    height: 200px;
    overflow: hidden;
    border-radius: 50%;
    background-color: var(--beige-peau);
    border: 3px solid var(--caramel-clair);
}

.product-image {
    width: 100%;
    height: 100%;
    size: cover;
    position: center;
}
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
/* Divider */
.divider {
    height: 100Px;
    background-position: center;
    justify-content: center;
    display: flex;
}

.divider img {
    width: 50%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* About Section */
.about {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: right;
}

.about h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    align-items: center;
    font-weight: 300;
}

.about-images-container{
    display: flex;
    flex-direction: row-reverse;
    gap:50px;
    height: fit-content;
    align-items: center;
    justify-content: center;
}

.about-images-row{
    display: flex;
    flex-direction: row;
    gap:50px;
}
.about-images-column{
    display: flex;
    flex-direction: column;
    gap:50px;
}

.about-image{
    width: 200px;
    height: 200px;
    overflow: hidden;
    border-radius: 50%;
    background-color: var(--beige-peau);
    border: 3px solid var(--caramel-clair);
}

.about-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.question-mark {
    width: 30px;
    height: 30px;
    background-color: var(--rose-bonbon);
    color: var(--blanc-paradis);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
}

.about-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
}

.about-images {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.about-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: var(--beige-peau);
    background-size: cover;
    background-position: center;
    border: 3px solid var(--caramel-clair);
}

.about-text {
    flex: 2;
    text-align: right;
    align-self: center;
}

.about-text p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.about-text h3 {
    margin: 20px 0 10px 0;
    color: var(--noir-charbon);
}

/* Testimonials */
.testimonials {
    padding: 60px 20px;
    background-color: var(--creme-cassee);
    text-align: center;
}

.testimonials h2 {
    margin-bottom: 40px;
    font-size: 2rem;
    font-weight: 400;
}

.testimonial-container {
    display: flex;
    justify-content: center;
    flex-direction: row;
    gap: 50px;
    flex-wrap: wrap;
    margin: 0 auto;
}

.testimonial-container img{
    width: 300px;
    height: auto;
    background-color: var(--beige-peau);
    background-size: cover;
    background-position: center;
    border: 3px solid var(--caramel-clair);
}




/* Fancy Divider */
.divider-fancy {
    height: 50px;
    background-image: url('divider-fancy.png'); /* Replace with actual divider image */
    background-repeat: no-repeat;
    background-position: center;
    margin: 20px 0;
}

/* Events Section */
.events {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.events h2 {
    font-size: 2.2rem;
    margin-bottom: 3.5rem;
}

.events h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-align: left;
    text-decoration: underline;
    color: var(--noir-charbon);
}

.event-grid {
    display: flex;
    justify-content: center;
    flex-direction: row;
    gap: 3rem;
    flex-wrap: wrap;
}

.event-item {
    height: 400px;
}

.event-item img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
}

/* Contact Section */
.contact {
    padding: 60px 20px;
    background-color: var(--creme-cassee);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 75px;
}

.workshop, .social {
    flex: 1;
    min-width: 300px;
}


.contact-bloc{
    border: 2px solid var(--marron-ecorce);
    height: 15rem;
    display: flex;
    flex-direction: row;
    padding: 10px;
    align-items: center;
    flex-wrap: nowrap;
}
#map{
    height: 100%;
    aspect-ratio: 1/1;
}
#map img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
#social-media-icons{
    height: 100%;
}
#social-media-icons img{
    background-color: #040606;
    border-radius: 25%;
    width: 50px;
    height: 50px;
    object-fit: cover;
    object-position: center;
}

.workshop h3, .social h3 {
    margin-bottom: 20px;
    color: var(--noir-charbon);
    padding-bottom: 10px;
    font-weight: 400;
}

.workshop ul, .social ul, #workshop-info li{
    margin-left: 20px;
    list-style-type: disc;
}

.workshop li, .social a {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

#social-media-icons{
    display: flex;
    flex-direction: column;
    gap: 5px;
    height: fit-content;
}

/* Footer */
footer {
    background-color: var(--caramel-clair);
    color: var(--marron-ecorce);
    padding: 40px 20px 10px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-info, .footer-contact {
    flex: 1;
    min-width: 300px;
}

.footer-info h3, .footer-contact h3 {
    margin-bottom: 20px;
    color: var(--noir-charbon);
    border-bottom: 1px solid var(--beige-peau);
    padding-bottom: 10px;
}

.footer-info ul {
    margin-left: 20px;
}

.footer-info li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact p {
    margin-bottom: 10px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid var(--beige-peau);
    font-size: 0.8rem;
}

@media(max-width: 1024px){
   .nav-menu li {
    margin-bottom: 10px;
   }
}


/* Media Queries */
@media (min-width: 769px) and (max-width: 1024px) {
    .event-grid{
        width: 100%;
    }
    .event-item{
        width: 60%;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    body{
        font-size: 14px;
    }
    .header-container {
        flex-direction: column;
        gap: 15px;
    }
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .about-container {
        flex-direction: column;
    }
    
    .about-images-container{
        flex-direction: row;
        margin-bottom: 30px;
        width: 100vw;
    }
    
    .about-images-column{
        flex-direction: row;
    }

    .testimonial-card {
        min-width: 100%;
    }

    .event-item{
        height: auto;
    }
    
    .footer-bottom{
        flex-direction: row;
        align-items: center;
        gap: 10px;
    }
    .event-grid{
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 5rem;
    }
    .workshop ul{
        margin-left: 0;
    }
    #workshop-info li{
        margin-left: 0;
    }
    #map{
        height: 70%;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        gap: 10px;
    }
    
    .product-item {
        width: 100px;
        height: 100px;
    }
    .header-container{
        flex-wrap: wrap;
    }
    .logo{
        width: 100vw;
    }

    .about-images {
        flex-direction: column;
    }
    .contact-bloc{
        height: fit-content;
    }
}