
:root {
    --primaryColor: #f8b800;
    --rouge: #8B0000;
    --vert: #0B3D20;
    --creme: #FDF8F0;
    --noir: #1A1A1A;
    --or: #D4AF37;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Georgia', serif;
}

body {
    background: linear-gradient(135deg, rgba(91, 126, 136, 0.9), rgba(132, 120, 89, 0.9), rgba(93, 64, 116, 0.9)),
                url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4') center/cover no-repeat;
    color: var(--noir);
    min-height: 100vh;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}
.titre {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    gap: 20px;
    height: auto;
    min-height: 200px;
    margin-bottom: 30px;
    padding: 20px;
}

.titre img {
    width: 300px;
    max-width: 100%;
}

.titre h3 i {
    color: var(--primaryColor);
}

.titre h3 {
    font-size: clamp(14px, 2vw, 18px);
}

.header {
    text-align: center;
    padding: 40px 20px;
    flex: 1;
}

.header h1 {
    font-size: clamp(24px, 5vw, 48px);
    color: var(--primaryColor);
    text-shadow: 2px 2px 8px black;
}

.header p {
    font-size: clamp(14px, 2.5vw, 20px);
    color: white;
    text-shadow: 1px 1px 4px black;
}
.carrousel {
    position: relative;
    overflow: hidden;
    max-width: 100%;
}

.carrousel .images {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    height: 600px;
    transition: transform 0.7s ease-in-out;
}

.slider-item {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}

.fleches {
    position: absolute;
    width: 100%;
    padding: 0 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    color: var(--primaryColor);
    cursor: pointer;
    z-index: 10;
}

.fleches span {
    font-size: 2rem;
    background: rgba(0, 0, 0, 0.4);
    padding: 10px 15px;
    border-radius: 50%;
    transition: background 0.3s;
}

.fleches span:hover {
    background: rgba(0, 0, 0, 0.7);
}
nav {
    position: relative;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#toggle-btn {
    display: none;
    cursor: pointer;
    z-index: 9999;
    color: var(--primaryColor);
    background: rgba(0, 0, 0, 0.7);
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 1.5rem;
    position: fixed;
    top: 15px;
    right: 15px;
    transition: background 0.3s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

#toggle-btn:hover {
    background: rgba(0, 0, 0, 0.9);
}

nav ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    list-style-type: none;
    padding: 0;
    margin: 0;
    opacity: 1;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    visibility: visible;
   
}

nav ul li {
    margin: 5px 10px;
    background-color: grey;
    font-size: clamp(14px, 1.5vw, 16px);
    min-width: 110px;
    height: 45px;
    line-height: 45px;
    color: white;
    text-align: center;
    box-shadow: 2px 2px 5px #444;
    cursor: pointer;
    border-radius: 5px;
    
}

nav ul li:hover {
    background-color: rgb(96, 96, 96);
}

nav ul li:first-child {
    background-color: var(--primaryColor);
}

nav ul li a {
    display: block;
    width: 100%;
    height: 100%;
    color: white;
    text-decoration: none;
}
.un {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
    padding: 40px 20px;
}

.box {
    flex: 1 1 300px;
}

.Suggestions {
    flex: 2;
    min-width: 300px;
}

