/* style.css */
:root {
  --primary: #2a9d8f;
  --accent: #e9c46a;
  --light: #f8f9fa;
  --dark: #264653;
  --max-width: 1100px;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  color: var(--dark);
  background: var(--light);
}

/* Header */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: white;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.logo { font-size: 1.5rem; font-weight: bold; }
.logo a { color: var(--dark); text-decoration: none; }
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0; padding: 0;
}
.main-nav a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
}
/* Responsive mobile menu */
@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 0;
        right: -250px;
        width: 250px;
        height: 100%;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem 1rem;
        box-shadow: -2px 0 8px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        display: flex;
    }
    .main-nav.open { right: 0; }
    .main-nav ul {
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
    }
    .menu-toggle {
        display: block;
        position: relative;
        z-index: 1100;
        font-size: 2rem;
        color: var(--dark);
    }
    .menu-toggle::before { content: "☰"; }
    .menu-toggle.open::before { content: "✕"; }
}
/* Cacher le bouton menu quand le diaporama est ouvert */
body.lightbox-open .menu-toggle {
    display: none !important;
}
body.lightbox-open {
    overflow: hidden;
}

/* Hero améliorée */
.hero {
  position: relative;
  background: url('assets/hero_512.webp') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 6rem 1rem;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(42,157,143,0.5), rgba(38,70,83,0.5));
}
.hero-text {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: auto;
}
.hero h1 { font-size: 2.5rem; margin-bottom: 1rem; }
.hero p { font-size: 1.2rem; }
.hero-icons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  font-size: 1.2rem;
  margin-top: 1rem;
  list-style: none;
  padding: 0;
}
.btn-primary {
  display: inline-block;
  margin-top: 1.5rem;
  background: var(--primary);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.2s ease, background 0.3s ease;
}
.btn-primary:hover {
  background: #21867a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.btn-secondary {
    display: inline-block;
    background: #fff;
    color: var(--primary);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    border: 2px solid var(--primary);
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.2s ease, background 0.3s ease, color 0.3s ease;
}

.btn-secondary:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.contact-hero {
  background: url('assets/contact_bg.jpg') center/cover no-repeat;
}
.contact-info {
  margin-top: 1.5rem;
  text-align: left;
  display: inline-block;
  background: rgba(255,255,255,0.15);
  padding: 1rem 1.5rem;
  border-radius: 8px;
}
.contact-info h3 {
  margin: 0.5rem 0 0.2rem;
}
.contact-info p, 
.contact-info a {
  color: white;
  font-size: 1rem;
}
.contact-info a:hover {
  text-decoration: underline;
}

.very-small {
    font-size: 0.8rem;
}

/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 2rem;
  max-width: var(--max-width);
  margin: 3rem auto;
  padding: 0 1rem;
}
.feature img {
  width: 100%;
  border-radius: 6px;
}
.feature h3 { margin-top: 1rem; }

/* Footer */
.site-footer {
  background: var(--dark);
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}

/* Page logement */
.logement {
    max-width: 90%;
    margin: 2rem auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
}
.logement-description h1 {
    margin-bottom: 1rem;
}
.logement-description ul {
    margin: 1rem 0;
    padding-left: 1.2rem;
    list-style: disc;
}
.logement-description ul li{
    margin-bottom: 0.5rem;
}

/* === Nouvelle page Logement === */
.logement-page {
    max-width: 1400px;
    margin: 1.25rem auto 3rem;
    padding: 0 1rem;
}

.logement-hero {
    background: linear-gradient(135deg, rgba(42,157,143,0.12), rgba(233,196,106,0.16));
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(38,70,83,0.08);
}

.logement-hero-compact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;
}

.logement-hero-text {
    min-width: 0;
}

.logement-hero-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 0 0 auto;
}

.logement-hero-actions .btn-primary,
.logement-hero-actions .btn-secondary {
    margin-top: 0;
    white-space: nowrap;
}

.logement-hero h1 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 2rem;
    color: var(--dark);
}

.logement-hero-compact h1 {
    margin-bottom: 0.45rem;
    font-size: 1.75rem;
}

.logement-hero p {
    margin: 0.75rem 0;
    line-height: 1.7;
}

.logement-hero-compact p {
    margin: 0;
    line-height: 1.5;
}

.logement-top {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(330px, 0.85fr);
    gap: 1.25rem;
    align-items: start;
    margin-bottom: 1.5rem;
}

.logement-block,
.logement-gallery,
.logement-faq {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem 1.5rem 1.75rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
    border: 1px solid rgba(38,70,83,0.06);
}

.logement-top .logement-block,
.logement-top .logement-gallery {
    margin-bottom: 0;
}

