@charset "utf-8";

/* Styles de base et réinitialisation */
body {
    font-family: 'Playfair Display', serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    margin: 0;
}

/* Header et Hero Section */
header, .hero {
    background: linear-gradient(rgba(0,0,0,0.62), rgba(0,0,0,0.62)), url('/images/cave-secret.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.hero {
    height: auto;
    min-height: 60vh;
    padding: 4rem 1rem;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('/images/cave-secrete/cave-secrete.jpg');
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
}

.hero-cave-du-secret {
    background-image: url('/images/cave-du-secret/cave-du-secret.jpg');
    background-size: cover;
    background-position: center;
    height: 60vh;
}

.header-content, .hero-content {
    padding: 0 20px;
    max-width: 1200px;
    width: 100%;
}

.header-content h1, .hero h1 {
    font-size: 4rem;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.header-content p, .hero p {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255,255,255,0.95);
    padding: 1rem 0;
    z-index: 1000;
    transition: background-color 0.3s ease;
}

.nav-menu {
    z-index: 1000;
    display: flex;
    justify-content: center;
    list-style: none;
    transition: all 0.3s ease;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin: 0 2rem;
}

.nav-menu li a {
    text-decoration: none;
    color: #333;
    font-size: 1.2rem;
    transition: color 0.3s;
    position: relative;
}

.nav-menu li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #9b8055;
    transition: width 0.3s;
}

.nav-menu li a:hover:after {
    width: 100%;
}

.nav-menu li a:hover {
    color: #9b8055;
}

/* Nouveau style pour le menu déroulant */
.has-dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255,255,255,0.95);
    min-width: 200px;
    padding: 0.5rem 0;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.has-dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
}

.dropdown-menu li {
    margin: 0 !important;
    padding: 0.5rem 1rem;
}

.dropdown-menu li a {
    color: #333;
    text-decoration: none;
    display: block;
    padding: 0.5rem;
    transition: color 0.3s;
    white-space: nowrap;
}

.dropdown-menu li a:hover {
    color: #9b8055;
}

.dropdown-menu li a:after {
    display: none;
}

.mobile-only {
    display: none;
}

/* Masquer en version mobile */
@media screen and (max-width: 1000px) {
    .dropdown-menu {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
    }
    
    .mobile-only {
        display: block;
    }
}

/* Style pour le numéro de téléphone */
.phone-number {
    position: fixed; /* Changé de absolute à fixed */
    left: 0;
    right: 0;
    top: 0;
    text-align: left;
    padding: 8px 20px;
    font-size: 1.1rem;
    margin: 0; /* Ajouté */
}

.phone-number a {
    color: #9b8055;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.phone-number a:hover {
    color: #7a6543;
}

@media screen and (max-width: 1000px) {
    body {
        padding-top: 35px; /* Ajouté spécifiquement pour le mobile */
    }

        .phone-number {
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        height: 35px; /* Hauteur fixe ajoutée */
        background-color: #fff;
        text-align: left;
        padding: 8px 20px;
       
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(0,0,0,0.1);
        margin: 0;
        box-sizing: border-box; /* Ajouté pour inclure padding dans la hauteur */
    }

    nav {
        padding: 0;
        position: fixed;
        left: 0;
        right: 0;
        margin: 0;
    }

    .nav-menu {
        display: none;
        width: 100%;
        position: fixed;
        top: 35px;
        left: 0;
        background-color: rgba(255,255,255,0.95);
        flex-direction: column;
        text-align: center;
        height: calc(100vh - 35px);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        display: flex;
    }
}

/* Sections */
section {
    padding: 5rem 2rem;
    overflow: hidden;
}

.concept, .description {
    background-color: #f9f9f9;
    text-align: center;
}

.concept h2, .description h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #9b8055;
}

.concept p, .description p {
    max-width: 800px;
    margin: 0 auto 1.5rem;
    font-size: 1.2rem;
}

.description p {
    text-align: justify;
}

