/* ================================================
   CALENDRIER CUSTOM — STYLE CHÂTEAU
   Identique à la maquette fournie
   ================================================ */

#lg-custom-calendar {
    max-width: 1200px;
    margin: 0 auto;
    font-family: "Georgia", serif;
    padding: 10px 0;
}

/* -----------------------------------------------
   HEADER : Titre + flèches de navigation
------------------------------------------------- */

.lg-cal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.lg-cal-header h2 {
    font-size: 26px;
    font-weight: 500;
    margin: 0;
}

.lg-cal-nav {
    background: #d6c3a4;
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 4px;
    font-size: 22px;
    cursor: pointer;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.2s ease;
}

.lg-cal-nav:hover {
    background: #cbb89b;
}

/* -----------------------------------------------
   GRID DES 4 MOIS
------------------------------------------------- */

.lg-cal-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 70px;
    width: 100%;
}

/* -----------------------------------------------
   UN MOIS
------------------------------------------------- */

.lg-month {
    text-align: center;
}

.lg-month-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 18px;
    text-transform: capitalize;
}

/* -----------------------------------------------
   JOURS DE LA SEMAINE
------------------------------------------------- */

.lg-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    margin-bottom: 12px;
    font-size: 14px;
}

.lg-weekdays div {
    font-weight: bold;
    color: #fff;
    text-transform: lowercase;
}

/* -----------------------------------------------
   GRILLE DES JOURS (1 → 31)
------------------------------------------------- */

.lg-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    font-size: 15px;
}

.lg-days div {
    padding: 6px 0;
    color: #FFF;
}

/* Cases vides avant le jour 1 */
.lg-empty {
    opacity: 0;
}

/* -----------------------------------------------
   JOURS RÉSERVÉS (couleur beige château)
------------------------------------------------- */

.lg-reserved {
    background: #FF8080 !important;
    border-radius: 6px;
    color: #000 !important;
}

/* -----------------------------------------------
   RESPONSIVE
------------------------------------------------- */

@media (max-width: 1024px) {
    .lg-cal-grid {
        grid-template-columns: 1fr;
        grid-gap: 50px;
    }
}

@media (max-width: 600px) {
    .lg-cal-header h2 {
        font-size: 18px;
    }
    .lg-month-title {
        font-size: 18px;
    }
    .lg-cal-nav {
        width: 38px;
        height: 38px;
        font-size: 20px;
    }
}