.logement-gallery-featured {
    padding: 1rem;
}

.logement-gallery-featured h2 {
    margin-bottom: 0.9rem;
}

.logement-gallery-featured .gallery-grid {
    column-count: 3;
    column-gap: 0.65rem;
}

.logement-gallery-featured .gallery-grid img {
    margin-bottom: 0.65rem;
}

.logement-highlights-block {
    position: sticky;
    top: 1rem;
}

.logement-block h2,
.logement-gallery h2,
.logement-faq h2 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--dark);
    font-size: 1.5rem;
}

.logement-block p,
.logement-gallery p,
.logement-faq p {
    line-height: 1.7;
}

.logement-highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-top: 1rem;
}

.logement-highlight-item {
    padding: 0.85rem 0.95rem;
    border-radius: 14px;
    background: #fafafa;
    border: 1px solid rgba(38,70,83,0.06);
}

.logement-highlight-item h3 {
    margin-top: 0;
    margin-bottom: 0.35rem;
    font-size: 1rem;
}

.logement-highlight-item p {
    margin-bottom: 0;
    line-height: 1.5;
}

.logement-top-btn {
    margin-top: 1rem;
}

.logement-capacity {
    background: linear-gradient(135deg, rgba(42,157,143,0.10), rgba(255,255,255,1));
    border: 1px solid rgba(42,157,143,0.22);
}
.logement-top-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.logement-top-actions .btn-primary,
.logement-top-actions .btn-secondary {
    margin-top: 0;
}

/* === Page Tarifs & Prestations === */
.tarifs-page {
    max-width: var(--max-width);
    margin: 2rem auto 3rem;
    padding: 0 1rem;
}

.tarifs-hero {
    background: linear-gradient(135deg, rgba(42,157,143,0.12), rgba(233,196,106,0.16));
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(38,70,83,0.08);
}

.tarifs-hero h1 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 2rem;
    color: var(--dark);
}

.tarifs-hero p {
    margin: 0.75rem 0;
    line-height: 1.7;
}

.tarifs-block {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem 1.5rem 1.75rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
    border: 1px solid rgba(38,70,83,0.06);
}

.tarifs-block h2 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--dark);
    font-size: 1.5rem;
}

.tarifs-block p {
    line-height: 1.7;
}

.tarifs-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-top: 1.25rem;
}

.tarif-card {
    border-radius: 14px;
    padding: 1.25rem;
    background: #fdfdfd;
    border: 1px solid rgba(38,70,83,0.08);
}

.tarif-card h3 {
    margin-top: 0;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.tarif-prix {
    font-size: 2rem;
    font-weight: 700;
    margin: 0.25rem 0 0.5rem;
    color: var(--primary);
}

.tarif-prix span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--dark);
}

.tarif-card p:last-child {
    margin-bottom: 0;
}

.tarif-card-summer {
    background: linear-gradient(180deg, rgba(233,196,106,0.14), #fff);
}

.tarif-card-mid {
    background: linear-gradient(180deg, rgba(42,157,143,0.10), #fff);
}

.tarif-card-low {
    background: linear-gradient(180deg, rgba(38,70,83,0.06), #fff);
}

.tarifs-note {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(42,157,143,0.08);
    border-left: 4px solid var(--primary);
    border-radius: 10px;
}

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

.prestation-item {
    padding: 1rem 1rem 1.1rem;
    border-radius: 14px;
    background: #fafafa;
    border: 1px solid rgba(38,70,83,0.06);
}

.prestation-item h3 {
    margin-top: 0;
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
}

.prestation-item p {
    margin-bottom: 0;
}

.tarifs-faq details {
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(38,70,83,0.08);
    padding: 0.9rem 1rem;
    margin-bottom: 0.75rem;
}

.tarifs-faq summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--dark);
}

.tarifs-faq p {
    margin: 0.75rem 0 0;
    line-height: 1.7;
}

.tarifs-contact {
    background: linear-gradient(135deg, rgba(42,157,143,0.10), rgba(233,196,106,0.12));
}

/* === Page Disponibilités === */
.disponibilites-page {
    max-width: var(--max-width);
    margin: 2rem auto 3rem;
    padding: 0 1rem;
}

.disponibilites-hero {
    background: linear-gradient(135deg, rgba(42,157,143,0.12), rgba(233,196,106,0.16));
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(38,70,83,0.08);
}

.disponibilites-hero h1 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 2rem;
    color: var(--dark);
}

.disponibilites-hero p {
    margin: 0.75rem 0;
    line-height: 1.7;
}