/* Hébergements et Équipements */
.hebergements, .equipements {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hebergement, .equipement {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 2rem;
}

.hebergement:hover, .equipement:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.hebergement img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hebergement:hover img {
    transform: scale(1.05);
}

.hebergement-content {
    padding: 2rem;
}

.hebergement h3, .equipement h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #9b8055;
}

.hebergement p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.hebergement ul, .equipement ul {
    list-style: none;
    margin: 1rem 0;
}

.hebergement ul li, .equipement ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.hebergement ul li:before {
    content: '•';
    color: #9b8055;
    position: absolute;
    left: 0;
}

/* Galerie Photos */
.galerie {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    margin: 3rem 0;
}

.galerie a {
    display: block;
    height: 250px;
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.galerie a:hover {
    transform: scale(1.05);
}

.galerie img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.galerie-supplementaire {
    animation: fadeIn 0.5s ease-out;
}

.btn-reserver.active {
    background-color: #333;
    color: white;
}

/* Section Réservation */
.reservation {
    background-color: #9b8055;
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.reservation h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.options-reservation {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

@media screen and (max-width: 768px) {
    .options-reservation {
        flex-direction: column;
        align-items: center;
    }
}
/* Boutons */
.btn, .btn-reserver {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #9b8055;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    font-family: 'Playfair Display', serif;
}

.btn-reserver {
    background-color: white;
    color: #9b8055;
    padding: 1rem 3rem;
    font-size: 1.2rem;
    margin-top: 2rem;
}

.btn:hover, .btn-reserver:hover {
    background-color: #7a6543;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.btn-reserver:hover {
    background-color: #333;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
.backgroundColor{
    background-color: #9b8055;
    color: #FFF;
}
/* Informations pratiques */
.infos-pratiques {
    background-color: #f9f9f9;
    padding: 4rem 0;
}

.infos-pratiques h2 {
    color: #9b8055;
    text-align: center;
    margin-bottom: 2rem;
}

.infos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-box {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.info-box h3 {
    color: #9b8055;
    margin-bottom: 1rem;
}

/* Section Calendrier */
.disponibilites {
    background-color: #f9f9f9;
    padding: 4rem 0;
}

.disponibilites h2 {
    color: #9b8055;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

#calendar {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.status {
    text-align: center;
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
    display: none;
    font-family: 'Playfair Display', serif;
}

.status.success {
    background-color: #e8f5e9;
    color: #2e7d32;
    display: block;
}

.status.error {
    background-color: #ffebee;
    color: #c62828;
    display: block;
}

/* FullCalendar personnalisé */
.fc-toolbar-title {
    font-family: 'Playfair Display', serif !important;
    font-size: 1.8rem !important;
    color: #333 !important;
    text-transform: capitalize;
}

.fc-button {
    background-color: #9b8055 !important;
    border-color: #9b8055 !important;
    font-family: 'Playfair Display', serif !important;
    border-radius: 5px !important;
    transition: all 0.3s ease !important;
}

.fc-button:hover {
    background-color: #7a6543 !important;
    border-color: #7a6543 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1) !important;
}

.fc-day-today {
    background-color: #f9f9f9 !important;
}

.fc-event {
    border: none !important;
    padding: 2px 5px !important;
    background-color: #ff5a5f !important;
    border-radius: 4px !important;
}

/* Responsive du calendrier */
@media screen and (max-width: 768px) {
    .disponibilites h2 {
        font-size: 2rem;
    }
    
    .fc-toolbar-title {
        font-size: 1.5rem !important;
    }

    #calendar {
        padding: 15px;
    }
}

@media screen and (max-width: 576px) {
    .disponibilites h2 {
        font-size: 1.8rem;
    }
    
    #calendar {
        padding: 10px;
    }

    .fc-toolbar {
        flex-direction: column;
        gap: 10px;
    }
}

@media screen and (max-width: 320px) {
    .disponibilites {
        padding: 2rem 0.5rem;
    }

    .disponibilites h2 {
        font-size: 1.5rem;
    }

    #calendar {
        padding: 5px;
    }
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 2rem;
    text-align: center;
}

footer p {
    margin: 0.5rem 0;
}

footer a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: #9b8055;
}

/* Menu Hamburger */
.hamburger {
    display: none;
    cursor: pointer;
    padding: 1rem;
    position: fixed; /* Changé de absolute à fixed */
    right: 1rem;
    top: 35px; /* Ajusté pour tenir compte du numéro de téléphone */
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: #858585;
    transition: all 0.3s ease;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .header-content h1, .hero h1 {
        font-size: 3.5rem;
    }

    .nav-menu li {
        margin: 0 1.5rem;
    }
}

@media screen and (max-width: 1000px) {
    nav {
        padding: 0;
    }
    
    .hamburger {
        display: block;
    }

    .nav-menu {
        display: none;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: rgba(255,255,255,0.95);
        padding: 1rem 0;
        flex-direction: column;
        text-align: center;
    }

    .nav-menu.active {
        display: flex;
        animation: slideDown 0.3s ease-out;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .dropdown-menu {
        display: none !important;
    }

    .mobile-only {
        display: block;
    }

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

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

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

    .nav-menu .mobile-only a {
        color: #333;
        font-size: 1.2rem;
    }
    
    .nav-menu .mobile-only a:hover {
        color: #9b8055;
    }
}

@media screen and (max-width: 768px) {
    body {
        font-size: 15px;
    }

    .hero {
        background-size: cover;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
        padding: 0 1rem;
    }

    .container {
        padding: 1rem;
    }

    .description h2 {
        font-size: 2rem;
    }

    .galerie {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

    .equipements, .infos-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media screen and (max-width: 576px) {
    body {
        font-size: 14px;
    }

    .header-content h1 {
        font-size: 2rem;
        padding: 0 1rem;
    }

    .header-content p {
        font-size: 1.2rem;
        padding: 0 1rem;
    }

    section {
        padding: 3rem 1rem;
    }

    .concept h2 {
        font-size: 1.8rem;
    }

    .concept p {
        font-size: 1rem;
    }

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

    .hebergement-content {
        padding: 1rem;
    }

    .hebergement h3 {
        font-size: 1.5rem;
    }

.btn, .btn-reserver {
        width: 100%;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .hebergement img {
        height: 200px;
    }

    .galerie a {
        height: 200px;
    }

    .info-box {
        padding: 1.5rem;
    }
}

@media screen and (max-width: 320px) {
    body {
        font-size: 14px;
    }

    .container {
        padding: 1rem 0.5rem;
    }

    .header-content h1, .hero-content h1 {
        font-size: 1.8rem;
        padding: 0;
        word-wrap: break-word;
    }

    .header-content p, .hero-content p {
        font-size: 1rem;
    }

    .hero {
        min-height: 50vh;
    }

    .concept h2, .description h2, .reservation h2 {
        font-size: 1.5rem !important;
    }

    .nav-menu li a {
        font-size: 1rem;
    }

    section {
        padding: 2rem 0.5rem;
    }

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

    .equipement {
        padding: 1rem;
    }

    .equipement h3 {
        font-size: 1.4rem;
    }

    .equipement ul li {
        font-size: 0.9rem;
        padding-left: 1rem;
    }

    .galerie {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        margin: 2rem 0;
    }

    .galerie a {
        height: 180px;
    }

    .reservation {
        padding: 2rem 1rem;
    }

    .reservation h2 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .btn-reserver {
        width: 100%;
        padding: 0.8rem 1rem;
        font-size: 1rem;
        margin-top: 1rem;
    }

    .infos-pratiques {
        padding: 2rem 0;
    }

    .info-box {
        padding: 1rem;
        margin: 0 0.5rem;
    }

    .info-box h3 {
        font-size: 1.3rem;
    }

    .info-box p {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    footer {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .hamburger {
        padding: 0.5rem;
        right: 0.5rem;
    }

    .hamburger span {
        width: 20px;
        height: 2px;
        margin: 4px 0;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header-content, .concept, .hebergement {
    animation: fadeIn 1s ease-out;
}

/* Formulaire contact */
#agencementContact {
    display: flex;
    justify-content: space-between;
    color: #636363;
    padding: 0rem 5rem;
    width: 100%;
    box-sizing: border-box;
    background-color: #f9f9f9;
}

@media screen and (max-width: 1450px) {
    #agencementContact {
        padding: 0rem 2rem;
    }
}

@media screen and (max-width: 1200px) {
    #agencementContact {
        flex-direction: column;
        justify-content: center;
        padding: 0rem 0.2rem;
    }
}

#coordonees {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    border-radius: 8px;
}

@media screen and (max-width: 1050px) {
    #coordonees {
        font-size: 16px;
    }
}

#coordonees span {
    margin-right: 1rem;
    margin-bottom: 0.8rem;
}

@media screen and (max-width: 1200px) {
    #coordonees span {
        margin: 0.5rem 1rem 0rem 0rem;
    }
}

@media screen and (max-width: 1300px) {
    #coordonees iframe {
        width: 30rem;
    }
}

@media screen and (max-width: 1200px) {
    #coordonees iframe {
        display: none;
    }
}

