body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #333;
    background-color: #faf8f5;
    padding-top: 70px;
}

/* HEADER SLIDER */
.slider-container {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: normal;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    font-weight: 300;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    font-weight: 300;
}

/* SECTIONS GÉNÉRALES */
.section {
    padding: 5rem 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #8B4513;
    font-weight: normal;
    letter-spacing: 1px;
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #666;
    font-style: italic;
}

/* MENU DE NAVIGATION */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(139, 69, 19, 0.95);
    backdrop-filter: blur(10px);
    z-index: 999;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(160, 82, 45, 0.3);
}

.navbar.scrolled {
    background: rgba(139, 69, 19, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    color: #faf8f5;
    font-size: 1.5rem;
    font-weight: normal;
    text-decoration: none;
    letter-spacing: 1px;
    font-family: 'Georgia', serif;
    transition: color 0.3s ease;
}

.nav-logo:hover {
    color: #e8e2d9;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2.5rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #faf8f5;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: normal;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
    font-family: 'Georgia', serif;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #e8e2d9;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #e8e2d9;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: #e8e2d9;
}

/* HAMBURGER MENU */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    background: none;
    border: none;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #faf8f5;
    margin: 2px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* MOBILE MENU */
.nav-mobile {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #f8f6f3;
    backdrop-filter: blur(10px);
    z-index: 998;
    padding-top: 80px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.nav-mobile.active {
    transform: translateX(0);
}

.nav-mobile-menu {
    list-style: none;
    padding: 2rem;
    margin: 0;
    text-align: center;
}

.nav-mobile-item {
    margin-bottom: 2rem;
}

.nav-mobile-link {
    color: #964c21;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: normal;
    font-family: 'Georgia', serif;
    transition: color 0.3s ease;
    display: block;
    padding: 1rem;
}

.nav-mobile-link:hover {
    color: #5d2301;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-mobile {
        display: block;
    }

    .nav-logo {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    body{
        padding-top: 52px;
    }

    .nav-container {
        padding: 0 1rem;
    }
    .navbar {
        padding: 0.5rem 0;
    }
}

@media (max-width: 480px) {
    .nav-mobile-link {
        font-size: 1.3rem;
    }
}

/* HÉBERGEMENTS */
.hebergements {
    background: linear-gradient(135deg, #f5f3f0 0%, #e8e2d9 100%);
    text-align: center;
}

.hebergements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.hebergement-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.hebergement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    text-decoration: none;
    color: inherit;
}

.hebergement-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hebergement-content {
    padding: 1.5rem;
}

.hebergement-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #8B4513;
}

.hebergement-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: justify;
}

/* PRÉSENTATION */
.presentation {
    background-color: white;
}

.presentation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.presentation-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.presentation-text h3 {
    color: #8B4513;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.presentation-text p{
    text-align: justify;
}

