body {
    background-color: #F7F2E4 !important;
    font-family: "Playfair Display", serif !important;
    font-optical-sizing: auto !important;
    font-style: normal !important;
    font-size: 1rem !important;
}

html,
body {
    overflow-x: hidden !important;
    max-width: 100% !important;
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1.5s ease-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-100px) rotate(-10deg);
    animation: slideInLeft 1s ease-out forwards;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0) rotate(0deg);
    }
}


.links-mauve {
    color: #341830 !important;
    font-style: italic !important;
}

.links-white {
    color: rgb(247, 242, 228) !important;
    font-style: normal !important;
    text-decoration: none !important;
}


a:hover {
    cursor: pointer !important;
}


i {
    color: #341830 !important;
}


.filter-buttons {
    margin-bottom: 2rem;
}

.filter-buttons button {
    background: #eee;
    border: 2px #341830;
    padding: 0.5rem 1rem;
    margin: 0 5px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.filter-buttons button:hover,
.filter-buttons button.active {
    background: #341830;
    color: white;
}

.gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}



@media (min-width: 768px) and (max-width: 991.98px) {
    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop: ≥992px */
@media (min-width: 992px) {
    .gallery {
        grid-template-columns: repeat(3, 1fr);
    }
}


.gallery-item {
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item img:hover {
    opacity: 90%;
    transition-duration: 400ms;
    transform: scale(0.99);
}

.card-columns {
    column-count: 1;
    column-gap: 1.25rem;
}

@media (min-width: 576px) {
    .card-columns {
        column-count: 2;
    }
}

@media (min-width: 768px) {
    .card-columns {
        column-count: 3;
    }
}

@media (min-width: 992px) {
    .card-columns {
        column-count: 4;
    }
}

@media (min-width: 1200px) {
    .card-columns {
        column-count: 5;
    }
}

.gallery-item img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* card-columns  */

@media screen and (min-width: 925px) {
    .card-columns {
        column-count: 3;
    }
}

.praise-font {
    font-family: "Praise" !important;
    font-weight: 400 !important;
    font-style: normal !important;

}


.my-magenta {
    color: #341830 !important;
}


.my-chevron-123 {
    bottom: 4% !important;
    font-size: 2rem !important;
}


.my-chevron-animation {
    animation: chevron 1s ease-in-out infinite alternate;
}

@keyframes chevron {
    from {
        transform: translateY(10px);
    }

    to {
        transform: translateY(0px);
    }
}


/* button2 */
.button2 {
    padding: 0;
    margin: 0;
    border: none;
    background: none;
    cursor: pointer;
}

.button2 {
    --primary-color: #341830;
    --hovered-color: #4a2344;
    position: relative;
    display: flex;
    gap: 0.5rem;
    align-items: center;
    font-size: 1.3rem;
}

.button2 p {
    margin: 0;
    position: relative;
    color: #341830;
}

.button2::after {
    position: absolute;
    content: "";
    width: 0;
    left: 0;
    bottom: -7px;
    background: #4a2344;
    height: 2px;
    transition: 0.3s ease-out;
}

.button2 p::before {
    position: absolute;
    /*   box-sizing: border-box; */
    width: 0%;
    inset: 0;
    color: #4a2344;
    overflow: hidden;
    transition: 0.3s ease-out;
}

.button2:hover::after {
    width: 100%;
}

.button2:hover p::before {
    width: 100%;
}

.button2:hover svg {
    transform: translateX(4px);
    color: #4a2344;
}

.button2 svg {
    color: #341830;
    transition: 0.2s;
    position: relative;
    width: 15px;
    transition-delay: 0.2s;
}



.btn-primary {
    background-color: #341830 !important;
    padding: 0.8rem 1.4rem !important;
    border-color: #341830 !important;
    font-size: 1.3rem !important;
    border-radius: 30px !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: #4a2344 !important;
    border-color: #4a2344 !important;
}



/* status dot */

.status-dot {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid white;
    z-index: 2;
}

.dot-green {
    background-color: #28a745;
}

.dot-red {
    background-color: #dc3545;
}


.opacity-links {
    opacity: 1 !important;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.opacity-links:hover {
    opacity: 0.6 !important;
    transition: opacity 0s steps(1, start) !important;
}


/* Toggle Switch Stylé */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

input:checked+.slider {
    background-color: #341830;
}

input:checked+.slider:before {
    transform: translateX(26px);
}


.texte {
    font-size: 1.1rem !important;
}




.btn-outline-primary:hover {
    background-color: #341830 !important;
    color: white !important;
}

.btn-outline-primary:hover i {
    /* background-color: #341830 !important;   */
    color: white !important;
}

.btn-outline-primary {
    border-color: #341830 !important;
    color: #341830 !important;
}








.gallery-hover-wrapper {
    position: relative;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(52, 24, 48, 0.8);
    /* Semi-transparent dark overlay */
    color: white;
    padding: 5px 10px;
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.gallery-hover-wrapper:hover .gallery-overlay {
    opacity: 1;
}

.overlay-text {
    display: block;
}


@media (max-width: 768px) {
    .container-index {
        padding: 1rem;
    }

    .slide-in-left {
        max-width: 8rem !important;
    }

    .my-chevron-123 {
        margin-top: 1rem !important;
        font-size: 1.5rem !important;
    }

    .button2 {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .slide-in-left {
        max-width: 6rem !important;
    }

    .gap-4 {
        gap: 1rem !important;
    }

    .button2 {
        font-size: 1rem;
    }
}


.elfsight-app-5e059b5c-451b-4804-ba57-5a7f0413227a {
    margin: 0 auto !important;
}