.formulaire_contact {
    flex: 4;
    font-size: 1.2rem;
    padding: 1rem;
    display: flex;
    justify-content: end;
    margin-left: 3rem;
    max-width: 100%;
    box-sizing: border-box;
}

@media screen and (max-width: 1200px) {
    .formulaire_contact {
        justify-content: center;
        margin-left: 0;
    }
}

.formulaire_contact form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 50rem;
}

@media screen and (max-width: 580px) {
    .formulaire_contact form {
        font-size: 1rem;
    }
}

.formulaire_contact form div {
    margin-top: 1rem;
}

.formulaire_contact form ul li {
    text-align: center;
}

.inputedit {
    width: 100%;
    max-width: 50rem;
    padding: 0.8rem;
    border: 1px solid #1d1d1d;
    background-color: #f5f5f5;
    color: #0d0c0c;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.inputedit:focus {
    outline: none;
    border-color: #636363;
    box-shadow: 0 0 5px rgba(99, 99, 99, 0.2);
}

@media screen and (max-width: 1600px) {
    .inputedit {
        max-width: 40rem;
    }
}

@media screen and (max-width: 1400px) {
    .inputedit {
        max-width: 35rem;
    }
}

@media screen and (max-width: 1000px) {
    .inputedit {
        max-width: 25rem;
    }
}