.disponibilites-infos,
.disponibilites-calendrier,
.disponibilites-reservation,
.disponibilites-faq {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem 1.5rem 1.75rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
    border: 1px solid rgba(38,70,83,0.06);
}

.disponibilites-infos h2,
.disponibilites-calendrier h2,
.disponibilites-reservation h2,
.disponibilites-faq h2 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--dark);
    font-size: 1.5rem;
}

.disponibilites-infos p,
.disponibilites-calendrier p,
.disponibilites-reservation p,
.disponibilites-faq p {
    line-height: 1.7;
}

.disponibilites-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-top: 1.25rem;
}

.disponibilite-card {
    padding: 1rem 1rem 1.1rem;
    border-radius: 14px;
    background: #fafafa;
    border: 1px solid rgba(38,70,83,0.06);
}

.disponibilite-card h3 {
    margin-top: 0;
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
}

.disponibilite-card p {
    margin-bottom: 0;
}

.calendrier-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.calendrier-header h2 {
    margin-bottom: 0.5rem;
}

.calendrier-header p {
    margin: 0;
}

.calendrier-link {
    white-space: nowrap;
    margin-top: 0;
}

.calendar-wrapper {
    position: relative;
    width: 100%;
    height: 680px;
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid rgba(38,70,83,0.10);
    background: #f5f5f5;
}

.calendar-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.calendrier-note {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(42,157,143,0.08);
    border-left: 4px solid var(--primary);
    border-radius: 10px;
}

.disponibilites-reservation {
    background: linear-gradient(135deg, rgba(42,157,143,0.10), rgba(233,196,106,0.12));
}

.reservation-list {
    margin: 1rem 0 1.25rem;
    padding-left: 1.2rem;
}

.reservation-list li {
    margin-bottom: 0.55rem;
    line-height: 1.6;
}

.disponibilites-faq details {
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(38,70,83,0.08);
    padding: 0.9rem 1rem;
    margin-bottom: 0.75rem;
}

.disponibilites-faq summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--dark);
}

.disponibilites-faq p {
    margin: 0.75rem 0 0;
}
.tarifs-discount {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-top: 1.5rem;
    padding: 1.25rem;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(233,196,106,0.32), rgba(42,157,143,0.14));
    border: 2px solid rgba(233,196,106,0.75);
    box-shadow: 0 8px 24px rgba(38,70,83,0.08);
}

.tarifs-discount-badge {
    flex: 0 0 auto;
    width: 92px;
    height: 92px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.85rem;
    font-weight: 800;
    box-shadow: 0 6px 16px rgba(38,70,83,0.14);
}

.tarifs-discount-content h3 {
    margin: 0 0 0.45rem;
    font-size: 1.25rem;
    color: var(--dark);
}

.tarifs-discount-content p {
    margin: 0;
    line-height: 1.6;
}

.tarifs-discount-small {
    margin-top: 0.45rem !important;
    font-size: 0.95rem;
    opacity: 0.9;
}
.tarifs-capacity {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 1.25rem;
    padding: 1.25rem;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(42,157,143,0.10), rgba(255,255,255,1));
    border: 1px solid rgba(42,157,143,0.22);
}

.tarifs-capacity-icon {
    flex: 0 0 auto;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(42,157,143,0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.65rem;
}

.tarifs-capacity-content h3 {
    margin: 0 0 0.5rem;
    font-size: 1.2rem;
    color: var(--dark);
}

.tarifs-capacity-content p {
    margin: 0.35rem 0 0;
    line-height: 1.65;
}

/* Section galerie */
.gallery {
    max-width: var(--max-width);
    margin: 3rem auto;
    padding: 0 1rem;
}
.gallery h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

/* Masonry grid */
.gallery-grid {
    column-count: 3;
    column-gap: 1rem;
}
.gallery-grid img {
    width: 100%;
    margin-bottom: 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: transform 0.3s ease;
}
.gallery-grid img:hover {
    transform: scale(1.05);
}

/* Lightbox plein écran */
/*#lightbox {
    display: none; !* caché par défaut *!
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}
#lightbox img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 6px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}
#lightbox .close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2rem;
    color: white;
    cursor: pointer;
}*/
/* ===== LIGHTBOX SLIDER ===== */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}
.lightbox img {
    max-width: 90%;
    max-height: 80vh;
    border-radius: 6px;
    touch-action: pan-x pan-y pinch-zoom;
    transition: transform 0.3s ease;
    transform-origin: center center;
    z-index: 1;
    pointer-events: none;
}
.lightbox button {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}
.lightbox-close {
    position: absolute;
    top: calc(16px + env(safe-area-inset-top));
    right: calc(16px + env(safe-area-inset-right));
    font-size: 40px;
}
.lightbox-fullscreen {
    position: absolute;
    top: calc(21px + env(safe-area-inset-top));
    right: calc(70px + env(safe-area-inset-right));
    font-size: 22px;
}
.lightbox-close,
.lightbox-fullscreen {
    padding: 12px;
    touch-action: manipulation;
    z-index: 3;
}
.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    font-size: 50px;
    padding: 10px;
    transform: translateY(-50%);
    z-index: 2;
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev,
.lightbox-next {
    transition: opacity 0.3s ease;
}
/* Points indicateurs */
.lightbox-dots {
    position: absolute;
    bottom: 25px;
    display: flex;
    gap: 8px;
}
.lightbox-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #777;
    cursor: pointer;
}
.lightbox-dots span.active {
    background: white;
}

