/* Import des polices */
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Ephesis&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/************************************** Règles générales ******************************/
body {
    margin: 0;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-optical-sizing: auto;
    font-style: normal;
    color: #000 !important;
    background-color: #FFFFFF !important;
}

#page-wrapper>main {
    min-height: 62.95vh;
}

/*boutons*/

/* Base bouton - moderne et élégant */
.btn {
    display: inline-block;
    height: auto;
    padding: 12px 30px;
    border-radius: 40px;
    /* plus arrondi */
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    user-select: none;
    transition:
        background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.3s ease,
        transform 0.2s ease;
    box-shadow: 0 6px 15px rgba(100, 139, 127, 0.3);
    border: none;
    outline-offset: 4px;
}

/* Effet clic (active) : léger "enfoncement" */
.btn:active {
    transform: translateY(2px);
    box-shadow: 0 3px 6px rgba(100, 139, 127, 0.2);
}

/* Focus accessible */
.btn:focus-visible {
    outline: 3px solid #3B574D;
    outline-offset: 6px;
}

/* === Bouton Primary === */
.btn-primary {
    background: linear-gradient(135deg, #648B7F 0%, #4B6A61 100%);
    color: #fff;
    box-shadow: 0 8px 20px rgba(100, 139, 127, 0.5);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #4B6A61 0%, #3B574D 100%);
    box-shadow: 0 12px 30px rgba(59, 87, 77, 0.6);
    color: #E0F0E9;
    transform: translateY(-2px);
}

/* === Bouton Danger === */
.btn-danger {
    background: linear-gradient(135deg, #D9534F 0%, #B43732 100%);
    color: #fff;
    box-shadow: 0 8px 20px rgba(217, 83, 79, 0.5);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-danger:hover {
    background: linear-gradient(135deg, #B43732 0%, #8F2A25 100%);
    box-shadow: 0 12px 30px rgba(143, 42, 37, 0.7);
    color: #FFD1D0;
    transform: translateY(-2px);
}

/* === Bouton Outline Primary === */
.btn-primary-outline {
    background: transparent;
    color: #648B7F;
    border: 2px solid #648B7F;
    box-shadow: none;
}

.btn-primary-outline:hover {
    background: #648B7F;
    color: #fff;
    box-shadow: 0 8px 25px rgba(100, 139, 127, 0.5);
    transform: translateY(-2px);
}

/* === Bouton Outline Danger === */
.btn-danger-outline {
    background: transparent;
    color: #D9534F;
    border: 2px solid #D9534F;
    box-shadow: none;
}

.btn-danger-outline:hover {
    background: #D9534F;
    color: #fff;
    box-shadow: 0 8px 25px rgba(217, 83, 79, 0.5);
    transform: translateY(-2px);
}

/* === Bouton Secondary === */
.btn-secondary {
    background-color: rgba(0, 0, 0, 0.1);
    color: #333;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    border: none;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
    background-color: rgba(0, 0, 0, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    color: #fff;
    transform: translateY(-2px);
}

/* === Bouton Outline Secondary === */
.btn-secondary-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    box-shadow: none;
}

.btn-secondary-outline:hover {
    background: #fff;
    color: #648B7F;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
    transform: translateY(-2px);
}

/* === Classe centrage bouton retour === */
.button-return {
    justify-self: center;
}

/*pagination*/


.pagination {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    padding: 0;
    margin: 30px 0;
    list-style: none;
}

/* Liens de pagination */
.pagination li>a,
.pagination li>span {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 40px !important;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    user-select: none;
    transition:
        background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.3s ease,
        transform 0.2s ease;
    outline-offset: 4px;
    color: #648B7F;
    background: transparent;
    border: 2px solid #648B7F;
}

/* Lien actif (page en cours) */
.pagination li.active>span {
    background: linear-gradient(135deg, #648B7F 0%, #4B6A61 100%);
    color: #fff;
    box-shadow: 0 8px 20px rgba(100, 139, 127, 0.5);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Lien survolé */
.pagination li>a:hover {
    background: #648B7F;
    color: #fff;
    box-shadow: 0 8px 25px rgba(100, 139, 127, 0.5);
    transform: translateY(-2px);
}

/* Lien désactivé */
.pagination li.disabled>span,
.pagination li.disabled>a {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}


.page-item:last-child .page-link {
    border-top-right-radius: 30px !important;
    border-bottom-right-radius: 30px !important;
}

.page-item:first-child .page-link {
    border-top-left-radius: 30px !important;
    border-bottom-left-radius: 30px !important;
}

/*blocks*/

.block {
    text-align: center;
    padding: 50px 0;
}

.block-primary {
    background-color: #648B7F33;
}

/*couverture page d'accueil*/

/* couverture page d'accueil */
.image-couverture {
    position: relative;
    width: 30%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.background-image {
    display: block;
    height: auto;
}

.overlay-logo {
    color: #FFFFFF;
    text-align: center;
    position: absolute;
    top: 33%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    width: 100%;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    font-family: "Ephesis", sans-serif;
    font-size: 6vw;
}

/* Responsive tablette */
@media (max-width: 767px) {
    .overlay-logo {
        font-size: 12vw;
        top: 30%;
    }

    .image-couverture {
        width: 60%;
    }
}


/*Presentation - Accueil*/
.block-presentation {
    padding: 50px;

}

.separator {
    height: 70px;
    background-color: #648B7F;
}

.container-about>p {
    margin: 30px 0;
}

.block-presentation>div>iframe {
    border-radius: 30px;
    max-width: 90%;
}

/*Prestation - Accueil*/
.container-services {
    display: flex;
    flex-direction: row;
    max-width: 100%;
    align-self: center;
    justify-self: center;
}

.services {
    padding: 30px;
    min-height: 100%;
    width: 33%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.image-services {
    height: 75px;
    margin: 20px 0;
}

/*Tarifs - Accueil*/

.block-tarifs {
    background-color: #e6edeb;
    padding: 60px 0;
    text-align: center;
}

.block-tarifs h3 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #222;
}

.container-tarifs {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.tarifs {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    border-radius: 40px;
    padding: 20px;
    width: 30%;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tarifs:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.image-tarifs {
    text-align: center;
    margin-bottom: auto;
}

.image-tarifs p {
    margin-bottom: 10px;
    font-size: 2rem;
    color: #35635e;
    font-weight: 500;
}

.image-chien {
    height: 170px;
    width: 200px;
    margin: 0;
}

.tarifs .btn {
    margin-top: auto;
    background-color: #5e887c;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.tarifs .btn:hover {
    background-color: #46675e;
}

/* Boutique - Accueil */

.container-boutique {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px;
    border-radius: 30px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
}

/* L'image prend 40% de l'espace */
.photo-boutique {
    flex: 0 1 100%;
    max-width: 40%;
    height: auto;
    border-radius: 30px;
    object-fit: cover;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
}

/* Le bloc texte prend 60% */
.texte-boutique {
    flex: 0 1 58%;
}

/* Pour le texte */
.texte-boutique p {
    line-height: 1.6;
    text-align: justify;
    font-size: 1rem;
    color: #333;
}

@media (max-width: 768px) {
    .container-boutique {
        flex-direction: column;
        text-align: center;
    }

    .photo-boutique {
        margin-bottom: 1.5rem;
        height: 45vw;
        max-width: 100%;
    }

    .texte-boutique p {
        text-align: left;
    }
}

/*Avis - Accueil*/
.block-temoignages {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.container-temoignages {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.temoignage {
    max-width: 1300px;
    background-color: #fff;
    padding: 20px;
    border-radius: 15px;
    flex: 1 1 300px;
    text-align: left;
    font-style: italic;
    position: relative;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.temoignage:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.temoignage span {
    display: block;
    margin-top: 10px;
    font-weight: bold;
    text-align: right;
    font-style: normal;
}

.cta-temoignages {
    text-align: center;
    margin-top: 20px;
}

/******************************************** Prestation&Services *********************************/

.page-prestation {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.container-prestation {
    display: flex;
    justify-content: center;
    margin: 0;
}

.block-prestation {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.block-prestation img {
    width: 50%;
    margin: 30px;
    border-radius: 30px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

.list-prestation {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 50%;
}

.prestation {
    background-color: rgba(100, 139, 127, 0.3);
    color: #000;
    border-radius: 30px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 15px;
    margin-bottom: 20px;
}

.prestation:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.button-rendezvous {
    display: flex;
    margin: 30px;
    justify-content: center;
}


@media (max-width: 768px) {
    .block-prestation {
        flex-direction: column;
        align-items: center;
    }

    .block-prestation img {
        width: 100%;
        margin: 15px 0;
    }

    .list-prestation {
        width: 100%;
        padding: 0 15px;
    }

    .prestation {
        font-size: 0.95rem;
        padding: 12px;
    }

    .button-rendezvous {
        margin: 20px 10px;
    }

    .page-prestation .container-prestation:nth-of-type(2) .block-prestation {
        flex-direction: column-reverse;
    }

}


/******************************************** Galerie *********************************/

.image-header {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
    overflow: hidden;
    background-image: url("../images/animaux/chien-0ec6115fa721ddf6f5567b0c9c16c41b.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-color: #cccccc;
    margin: 0 0 50px 0;
    padding: 30px 0;
    text-align: center;
    font-size: 2.5rem;
}

.image-header h1 {
    color: white;
    font-size: 5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.popup{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 80%;
    max-width: 1600px;
    height: 80vh;
    max-height: 800px;
    border-radius: 30px;
    background-color: rgba(248, 249, 250, 0.82);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
    overflow: hidden;
    transition: 1s;
    opacity: 0;
}

.popup.active {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.popup.active .close-btn,
.popup.active .image-name,
.popup.active .index,
.popup.active .large-image,
.popup.active .arrow-btn {
    opacity: 1;
    transition: opacity .5s;
    transition-delay: 1s;
}

.top-bar{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background-color: rgb(100, 140, 129);
    color: white;
    text-align: center;
    line-height: 50px;
    font-weight: 300;
}

.image-name{
    opacity: 0;
}

.close-btn{
    opacity: 0;
    position: absolute;
    top: 15px;
    right: 30px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #ba1b1b;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 18px;
    font-weight: bold;
}

.arrow-btn img {
    width: 200px;
    height: 200px;
}

.arrow-btn{
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 10px;
    border-radius: 50%;
    border: none;
    background-color: transparent;
    cursor: pointer;
}

.left-arrow {
    left: 10px;
}

.right-arrow {
    right: 10px;
    transform: translateY(-50%) rotate(180deg);
}

.index{
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 80px;
    font-weight: 100;
    color: rgba(255,255,255,0.4);
    opacity: 0;
}

.large-image{
    margin-top: 5%;
    width: 80%;
    height: 80%;
    object-fit: contain;
    opacity: 0;
}

@media (max-width: 768px) {
    .popup {
        width: 75vw;
        height: 75vh;
        max-height: 80vh;
        border-radius: 20px;
    }

    .popup.active {
        transform: translate(-50%, -50%) scale(1);
    }

    .top-bar {
        height: 45px;
        line-height: 45px;
        font-size: 14px;
    }

    .close-btn {
        top: 10px;
        right: 15px;
        width: 25px;
        height: 25px;
        font-size: 16px;
    }

    .large-image {
        width: 90%;
        height: 70%;
        margin-top: 8%;
        object-fit: contain;
    }

    .arrow-btn {
        position: absolute;
        top: auto;
        bottom: 20px;
        transform: none;
        width: 50px;
        height: 50px;
        background-color: rgba(0, 0, 0, 0.6);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0;
    }

    .arrow-btn:hover {
        background-color: rgba(0, 0, 0, 0.8);
    }

    .left-arrow {
        left: 20px;
        bottom: 20px;
    }

    .right-arrow {
        right: 20px;
        bottom: 20px;
        transform: rotate(180deg);
    }

    .arrow-btn img {
        width: 24px;
        height: 24px;
        filter: brightness(0) invert(1);
    }

    .index {
        font-size: 24px;
        bottom: 25px;
        right: 50%;
        left: auto;
        transform: translateX(50%);
        color: rgba(100, 139, 127, 0.87);
    }

    .gallery {
        max-width: 100%;
        margin: 30px auto;
        column-count: 3;
        column-gap: 15px;
    }

    .gallery img {
        display: block;
        width: 100%;
        height: auto;
        margin: 0 0 15px 0;
        border-radius: 30px;
        transition: 0.2s ease-in-out;
    }

    .gallery img:hover {
        transform: scale(0.9);
    }

    /**************************************** Reset Password ************************************/
    .instruction-reset-password {
        text-align: center;
    }

    .instruction-reset-password h1 {
        margin: 30px 0;
        color: rgba(100, 139, 127, 0.77);
    }

    .instruction-reset-password a {
        color: rgba(100, 139, 127, 0.77);
        font-weight: bolder;
    }

    .instruction-reset-password img {
        width: 400px;
        height: 400px;
        margin: 30px 0;
    }

    .instruction-reset-password p {
        text-align: start;
    }

    .reset-password {
        align-items: center;
        justify-content: center;
        padding: 30px;
    }

    .register h1 {
        margin: 30px;
    }

    /**************************************** Se souvenir de moi ************************************/
    .remember-me {
        margin-top: 1rem;
    }

    .remember-me .checkbox {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .remember-me input[type="checkbox"] {
        width: 1rem;
        height: 1rem;
    }

    .remember-me label {
        margin: 0;
        font-size: 1rem;
    }

    /**************************************** Boutique ************************************/
    .favorite-icon {
        display: flex;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        justify-content: center;

    }

    .favorite-icon i {
        color: rgba(100, 139, 127, 0.54);
        font-size: 30px;
    }

    .product-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        padding: 30px;
        max-width: 1200px;
        margin: 30px auto;
    }

    .product-card {
        text-decoration: none;
        background-color: rgba(100, 139, 127, 0.38);
        border-radius: 15px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        display: flex;
        flex-direction: column;
        text-align: center;
        position: relative;
        object-fit: cover;
    }

    .product-card img {
        width: 100%;
        height: 350px;
        object-fit: cover;
    }

    .card-content {
        padding: 15px;
        width: 100%;
        color: black;
    }

    .card-content h5 {
        margin: 10px 0 5px;
        font-size: 1.2rem;
        font-weight: bold;
    }

    .card-content p {
        font-size: 1rem;
        color: #ffffff;
    }

    .filter {
        display: block;
        position: sticky;
        top: 20px;
        margin: 30px;
    }

    .filter-container {
        border-radius: 8px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
        background-color: #f8f9fa;
        padding: 30px;
        margin: 30px;
    }

    .block-filter {
        margin-top: 20px;
    }

    .pagination {
        justify-content: center;
    }

    /**************************************** Details articles ************************************/
    .fiche-product {
        display: flex;
        flex-direction: row;
        margin: 30px;
        padding: 30px;
        align-items: flex-start;


    }

    .body-product {
        display: flex;
        flex-direction: column;
        margin: 30px;
    }

    .fiche-product img {
        width: 30%;
        height: 50%;
        object-fit: cover;
        margin: 30px;

    }

    .block-info-principales {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        background-color: rgba(228, 221, 221, 0.55);
        width: 100%;
        height: 50%;
        border-radius: 30px;
        align-self: center;
    }

    .block-info-principales p,
    .bouton-favoris {
        display: flex;
        align-items: center;
        gap: 8px;
        margin: 30px;
        padding: 30px;
        font-size: 16px;
        width: auto;
        height: 30px;
    }

    .block-info-principales p {
        font-size: 3rem;
    }

    .block-info-pratiques i,
    .bouton-favoris i {
        font-size: 20px;
        margin: 10px;
    }

    .block-info-pratiques {
        display: flex;
        flex-direction: column;
        color: rgb(100, 139, 127);
        margin: 30px 0;
    }

    /**************************************** navbar ************************************/
    /*navbar centrer*/
    .navbar-custom {
        background-color: rgb(100, 139, 127);
        padding: 20px 0;
    }

    .navbar-custom > li > a {
        color: #FFFFFF;
        background: rgba(100, 139, 127, 0.42);
    }

    .navbar-custom .nav-link {
        border: 1px solid rgb(255, 255, 255);
        border-radius: 30px;
        margin: 0 10px;
    }

    .navbar-custom .nav-link:hover {
        background: rgb(255, 255, 255);
        color: rgba(100, 139, 127, 0.77);
    }

    .navbar-custom > li > a:hover {
        color: rgb(255, 255, 255);
    }

    .navbar-custom .nav-link:active {
        background: rgb(255, 255, 255);
        color: rgba(100, 139, 127, 0.77);
    }

    .navbar-main .dropdown-toggle::after {
        display: none !important;
        content: none !important;
    }

    /*navbar header */
    .navbar-brand img {
        height: 60px;
        margin-left: 20px;
    }

    .navbar-principale {
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    .link-main-custom > a {
        color: rgba(100, 139, 127, 0.87);
    }

    .navbar-toggler {
        border: none;
        line-height: 0;
    }

    .navbar-toggler img {
        width: 70px;
        height: 60px;
    }

    .offcanvas-end {
        background-color: #648B7F;
        color: #FFFFFF;
    }

    .offcanvas-body .nav-link,
    .offcanvas-body .dropdown-item {
        color: white;
    }

    /*********************************************** prestations/Details *****************************/
    .text-details-prestations {
        text-align: center;
        margin: 30px;
    }

    .block-details-prestations {
        display: flex;
        flex-direction: row;
        justify-self: center;
        align-items: center;
    }

    .table-list {
        width: 100%;
        height: auto;
        margin: 30px;
    }

    .information-prestations-details {
        background-color: rgba(100, 139, 127, 0.48);
        border-radius: 30px;
        width: 100%;
        padding: 30px;
    }


    /*********************************************** footer *****************************/
    .footer {
        background-color: #648B7F;
        color: #FFFFFF;
        padding: 20px;
        width: 100%;
        bottom: 0;
        left: 0;

    }

    .footer-title {
        font-size: 28px;
        font-weight: bold;
        margin-bottom: 10px;
    }

    .footer-container {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        justify-content: space-between;
        max-width: 1200px;
        margin: auto;
    }

    .footer-block {
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
    }

    .footer-logo,
    .footer-links,
    .footer-contact {
        flex: 1;
        min-width: 200px;
        margin: 20px 0;
        text-align: center;
    }

    .footer-logo > img {
        width: 50%;
        height: 70%;
        margin: 20px 0;
    }

    .social-icons {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        margin-top: 10px;
        gap: 15px;
    }

    .social-icons img {
        width: 32px;
        height: 32px;
        object-fit: contain;
        transition: transform 0.2s ease;
    }

    .social-icons a img:hover {
        transform: scale(1.1);
    }

    .social-icons a {
        margin-right: 10px;
    }

    .footer-links ul {
        list-style: none;
        padding: 0;
        line-height: 1.8;
    }

    .footer-links a,
    .footer-contact a {
        color: #FFFFFF;
        text-decoration: none;
    }


    .footer-bottom {
        text-align: center;
        margin-top: 40px;
        font-size: 12px;
    }

    .footer-copyright > p {
        width: 100%;
        text-align: center;
        font-size: 12px;
    }

    /*Page formulaire de contact*/
    .title-page-contact {
        text-align: center;
        padding: 30px 0;
        font-size: 2rem;
        margin-bottom: 20px;
        color: #000000;
    }

    .title-formulaire {
        text-align: center;
    }

    .block-page {
        display: flex;
        flex-direction: row;
        margin: 30px 0;
    }

    .container-form-users,
    .container-form-product,
    .container-form-profil,
    .container-form-inscription,
    .container-form-authentification,
    .container-formulaire {
        width: 100%;
        height: 100%;
        margin: 30px;
        padding: 30px;
        border-radius: 30px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        background-color: rgba(100, 139, 127, 0.38);
    }

    .container-form-users,
    .container-form-product,
    .container-form-profil,
    .container-form-inscription,
    .container-form-authentification {
        width: 50%;
        height: auto;
        justify-self: center;
    }

    .container-profil {
        background-color: #648B7F;
    }

    .title-formulaire h1 {
        margin: 30px;
        text-align: center;
    }

    form label {
        display: block;
        font-weight: 600;
        margin-bottom: 5px;
        color: rgb(0, 0, 0);
    }

    .checkbox {
        display: flex;
        flex-direction: row;
    }

    form input[type="firstname"],
    form input[type="lastname"],
    form input[type="text"],
    form input[type="email"],
    form input[type="tel"],
    form input[type="phoneNumber"],
    form input[type="password"],
    form textarea,
    form select {
        width: 100%;
        padding: 12px;
        margin-bottom: 20px;
        border: 1px solid rgba(100, 139, 127, 0.42);
        border-radius: 10px;
        box-sizing: border-box;
        font-family: 'Roboto', sans-serif;
    }

    form input:focus,
    form textarea:focus,
    form select:focus {
        border-color: #648b7f;
        outline: none;
    }

    form textarea {
        resize: vertical;
        min-height: 120px;
    }

    form button,
    form input[type="submit"] {
        width: 100%;
        padding: 12px;
        background-color: rgba(100, 139, 127, 0.58);
        color: white;
        border: none;
        border-radius: 10px;
        cursor: pointer;
        font-size: 1rem;
        transition: background-color 0.3s ease;
    }

    form button:hover,
    form input[type="submit"]:hover {
        background-color: #f1eaea;
    }

    .container-informations {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 70%;
        margin: 30px;
        border-radius: 30px;
    }

    .block-informations {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        border: 1px solid rgba(100, 139, 127, 0.42);
        border-radius: 30px;
        margin-bottom: 30px;
        width: 100%;
        height: 100%;
    }

    .title-informations {
        font-size: 1.8rem;
        color: #648b7f;
        margin-top: 15px;
        margin-bottom: 15px;

    }

    /*************************************** Details prestations tailles chien ***********************************************/
    .page-header {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin: 0 300px;
    }

    .page-header img {
        margin: 30px;
    }

    .title-paragraphe {
        display: flex;
        flex-direction: column;
        margin: 50px;
    }

    .tableau-tailles {
        width: 50%;
        border-collapse: collapse;
        margin: 2rem 0;
        background: rgba(100, 139, 127, 0.07);
    }

    .tableau-tailles th,
    .tableau-tailles td {
        border: 1px solid rgb(0, 0, 0);
        padding: 12px;
        text-align: left;
    }

    .tableau-tailles thead {
        background: rgba(100, 139, 127, 0.47);
    }

    .tableau-tailles th[scope="row"] {
        font-weight: bold;
        background: rgba(100, 139, 127, 0.71);
    }

    /*Tableau petit chien */
    .tableau-grands-chiens,
    .tableau-chiens-moyens,
    .tableau-petits-chiens {
        width: 100%;
        max-width: 700px;
        margin: 30px;
        border-collapse: collapse;
        background-color: #fffdf7;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        justify-self: center;
    }

    .tableau-grands-chiens caption,
    .tableau-chiens-moyens caption,
    .tableau-petits-chiens caption {
        font-size: 1.4rem;
        font-weight: bold;
        padding: 1rem;
        background-color: rgba(100, 139, 127, 0.37);
        color: #000000;
    }

    .tableau-grands-chiens th,
    .tableau-grands-chiens td,
    .tableau-chiens-moyens th,
    .tableau-chiens-moyens td,
    .tableau-petits-chiens th,
    .tableau-petits-chiens td {
        padding: 1rem;
        text-align: left;
        border-bottom: 1px solid #f0e5d8;
    }

    .tableau-grands-chiens th,
    .tableau-chiens-moyens th,
    .tableau-petits-chiens th {
        background-color: rgba(100, 139, 127, 0.44);
        color: #000000;
        font-size: 1.1rem;
    }

    .tableau-grands-chiens td small,
    .tableau-chiens-moyens td small,
    .tableau-petits-chiens td small {
        color: #000000;
        display: block;
        margin-top: 0.2rem;
    }

    .block-tarifs-grandChien,
    .block-tarifs-chienMoyen,
    .block-tarifs-petitChien {
        width: 100%;
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    .block-informations-prestations {
        justify-self: center;
    }

    /*************************************** Wishlist ***********************************************/
    .block-intro {
        margin: 30px;
    }

    .card-wishlist {
        display: flex;
        flex-direction: row;
        border-collapse: collapse;
        border: 1px solid #648B7F;
        align-self: center;
        justify-self: center;
        margin: 30px;
        border-radius: 30px;
        max-width: 1000px;
    }

    .card-wishlist img {
        width: 100px;
        height: 100px;
        margin: 30px;
    }

    .card-wishlist-body {
        align-self: center;
    }

    /*************************************** contact ***********************************************/
    .block-map {
        color: #FFFFFF;
        text-align: center;
        background-color: rgba(100, 139, 127, 0.54);
        border-radius: 30px;
    }

    .block-map > iframe {
        border-radius: 30px;
        width: 100%;
    }

    .block-map p {
        margin: 15px 0;
    }

    .container-communications {
        display: flex;
        justify-content: center;
        margin-bottom: 30px;

    }

    .container-contact {
        max-width: 1200px;
        margin: auto;
        padding: 40px 20px;
    }

    .block-communications {
        background-color: rgba(100, 139, 127, 0.87);
        border-radius: 30px;
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        padding: 20px 30px;
        width: 100%;
        color: white;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .block-communications p {
        padding: 0;
        margin: 0;
    }

    /*************************************** Liste des utilisateurs ***********************************************/
    .table-utilisateurs {
        width: 50%;
        justify-self: center;
        margin: 30px;
        border: 1px solid #648B7F;

    }

    .table-utilisateurs th {
        background-color: rgba(100, 139, 127, 0.9);
    }

    .table-utilisateurs td {
        background-color: rgba(100, 139, 127, 0.25);
    }

    /* Responsive - Prestations & Services */
    /* Responsive - Contact */
    @media (max-width: 866px) {
        .block-page {
            flex-direction: column;
            align-items: center;
            margin-bottom: 30px;
            justify-content: center;
        }

        .container-formulaire,
        .container-map img,
        .container-informations {
            width: 100%;
        }

        .block-communications {
            flex-direction: column;
            gap: 10px;
        }

        .title-page-contact {
            font-size: 2rem;
        }

        /* Responsive - Boutique */
        @media (max-width: 866px) {
            .image-header H1 {
                font-size: 3rem;
            }

            .product-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 20px;
                padding: 30px;
                max-width: 1200px;
                margin: auto;
            }
        }

        /* Responsive - details products */
        @media (max-width: 768px) {
            .fiche-product {
                flex-direction: column;
                margin: 15px;
                padding: 15px;
            }

            .fiche-product h1 {
                text-align: center;
            }

            .fiche-product img {
                width: 100%;
                max-width: 100%;
                height: auto;
            }

            .block-info-principales {
                flex-direction: column;
                align-items: center;
                padding: 30px;
            }

            .block-info-principales p {
                font-size: 1.8rem;
            }

            .bouton-favoris {
                width: 100%;
                justify-content: center;
            }
        }

        /************************************responsive***********************************/
        /****Accueil****/
        /*Accueil Services*/
        @media (max-width: 768px) {
            .container-services {
                flex-direction: column;
                align-items: center;
                gap: 20px;
            }

            .services {
                width: 80%;
                margin: 0 auto;
            }
        }

        /* Accueil Tarifs*/
        @media (max-width: 768px) {
            .container-tarifs {
                flex-direction: column;
                align-items: center;
                gap: 20px;
            }

            .tarifs {
                width: 80%;
                margin: 0 auto;
            }
        }

        /* Accueil Boutique
        @media (max-width: 768px) {
            .container-boutique {
                flex-direction: column;
                align-items: center;
                gap: 20px;
            }
            .photo-boutique {
                width: 100%;
                height: auto;
                margin: 0 0 20px 0;
            }
        } */
        /****Gallery****/
        @media (max-width: 767px) {
            .gallery {
                column-count: 1;
            }

            .gallery img {
                object-fit: cover;
                height: 100%;
            }
        }

        /****footer****/
        @media (max-width: 768px) {
            .footer-block {
                flex-direction: column;
                text-align: center;
                gap: 80px;
            }

            .footer-logo,
            .footer-links,
            .footer-contact {
                min-width: auto;
                margin: 10px;
            }
        }

        /****NavBar****/
        @media (max-width: 768px) {
            .navbar-principale {
                flex-direction: column;
                align-items: flex-start;
            }

            .navbar-toggler img {
                width: 50px;
                height: 50px;
            }

            .link-main-custom > a {
                padding: 0.5rem 1rem;
                display: block;
                width: 100%;
            }

        }


    }

}
.container>form {
    padding: 30px;
}