@media screen and (max-width: 600px) {
    .inputedit {
        max-width: 100%;
        width: 100%;
    }
}

#textareamessage {
    min-height: 10rem;
    resize: vertical;
    font-family: inherit;
    border-radius: 4px;
    padding: 0.5rem;
    color: #0d0c0c;
}

#valider {
    cursor: pointer;
    transition: all 0.3s ease;
    color: #ffffff;
    margin-top: 1.5rem;
    padding: 0.5rem 2rem;
    height: auto;
    font-size: 1.3rem;
    font-weight: bold;
    background-color: #636363;
    border: none;
    border-radius: 4px;
}

@media screen and (max-width: 480px) {
    #valider {
        font-size: 1.1rem;
    }
}

#valider:hover {
    background-color: #4a4a4a;
    transform: translateY(-2px);
}

.asterisque {
    color: #c50303;
}

.error {
    color: #ec5f66;
    font-size: 0.9rem;
    margin-top: 0.3rem;
    padding: 0.5rem;
    background-color: rgba(236, 95, 102, 0.1);
    border-radius: 4px;
}

#titre_form {
    font-size: 30px;
}

@media screen and (max-width: 1000px) {
    #titre_form {
        font-size: 1.2rem;
    }
}

#mapTel {
    display: none;
    margin: auto;
}

