@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');

* {
    font-family: "Lato", sans-serif;
}

body {
    background-color: #f5f5f5;
}

.text-nav {
    font-family: 'Raleway', sans-serif;
    color: #260801;
}


/*---------------------------------------------------- NAVBAR DASHBOARD----------------------------------------------------- */
.fixed-left {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    width: 250px;
    background-color: #f8f9fa;
    overflow-y: auto;
    transition: transform 0.3s ease-in-out;
    transform: translateX(-100%);
    z-index: 1050;
}

.fixed-left.show {
    transform: translateX(0);
}

.main-dashboard {
    margin-left: 250px;
    padding: 20px;
    width: calc(100% - 250px);

}

.sidebar-collapsed .main-dashboard {
    margin-left: 0;

    width: 100%;

}

.main-dashboard.expanded {
    margin-left: 0;
}

.body-dashboard {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    /* height: 100vh; */
}

.custom-toggler {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 1100;
    background-color: transparent;
    border: none;
    outline: none;
    padding: 10px;
    font-size: 24px;
    cursor: pointer;
}

.custom-toggler::before {
    content: "\2630";
    /* Unicode for a hamburger icon */
    font-size: 24px;
    color: #333;
    /* Adjust color as needed */
}

@media (max-width: 991px) {
    .main-dashboard {
        margin-left: 0;
        width: 100%;
    }
}

@media (max-width: 991px) {
    .main-dashboard {
        margin-left: 0;
        width: 100%;
    }
}


/* ---------------------------------------------------------DASHBOARD--------------------------------------------------------- */
.btn-private {
    text-decoration: none;
    font-weight: 400;
    background-color: #e8e0d4;
    border-color: #260801;
    border-width: 0px;
    color: #260801;
    padding: 10px 20px;
    font-size: 1rem;
}

.dashboard-img {
    width: 150px;
    height: auto;
}

/* -----------------------------------------------------------HOME PAGE-------------------------------------------------------  */

.title {
    font-family: 'Raleway', sans-serif;
    color: #260801;
    font-size: clamp(1.4rem, 2.5vw, 2.5rem);

}

.txt-home {
    font-family: 'Raleway', sans-serif;
    color: #260801;
    /* font-size: 25px; */
    font-size: clamp(0.8rem, 1.5vw, 1.2rem);
    line-height: 1.5;
}

.bg-nav {
    background-color: #E8E0D4;
}

.hero {
    height: 50vh;
    display: flex;
    /* background-color: #bf9780; */
    /* background-repeat: no-repeat;
    background-size: cover;
    background-position: center center; */
    /* transition: background-image 1.5s ease; */

}

.left-side {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: background-image 1.5s ease;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    /* clip-path: polygon(0 0, 100% 0%, 75% 100%, 0% 100%); */
}



.left-side.bg-1 {
    background-image: url('/public/assets/img/home/vase2home.jpg');

}

.left-side.bg-2 {
    background-image: url('/public/assets/img/home/vasehome.jpg');
}

.right-side {
    background-color: #bf9780;
    width: 30%;
    position: relative;
    margin-left: -25%;
    z-index: 0;
    display: flex;
    align-items: end;
    justify-content: end;
    clip-path: polygon(25% 0, 100% 0%, 100% 100%, 0% 100%);
}

.overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: rgba(236, 231, 224, 0.5);
}

/*-------------------------------------------------------------- BOUTONS -------------------------------------------------*/
.btn,
a.btn {
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    background-color: #8C503A;
    border-color: #8C503A;
    border-width: 3px;
    color: #FFF;
    padding: 15px 30px;
    /* Espacement interne du bouton */
    font-size: 1.2rem;
    margin-top: 20px;
}

.btn:hover {
    background-color: none;
    /* Couleur de fond du bouton au survol */
    border-color: #8C503A;
    /* Couleur de la bordure du bouton au survol */
    color: #8C503A;
    /* transform: scale(1.1); */
}