.jardin-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.jardin-photo {
    aspect-ratio: 1;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.jardin-photo:hover {
    transform: scale(1.05);
}

.jardin-photo:first-child {
    grid-column: span 2;
    grid-row: span 2;
}

/* RESTAURATION */
.restauration {
    background-color: white;
}

.restauration-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.restauration-photo {
    aspect-ratio: 4/3;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.restauration-photo:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

/* BANDEAU À DÉCOUVRIR */
.bandeau-decouvrir {
    height: 60vh;
    background-image: url('../images/bandeau/1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bandeau-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
}

.bandeau-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.bandeau-title {
    font-size: 3rem;
    font-weight: normal;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    letter-spacing: 2px;
}

.bandeau-description {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* SERVICES */
.services {
    background: linear-gradient(135deg, #f5f3f0 0%, #e8e2d9 100%);
    padding: 3rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.service-item {
    background: transparent;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-2px);
}

.service-icon {
    width: 2rem;
    height: 2rem;
    margin: 0 auto 0.5rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    /* Optimisation pour les grandes images */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: optimize-contrast;
}

.service-item:hover .service-icon {
    opacity: 1;
}

.service-item:hover .service-icon img {
    transform: scale(1.05);
}

.service-title {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: #666;
    font-weight: normal;
}

/* CONTACT */
.contact {
    background-color: white;
    padding: 5rem 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-info {
    background: #f8f6f3;
    color: #964c21;
    padding: 1rem 1rem;
    border: 1px solid #964c21;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
    flex-shrink: 0;
}

.contact-details {
    margin-bottom: 0;
    flex-shrink: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact-item {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    margin-bottom: 0.3rem;
}

.contact-item a {
    color: #555;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
    color: #000;
}

.formulaire-contact {
    background: #f8f6f3;
    padding: 1rem 1rem;
    border-radius: 15px;
}

.formulaire-contact h3 {
    color: #8B4513;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #555;
    font-weight: bold;
}

.asterisque {
    color: #d32f2f;
}

.inputedit {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.inputedit:focus {
    outline: none;
    border-color: #8B4513;
}

select.inputedit {
    background-color: white;
    background-image: url("data:image/svg+xml;charset=US-ASCII,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'><path fill='%23666' d='m0,1 2,2 2,-2'/></svg>");
    background-repeat: no-repeat;
    background-position: right 0.8rem center;
    background-size: 12px;
    padding-right: 2.5rem;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

select.inputedit:focus {
    background-image: url("data:image/svg+xml;charset=US-ASCII,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'><path fill='%238B4513' d='m0,1 2,2 2,-2'/></svg>");
}

input[type="date"].inputedit {
    background-image: url("data:image/svg+xml;charset=US-ASCII,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23666'><path d='M19 3h-1V1h-2v2H8V1H6v2H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V8h14v11zM7 10h5v5H7z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 0.8rem center;
    background-size: 20px;
    padding-right: 2.8rem;
}

#textareamessage {
    height: 120px;
    resize: vertical;
}

#valider {
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease;
    width: 100%;
}

#valider:hover {
    transform: translateY(-2px);
}

.error {
    color: #d32f2f;
    font-size: 0.9rem;
}

#notifications {
    color: #d32f2f;
    font-weight: bold;
    margin-bottom: 1rem;
}

.message-succes {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    border-radius: 5px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
    text-align: center;
}

.map-embed {
    margin-top: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.map-embed h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #964c21;
    flex-shrink: 0;
}

.map-embed iframe {
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    width: 100%;
    flex: 1;
    min-height: 200px;
    height: 100%;
}

/* MODAL GALERIE */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
}

.modal-close:hover {
    color: #ccc;
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255,255,255,0.2);
    color: white;
    border: none;
    font-size: 30px;
    font-weight: bold;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    z-index: 1001;
}

.modal-nav:hover {
    background-color: rgba(255,255,255,0.4);
}

.modal-prev {
    left: 20px;
}

.modal-next {
    right: 20px;
}

.modal-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    background-color: rgba(0,0,0,0.5);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
}

/* Curseur pour indiquer que les images sont cliquables */
.jardin-photo,
.restauration-photo,
.hebergement-image {
    cursor: pointer;
}

@media (max-width: 1000px) {
    .contact-container {
        gap: 2rem;
    }
}

/* Responsive modal */
@media (max-width: 768px) {
    .modal-nav {
        font-size: 24px;
        padding: 10px 15px;
    }

    .modal-close {
        font-size: 30px;
        top: 10px;
        right: 20px;
    }

    .modal-counter {
        bottom: 10px;
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .presentation-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info,
    .formulaire-contact {
        padding: 1rem 0.5rem;
    }

    .bandeau-title {
        font-size: 2rem;
    }

    .container {
        padding: 0 0.8rem;
    }
}

@media (max-width: 768px) {
    .bandeau-description {
        font-size: 1rem;
    }
}

@media (max-width: 555px) {
    /* Transformation de la galerie restauration en slider sur mobile */
    .restauration-gallery {
        position: relative;
        overflow: hidden;
        height: 300px;
        display: block; /* Désactive la grille */
    }

    .restauration-photo {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 0.5s ease-in-out;
        border-radius: 10px;
        /* Réinitialise toutes les propriétés de grille */
        grid-column: initial;
        grid-row: initial;
        aspect-ratio: initial;
    }

    .restauration-photo.active-restauration {
        opacity: 1;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section {
        padding: 3rem 0;
    }

    .contact {
        padding: 3rem 0;
    }
    
    .contact-info,
    .formulaire-contact {
        padding: 1rem 0.5rem;
        border-radius: 10px;
    }
    
    .contact-info h3,
    .formulaire-contact h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-item {
        margin-bottom: 1.5rem;
        font-size: 1rem;
    }
    
    .inputedit {
        padding: 0.6rem;
        font-size: 0.9rem;
    }
    
    #valider {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .map-embed iframe {
        height: 200px;
    }

    /* Transformation de la galerie jardin en slider sur mobile */
    .jardin-gallery {
        position: relative;
        overflow: hidden;
        height: 250px;
        display: block; /* Désactive la grille */
    }

    .jardin-photo {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 0.5s ease-in-out;
        border-radius: 8px;
        /* Réinitialise toutes les propriétés de grille */
        grid-column: initial;
        grid-row: initial;
    }

    .jardin-photo.active-jardin {
        opacity: 1;
    }
}

@media (max-width: 480px) {
    .bandeau-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 320px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .contact-info,
    .formulaire-contact {
        padding: 1rem 0.5rem;
    }
    
    .contact-info h3,
    .formulaire-contact h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .contact-item {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .inputedit {
        padding: 0.5rem;
        font-size: 0.85rem;
    }
    
    #textareamessage {
        height: 100px;
    }
    
    #valider {
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
    }
    
    .map-embed iframe {
        height: 180px;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    #notifications {
        font-size: 0.85rem;
    }
    
    .error {
        font-size: 0.8rem;
    }
}

/* FOOTER */
.footer {
    background: linear-gradient(135deg, #8B4513 0%, #964c21 100%);
    color: #faf8f5;
    padding: 3rem 0 1rem 0;
    margin-top: 3rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section{
    text-align: center;
}

.footer-section h4 {
    color: #e8e2d9;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-family: 'Georgia', serif;
    font-weight: normal;
}

.footer-section p {
    line-height: 1.6;
    color: #f0ebe2;
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #f0ebe2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #e8e2d9;
    text-decoration: underline;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links a {
    color: #f0ebe2;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1rem;
}

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

.footer-bottom {
    border-top: 1px solid rgba(240, 235, 226, 0.3);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright p,
.footer-credits p {
    margin: 0;
    font-size: 0.9rem;
    color: #e8e2d9;
}

.footer-credits a {
    color: #e8e2d9;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.footer-credits a:hover {
    color: #faf8f5;
    text-decoration: underline;
}

#jaggLien {
    font-family: 'Georgia', serif;
    letter-spacing: 0.5px;
}

/* Responsive footer */
@media (max-width: 768px) {
    .footer {
        padding: 2rem 0 1rem 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .footer-section h4 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 1.5rem 0 0.5rem 0;
    }
    
    .footer-content {
        gap: 1rem;
    }
    
    .footer-section p,
    .footer-links a {
        font-size: 0.9rem;
    }
    
    .footer-copyright p,
    .footer-credits p {
        font-size: 0.8rem;
    }
}

@media (max-width: 320px) {
    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .footer-section p,
    .footer-links a {
        font-size: 0.85rem;
    }
    
    .footer-copyright p,
    .footer-credits p {
        font-size: 0.75rem;
    }
}

/* BOUTON RÉSERVER */
.btn-reserver {
    display: inline-block;
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    text-align: center;
    margin-top: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.btn-reserver:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.4);
    background: linear-gradient(135deg, #A0522D 0%, #8B4513 100%);
}

/* Responsive pour le bouton */
@media (max-width: 480px) {
    .btn-reserver {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        margin-top: 1.5rem;
    }
}

@media (max-width: 320px) {
    .btn-reserver {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
        margin-top: 1rem;
    }
}