@media screen and (max-width: 1200px) {
    #mapTel {
        margin-bottom: 1rem;
        display: block;
    }
}

@media screen and (max-width: 1000px) {
    #mapTel iframe {
        width: 30rem;
    }
}

@media screen and (max-width: 600px) {
    #mapTel iframe {
        width: 25rem;
    }
}

@media screen and (max-width: 500px) {
    #mapTel iframe {
        width: 20rem;
    }
}

@media screen and (max-width: 355px) {
    #mapTel iframe {
        width: 16rem;
    }
}

iframe {
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.NomSite {
    font-size: 1.3rem;
}

#contact {
    font-size: 1.5rem;
    text-align: center;
}

/* formulaire de réservation */
/* Formulaire de réservation */
.form-reservation {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.form-reservation .form-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.form-reservation label {
    margin-bottom: 0.5rem;
    color: #333;
    font-size: 1.2rem;
}

.form-reservation input,
.form-reservation textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #1d1d1d;
    background-color: #f5f5f5;
    color: #0d0c0c;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-reservation input:focus,
.form-reservation textarea:focus {
    outline: none;
    border-color: #9b8055;
    box-shadow: 0 0 5px rgba(155, 128, 85, 0.2);
}

.form-reservation textarea {
    min-height: 100px;
    resize: vertical;
}

.form-reservation .total {
    margin: 1.5rem 0;
    font-size: 1.3rem;
    text-align: right;
    color: #9b8055;
    font-weight: bold;
}

/* Adapter le bouton de réservation existant */
.form-reservation .btn-reserver {
    width: 100%;
    background-color: #9b8055;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.form-reservation .btn-reserver:hover {
    background-color: #7a6543;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

@media screen and (max-width: 768px) {
    .form-reservation {
        padding: 1rem;
    }
    
    .form-reservation label {
        font-size: 1rem;
    }
}

/* Style pour les messages d'état de réservation */
.reservation-status {
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
    text-align: center;
    font-weight: bold;
}

.reservation-status.loading {
    background-color: #f9f9f9;
    color: #666;
    border: 1px solid #ddd;
}

.reservation-status.available {
    background-color: #e6f7e6;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.reservation-status.unavailable {
    background-color: #ffebee;
    color: #c62828;
    border: 1px solid #ffcdd2;
}

.reservation-status.error {
    background-color: #fff3e0;
    color: #e65100;
    border: 1px solid #ffe0b2;
}

/* Désactiver les dates dans le calendrier */
.fc-day-disabled {
    background-color: #f5f5f5 !important;
    opacity: 0.6;
}

/* Style pour le champ de date lorsque la date n'est pas disponible */
input:invalid {
    border-color: #ffcdd2;
}

/* Animation pour le loading */
@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.reservation-status.loading {
    animation: pulse 1.5s infinite;
}

/* Page annulation */
.annulation-container {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    text-align: center;
}

.annulation-icon {
    color: #f44336;
    font-size: 48px;
    margin-bottom: 20px;
}

.annulation-message {
    font-size: 24px;
    margin-bottom: 30px;
    color: #333;
}

.annulation-details {
    text-align: left;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.btn-retour {
    display: inline-block;
    padding: 12px 24px;
    background-color: #9b8055;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-retour:hover {
    background-color: #7a6543;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

@media screen and (max-width: 576px) {
    .annulation-container {
        margin: 30px auto;
        padding: 15px;
    }
    
    .annulation-message {
        font-size: 20px;
    }
    
    .annulation-details {
        padding: 15px;
    }
    
    .btn-retour {
        width: 100%;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 320px) {
    .annulation-container {
        margin: 20px auto;
        padding: 10px;
    }
    
    .annulation-message {
        font-size: 18px;
    }
    
    .annulation-details {
        padding: 10px;
    }
}