/* Responsive */
@media (max-width: 1000px) {
    .logement-top {
        grid-template-columns: 1fr;
    }

    .logement-highlights-block {
        position: static;
    }

    .logement-gallery-featured .gallery-grid {
        column-count: 2;
    }
}
@media (max-width: 900px) {
    .gallery-grid { column-count: 2; }
}

@media (max-width: 768px) {
    .lightbox-prev,
    .lightbox-next {
        font-size: 40px;
        padding: 20px;
    }

    .lightbox-dots span {
        width: 12px;
        height: 12px;
    }

    .logement-page {
        margin-top: 0.75rem;
        padding: 0 0.75rem;
    }

    .logement-hero-compact {
        align-items: stretch;
        flex-direction: column;
        gap: 0.75rem;
        padding: 0.85rem 1rem;
        margin-bottom: 0.75rem;
    }

    .logement-hero-compact h1 {
        font-size: 1.35rem;
        line-height: 1.25;
    }

    .logement-hero-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.65rem;
        width: 100%;
    }

    .logement-hero-actions .btn-primary,
    .logement-hero-actions .btn-secondary {
        width: 100%;
        padding: 0.7rem 0.8rem;
        text-align: center;
        font-size: 0.95rem;
    }

    .logement-hero-compact p {
        font-size: 0.95rem;
    }

    .logement-block,
    .logement-gallery,
    .logement-faq {
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .logement-gallery-featured {
        padding: 0.75rem;
    }

    .logement-gallery-featured h2 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .logement-gallery-featured .gallery-grid {
        column-count: 2;
        column-gap: 0.5rem;
    }

    .logement-gallery-featured .gallery-grid img {
        margin-bottom: 0.5rem;
        border-radius: 8px;
    }

    .logement-highlights {
        gap: 0.6rem;
    }

    .logement-highlight-item {
        padding: 0.8rem;
    }

    .logement-highlight-item h3 {
        font-size: 0.98rem;
    }

    .logement-highlight-item p {
        font-size: 0.95rem;
    }

    .tarifs-page {
        margin-top: 1rem;
    }

    .tarifs-hero {
        padding: 1.25rem;
    }

    .tarifs-hero h1 {
        font-size: 1.7rem;
    }

    .tarifs-block {
        padding: 1.2rem;
    }

    .tarif-prix {
        font-size: 1.75rem;
    }

    .disponibilites-page {
        margin-top: 1rem;
    }

    .disponibilites-hero,
    .disponibilites-infos,
    .disponibilites-calendrier,
    .disponibilites-reservation,
    .disponibilites-faq {
        padding: 1.2rem;
    }

    .disponibilites-hero h1 {
        font-size: 1.7rem;
    }

    .calendrier-header {
        flex-direction: column;
    }

    .calendrier-link {
        width: 100%;
        text-align: center;
    }

    .calendar-wrapper {
        height: 560px;
    }
}

@media (max-width: 600px) {
    .gallery-grid { column-count: 1; }
    .tarifs-discount {
        align-items: flex-start;
        flex-direction: column;
        text-align: left;
    }

    .tarifs-discount-badge {
        width: 78px;
        height: 78px;
        font-size: 1.55rem;
    }
    .tarifs-capacity {
        flex-direction: column;
    }
    .logement-top-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .logement-top-actions .btn-primary,
    .logement-top-actions .btn-secondary {
        width: 100%;
        text-align: center;
        padding: 0.7rem 0.8rem;
    }
}

@media (max-width: 480px) {
    .calendar-wrapper {
        height: 500px;
    }

    .logement-gallery-featured .gallery-grid {
        column-count: 2;
    }

    .logement-hero-compact p {
        display: none;
    }
    .logement-hero-actions {
        grid-template-columns: 1fr 1fr;
    }

}

@supports not (top: env(safe-area-inset-top)) {
    .lightbox-close,
    .lightbox-fullscreen {
        top: 20px;
    }
}