.Suggestions h2 {
    font-size: clamp(20px, 3vw, 28px);
    color: var(--primaryColor);
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cards .card {
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.cards .card:hover {
    transform: translateY(-5px);
}

.cards .card h3 {
    color: var(--rouge);
    margin: 15px 0 10px 0;
    font-size: clamp(16px, 2vw, 20px);
}

.cards .card p {
    font-size: clamp(13px, 1.5vw, 15px);
    line-height: 1.6;
    margin-bottom: 8px;
}

.btn {
    display: inline-block;
    background: linear-gradient(90deg, var(--or), #FFD700);
    color: var(--vert);
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 10px;
    transition: transform 0.3s;
}

.btn:hover {
    transform: scale(1.05);
}

.deux {
    margin-top: 20px;
    padding: 25px;
    background: rgba(128, 128, 128, 0.5);
    border-radius: 0 20px 20px 0;
    height: auto;
    min-height: 400px;
    backdrop-filter: blur(3px);
}

.deux h4 {
    font-size: clamp(16px, 2vw, 20px);
    color: white;
    margin-bottom: 15px;
}

.deux p {
    font-size: clamp(13px, 1.5vw, 15px);
    color: white;
    line-height: 1.7;
    margin-bottom: 10px;
}

.bouton {
    background-color: var(--primaryColor);
    color: white;
    padding: 12px 20px;
    font-size: clamp(13px, 1.5vw, 16px);
    border: none;
    border-radius: 5px;
    margin: 20px 5px;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.bouton:hover {
    background-color: #d4a000;
    transform: scale(1.03);
}
.temoignages {
    padding: 50px 20px;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 20px;
    margin: 20px;
}

.temoignages h2 {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: bold;
    margin-bottom: 40px;
    color: var(--primaryColor);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.temoignage_card {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 20px;
}

.temoignage_card .card {
    flex: 1 1 280px;
    max-width: 350px;
    background: rgb(199, 238, 238);
    padding: 20px;
    border-radius: 8px;
    border-left: 5px solid var(--primaryColor);
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.temoignage_card .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.name {
    font-size: clamp(16px, 2vw, 18px);
    font-weight: bold;
    color: var(--rouge);
    margin-bottom: 10px;
}

.temoignage_card .card p {
    font-size: clamp(13px, 1.5vw, 14px);
    line-height: 1.6;
}

.temoignages button {
    background: linear-gradient(90deg, violet, #8B008B);
    color: white;
    font-size: clamp(13px, 1.5vw, 15px);
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    margin: 30px auto;
    cursor: pointer;
    display: inline-block;
    transition: transform 0.3s;
}

.temoignages button:hover {
    transform: scale(1.05);
}
footer {
    background: linear-gradient(90deg, #1a1a2e, #16213e, #0f3460);
    color: #e0e0e0;
    font-size: clamp(12px, 1.2vw, 14px);
    text-align: center;
    padding: 30px 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-top: 3px solid var(--primaryColor);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
}

footer p {
    margin: 0;
    line-height: 1.6;
}

footer p:first-child {
    font-size: clamp(13px, 1.3vw, 15px);
    font-weight: bold;
    color: var(--primaryColor);
}

footer .social-icons {
    display: flex;
    gap: 20px;
    font-size: 1.5rem;
    margin: 5px 0;
}

footer .social-icons span {
    cursor: pointer;
    transition: transform 0.3s, color 0.3s;
}

footer .social-icons span:hover {
    transform: scale(1.2);
    color: var(--primaryColor);
}

footer .payment-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 8px;
    font-size: clamp(11px, 1vw, 13px);
}

footer .copyright {
    font-size: clamp(10px, 0.9vw, 12px);
    color: #888;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 12px;
    width: 100%;
}
@media screen and (max-width: 1024px) {
    .titre {
        flex-direction: column;
        text-align: center;
        min-height: auto;
    }

    .carrousel .images {
        height: 400px;
    }

    .un {
        flex-direction: column;
    }

    .Suggestions {
        flex: 1;
    }

    .deux {
        border-radius: 20px;
    }
}
@media screen and (max-width: 768px) {
    #toggle-btn {
        display: block;
    }

    nav ul {
        opacity: 0;
        flex-direction: column;
        width: 250px;
        padding: 0;
        position: absolute;
        top: 10px;
        left: calc(50% - 125px);
        background: rgba(0, 0, 0, 0.8);
        border-radius: 10px;
        z-index: 15;
    }

    nav ul.show {
        opacity: 1;
    }

    nav ul li {
        width: 100%;
        margin: 2px 0;
    }

    .carrousel .images {
        height: 300px;
    }

    .temoignage_card .card {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .titre {
        flex-direction: column;
        padding: 15px;
    }

    .titre img {
        width: 200px;
    }
}
@media screen and (max-width: 580px) {
    .titre {
        flex-direction: column;
        text-align: center;
    }

    .titre h3 {
        font-size: 14px;
    }

    .titre img {
        width: 180px;
    }

    .carrousel .images {
        height: 220px;
    }

    .fleches span {
        font-size: 1.2rem;
        padding: 5px 10px;
    }

    .cards .card {
        padding: 15px;
    }

    .deux {
        padding: 15px;
        min-height: auto;
    }

    .temoignages {
        margin: 10px;
        padding: 30px 15px;
    }

    footer {
        padding: 15px 20px;
        flex-direction: column;
    }
}
@media screen and (min-width: 1025px) {
    nav ul {
        opacity: 1 !important;
    }

    .carrousel .images {
        height: 600px;
    }
}
section {
    padding: 90px 20px;
}

.centre {
    text-align: inherit;
    width: 35%;
    color: #48400f;
    font-family: "playfair Display", serif;
}

.centre p {
    font-size: 1.2rem;
    margin: 20px 0;
}

.suggestion, .temoignages, .gallery, #contact {
    padding: 80px 20px;
    text-align: center;
    background: var(--lightcolor);
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.gallery img {
    width: 280px;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    transition: all 0.4s;
    border: 3px solid transparent;
}

.gallery img:hover {
    transform: scale(1.05) rotate(-1deg);
    border-color: var(--or);
    box-shadow: 0 0 25px var(--or);
}

h2 {
    font-family: 'playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    color: var(--rouge);
}