/* Styles spécifiques pour les petits écrans */
@media (max-width: 768px) {

    .btn,
    a.btn {
        padding: 8px 16px;
        /* Réduire l'espacement interne */
        font-size: 0.8rem;
        /* Réduire la taille de la police */
        margin-top: 10px;
        /* Réduire l'espacement au-dessus */
    }
}

/*------------------------------------------------------------- FOOTER----------------------------------------------- */
.footer-icons img {
    width: 32px;
    height: 32px;
    transition: transform 0.5s;
    color: #260801;
}

.footer-icons a:hover img {
    transform: scale(1.5);
}

.footer-links a {
    color: #260801;
    /* text-decoration: none; */
}

.footer-links a:hover {
    color: #007bff;
    text-decoration: underline;
}

/* ------------------------------------------------------------PAGE 404--------------------------------------------------- */
.titre-404 {
    font-size: 3em;
    margin: 0;
    color: #260801;
}

.text-404 {
    font-size: 1.2em;
    color: #a66946;
}

.lien-404 {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

/*-------------------------------------------------- PAGE PRESENTATION ABOUTUS----------------------------------- */

.txt-paraph {
    /* font-size: 18px; */
    color: #260801;
    text-align: justify;
    /* font-size: 20px; */
}

.blockquote {
    /* font-size: 26px; */
    font-size: 1.5rem;
    position: relative;
    color: #260801;
}

.blockquote p {
    margin: 0;
    /* padding-left: 2.5rem; */
    padding-left: 1.5rem;
    line-height: 1.5;
}

.blockquote-footer {
    color: #8C503A;
}

.quote {
    /* font-size: 100px; */
    font-size: 4rem;
    font-weight: bold;
    line-height: 1;
    color: #260801;
    font-family: 'Times New Roman', Times, sans-serif;
    position: absolute;
    top: 0;
    left: 0;
}

@media (max-width: 768px) {
    .blockquote {
        font-size: 1.2rem;
    }

    .quote {
        font-size: 2.5rem;
    }

    .blockquote p {
        padding-left: 1rem;
    }
}

.img-aboutus {
    width: 100%;
    height: auto;
    /* max-height: 400px; */
    object-fit: cover;
}

.img-aboutus-quote {
    width: 100%;
    height: 80%;
}

/*---------------------------------------- formulaire d'ajout de produit -----------------------------------------*/
.parent-category {
    font-weight: bold;
}

/* ----------------------------------------------MES EVENEMENTS------------------------------------------------ */
.txt-event {
    color: #260801;
    text-align: center;
    font-size: 18px;
}

.calender-container {
    max-width: 70%;
    margin: 20px auto;
    display: flex;
    justify-content: center;
    position: relative;
}

.calender {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-gap: 5px;
    grid-auto-rows: minmax(50px, auto);
    border: 1px solid #260801;
    border-radius: 10px;
    padding: 50px;
    justify-content: center;
    /* width: 100vw; */
    width: 60%;
    margin: 0 auto;
    background-color: #f5f5f5;
    /* position: relative; */
}

.day-header,
.day {
    border: 1px solid #bf9780;
    border-radius: 10px;
    padding: 3px;
    text-align: center;
}

.day-header {
    height: 30px;
    background-color: #bf9780;
    color: #260801;
}

/* .calender>div {
    border: 1px solid #484b25;
    padding: 5px;
    text-align: center;
} */
.day {
    position: relative;
}

.bg-day {
    border-radius: 10px;
    background-color: #e8e0d4;
}

.dayOff {
    border: 1px solid #bf9780;
    padding: 3px;
    border-radius: 10px;
}

.current-day {
    border: 5px solid #a66946;
}

.maj {
    text-transform: capitalize;
}

.navigation {
    /* position: absolute; */
    /* top: 0; */
    /* bottom: 0; */
    display: flex;
    align-items: center;
    padding: 0 10px;
}

.fa-angles-right {
    color: #260801;
    font-size: 30px;
}

.fa-angles-left {
    color: #260801;
    font-size: 30px;

}

.classEvents::after {
    /* content: '📅'; */
    content: '\1F3FA';
    font-size: 25px;
    cursor: pointer;
    position: absolute;
    left: 50%;
    top: 70%;
    transform: translate(-50%, -50%);

}

/* Réglages pour les appareils mobiles */
@media screen and (max-width: 768px) {
    .calender-container {
        /* flex-direction: column;
        align-items: center; */
        width: 95%;
    }

    .calender {
        width: 100%;
    }
}

/*---------------------------------------------------------------- SHOP------------------------------------------------------- */
.img-category {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    object-fit: cover;
    display: block;
}

/* les cards */

.card-text {
    color: #260801;
}

.card-title {
    color: #8C503A;
}

.card-price {
    color: #8C503A;
    font-size: 20px;
}

.custom-card img {
    width: 100%;
    height: 80%;
    object-fit: cover;
}

.custom-card {
    height: 50vh;
}

.link-product {
    text-decoration: none;
}

/* product detail */
.spec-carac {
    white-space: pre-wrap
}

/* ---------------------------------------------------LE JOURNAL AVEC LES ARTICLES----------------------------------------  */
.img-articles-size {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/*------------------------------------------------------- PANIER  ----------------------------------------------------------*/
.table-cart {
    background-color: #bf9780;
}


.btn-cart {
    text-decoration: none;
    text-transform: uppercase;
    background-color: #8c503a;
    color: white;
    border: 1px solid #bf9780;
    padding: 0.25rem 0.5rem;
    /* Boutons plus petits */
    font-size: 1rem;
    font-weight: 600;
    transition: background-color 0.3s, color 0.3s;
    border-radius: 5px;
}

.btn-cart:hover {
    background-color: white;
    color: #8c503a;
}

/*------------------------------------------------------- CVG ET MENTIONS LEGALES  -------------------------------------------*/
.section-title {
    font-size: 1.5em;
    margin-top: 30px;
    color: #260801;
}

.subsection-title {
    font-size: 1.25em;
    margin-top: 20px;
    color: #260801;
}

.paragraph {
    margin-bottom: 15px;
}

/* -------------------------------------------------------------CONTACT------------------------------------------------------- */
.contact-container {
    background-color: #e8e0d4;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.contact-form {
    padding: 20px;
    background-color: #e0d5c8;
    border-radius: 8px;
    flex-grow: 1;
    min-width: 300px;
}

.contact-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px 0 0 8px;
}

.form-control {
    margin-bottom: 15px;
}

.contact-info {
    text-align: center;
    margin-top: 20px;
}

/* PAGINATION */
.custom-page {

    --bs-pagination-padding-x: 0.75rem;
    --bs-pagination-padding-y: 0.375rem;
    --bs-pagination-font-size: 1rem;
    --bs-pagination-color: var(--bs-link-color);
    --bs-pagination-bg: var(--bs-body-bg);
    --bs-pagination-border-width: var(--bs-border-width);
    --bs-pagination-border-color: var(--bs-border-color);
    --bs-pagination-border-radius: var(--bs-border-radius);
    --bs-pagination-hover-color: var(--bs-link-hover-color);
    --bs-pagination-hover-bg: var(--bs-tertiary-bg);
    --bs-pagination-hover-border-color: var(--bs-border-color);
    --bs-pagination-focus-color: var(--bs-link-hover-color);
    --bs-pagination-focus-bg: var(--bs-secondary-bg);
    --bs-pagination-focus-box-shadow: 0 0 0 0.25rem rgba(133, 67, 26, 0.25);
    --bs-pagination-active-color: #fff;
    --bs-pagination-active-bg: #a66946;
    --bs-pagination-active-border-color: #a66946;
    --bs-pagination-disabled-color: var(--bs-secondary-color);
    --bs-pagination-disabled-bg: var(--bs-secondary-bg);
    --bs-pagination-disabled-border-color: var(--bs-border-color);
    display: flex;
    padding-left: 0;
    list-style: none;
}

.page-link {
    color: #a66946;
}

.active>.page-link,
.page-link.active {
    z-index: 3;
    color: var(--bs-pagination-active-color);
    background-color: #8c503a;
    border-color: #8c503a;
}