/* ========================================
   VARIABLES & RESET
   ======================================== */

:root {
    /* Couleurs */
    --airbnb-pink: #FF385C;
    --airbnb-pink-dark: #E31C5F;
    --beige-sable: #E8DCC5;
    --gris-clair: #F7F7F7;
    --blanc: #FFFFFF;
    --noir: #222222;
    --gris-texte: #717171;

    /* Typographie */
    --font-titre: 'Playfair Display', serif;
    --font-texte: 'Poppins', sans-serif;

    /* Espacements */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Transitions */
    --transition-rapide: 0.2s ease;
    --transition-normale: 0.3s ease;
    --transition-lente: 0.5s ease;

    /* Ombres */
    --ombre-legere: 0 2px 8px rgba(0, 0, 0, 0.08);
    --ombre-moyenne: 0 4px 16px rgba(0, 0, 0, 0.12);
    --ombre-forte: 0 8px 32px rgba(0, 0, 0, 0.16);

    /* Rayons de bordure */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-texte);
    color: var(--noir);
    line-height: 1.6;
    background-color: var(--blanc);
    overflow-x: hidden;
    -webkit-tap-highlight-color: rgba(255, 56, 92, 0.2);
    touch-action: manipulation;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-normale);
    -webkit-tap-highlight-color: rgba(255, 56, 92, 0.2);
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    -webkit-tap-highlight-color: rgba(255, 56, 92, 0.2);
    touch-action: manipulation;
}

/* ========================================
   UTILITAIRES
   ======================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section {
    padding: var(--spacing-xl) 0;
}

/* Fonds alternés pour les sections */
.galerie.section {
    background: var(--blanc);
}

.equipements.section {
    background: #f9fafb;
}

.localisation.section {
    background: var(--blanc);
}

.contact.section {
    background: #f9fafb;
}

.section-tag {
    display: inline-block;
    color: var(--airbnb-pink);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: var(--spacing-sm);
}

.section-title {
    font-family: var(--font-titre);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--noir);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.section-description {
    font-size: 1.125rem;
    color: var(--gris-texte);
    max-width: 600px;
    margin: 0 auto var(--spacing-lg) auto;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

/* Boutons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 0.875rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition-normale);
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--airbnb-pink) 0%, var(--airbnb-pink-dark) 100%);
    color: var(--blanc);
    box-shadow: 0 4px 16px rgba(255, 56, 92, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 56, 92, 0.4);
}

.btn-secondary {
    background: var(--blanc);
    color: var(--noir);
    border: 2px solid var(--noir);
}

.btn-secondary:hover {
    background: var(--noir);
    color: var(--blanc);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-element {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.fade-in-element.visible {
    opacity: 1;
}

.animate-fade-in {
    animation: fadeIn 1s ease forwards;
}

.animate-fade-in-delay {
    animation: fadeIn 1s ease 0.3s forwards;
    opacity: 0;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 1s ease 0.6s forwards;
    opacity: 0;
}

/* ========================================
   HEADER / NAVIGATION
   ======================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--ombre-legere);
    transition: all var(--transition-normale);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--ombre-moyenne);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) 0;
}

.logo a {
    font-family: var(--font-titre);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--noir);
    transition: color var(--transition-normale);
}

.logo a:hover {
    color: var(--airbnb-pink);
}

.nav-list {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.nav-link {
    color: var(--noir);
    font-weight: 500;
    font-size: 0.95rem;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
    transition: all var(--transition-normale);
}

.nav-link:hover {
    color: var(--airbnb-pink);
    background: rgba(255, 56, 92, 0.05);
}

.nav-link.btn-reserve {
    background: var(--airbnb-pink);
    color: var(--blanc);
    padding: 0.625rem 1.5rem;
}

.nav-link.btn-reserve:hover {
    background: var(--airbnb-pink-dark);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--noir);
    border-radius: 2px;
    transition: all var(--transition-normale);
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.25)),
        url('img/Jardin et alentours/Facade 1.jpeg') center/cover no-repeat;
    background-attachment: scroll;
    will-change: auto;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--blanc);
    max-width: 800px;
    padding: 0 var(--spacing-md);
}

.hero-title {
    font-family: var(--font-titre);
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    font-weight: 300;
    margin-bottom: var(--spacing-lg);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.5;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--blanc);
    border-radius: 20px;
    position: relative;
    opacity: 0.7;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 10px;
    background: var(--blanc);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(20px);
        opacity: 0;
    }
}

/* ========================================
   PRÉSENTATION
   ======================================== */

.presentation {
    background: var(--blanc);
}

.presentation-grid {
    display: block;
    max-width: 900px;
    margin: 0 auto;
}

.presentation-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--ombre-moyenne);
    transform: translateZ(0);
    backface-visibility: hidden;
}

.presentation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.presentation-content {
    padding: var(--spacing-md);
}

.presentation-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gris-texte);
    margin-bottom: var(--spacing-md);
}

.presentation-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.stat-item {
    text-align: center;
    padding: var(--spacing-md);
    background: var(--gris-clair);
    border-radius: var(--radius-md);
    transition: all var(--transition-normale);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--ombre-moyenne);
}

.stat-number {
    display: block;
    font-family: var(--font-titre);
    font-size: 2rem;
    font-weight: 700;
    color: var(--airbnb-pink);
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    display: block;
    font-size: 0.875rem;
    color: var(--gris-texte);
    font-weight: 500;
}

/* ========================================
   GALERIE
   ======================================== */

.galerie {
    background: var(--gris-clair);
}

.galerie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.galerie-bloc {
    position: relative;
    height: 350px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--ombre-moyenne);
    transition: transform var(--transition-normale), box-shadow var(--transition-normale);
}

.galerie-bloc:hover {
    transform: translateY(-8px);
    box-shadow: var(--ombre-forte);
}

.galerie-bloc img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-lente);
}

.galerie-bloc:hover img {
    transform: scale(1.1);
}

.galerie-bloc-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 56, 92, 0.85) 0%, rgba(227, 28, 95, 0.9) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normale);
    z-index: 2;
}

.galerie-bloc:hover .galerie-bloc-overlay {
    opacity: 1;
}

.galerie-bloc-title {
    font-family: var(--font-titre);
    font-size: 2rem;
    font-weight: 700;
    color: var(--blanc);
    text-align: center;
    margin-bottom: var(--spacing-sm);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.galerie-bloc-count {
    font-size: 1.125rem;
    color: var(--blanc);
    font-weight: 500;
    opacity: 0.9;
}

/* Zone d'affichage des photos */
.galerie-photos-container {
    background: var(--blanc);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--ombre-forte);
    margin-top: var(--spacing-lg);
    animation: slideDown 0.3s ease;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.galerie-photos-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-md);
    border-bottom: 3px solid var(--airbnb-pink);
}

.galerie-photos-header h3 {
    font-family: var(--font-titre);
    font-size: 2rem;
    color: var(--noir);
}

.galerie-photos-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--airbnb-pink);
    color: var(--blanc);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-normale);
}

.galerie-photos-close:hover {
    background: var(--airbnb-pink-dark);
    transform: rotate(90deg);
}

.galerie-photos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.galerie-photos-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--ombre-legere);
    cursor: pointer;
    transition: transform var(--transition-normale), box-shadow var(--transition-normale);
}

.galerie-photos-grid img:hover {
    transform: scale(1.05);
    box-shadow: var(--ombre-moyenne);
}

/* Sous-catégories de galerie (ex: Salons) */
.galerie-subcategory-container {
    background: var(--blanc);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--ombre-forte);
    margin-bottom: var(--spacing-lg);
    animation: slideDown 0.3s ease;
}

.galerie-subcategory-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-md);
    border-bottom: 3px solid var(--airbnb-pink);
}

.galerie-subcategory-header h3 {
    font-family: var(--font-titre);
    font-size: 2rem;
    color: var(--noir);
}

.galerie-subcategory-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--airbnb-pink);
    color: var(--blanc);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-normale);
    border: none;
}

.galerie-subcategory-close:hover {
    background: var(--airbnb-pink-dark);
    transform: rotate(90deg);
}

.galerie-subcategory-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
}

.galerie-subcategory-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 992px) {
    .galerie-subcategory-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .galerie-subcategory-grid {
        grid-template-columns: 1fr;
    }

    .galerie-subcategory-grid-4 {
        grid-template-columns: 1fr;
    }
}

.galerie-subcategory-item {
    position: relative;
    height: 280px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--ombre-moyenne);
    transition: transform var(--transition-normale), box-shadow var(--transition-normale);
}

.galerie-subcategory-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--ombre-forte);
}

.galerie-subcategory-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-lente);
}

.galerie-subcategory-item:hover img {
    transform: scale(1.1);
}

.galerie-subcategory-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 56, 92, 0.85) 0%, rgba(227, 28, 95, 0.9) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normale);
    z-index: 2;
}

.galerie-subcategory-item:hover .galerie-subcategory-overlay {
    opacity: 1;
}

.galerie-subcategory-overlay h4 {
    font-family: var(--font-titre);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--blanc);
    text-align: center;
    margin-bottom: var(--spacing-xs);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.galerie-subcategory-overlay p {
    font-size: 1rem;
    color: var(--blanc);
    font-weight: 500;
    opacity: 0.9;
    text-align: center;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normale);
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90%;
    border-radius: var(--radius-md);
    box-shadow: var(--ombre-forte);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--blanc);
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normale);
    cursor: pointer;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.lightbox-close {
    top: 20px;
    right: 20px;
    font-size: 3rem;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* ========================================
   ÉQUIPEMENTS
   ======================================== */

.equipements {
    background: var(--blanc);
}

.equipements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.equipement-item {
    text-align: center;
    padding: var(--spacing-lg) var(--spacing-md);
    background: var(--gris-clair);
    border-radius: var(--radius-md);
    transition: all var(--transition-normale);
}

.equipement-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--ombre-moyenne);
    background: var(--blanc);
}

.equipement-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--spacing-md);
    color: var(--airbnb-pink);
}

.equipement-icon svg {
    width: 100%;
    height: 100%;
}

.equipement-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--noir);
}

.equipement-description {
    font-size: 0.875rem;
    color: var(--gris-texte);
    line-height: 1.5;
}

/* ========================================
   LOCALISATION
   ======================================== */

.localisation {
    background: var(--gris-clair);
}

.localisation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.localisation-text h3 {
    font-family: var(--font-titre);
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
    color: var(--noir);
}

.localisation-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gris-texte);
    margin-bottom: var(--spacing-md);
}

.localisation-list {
    list-style: none;
    padding: 0;
}

/* Liste d'activités - même gris que le texte descriptif */
.localisation-list li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    font-size: 1rem;
    color: var(--gris-texte);
}

.localisation-list svg {
    width: 20px;
    height: 20px;
    color: var(--airbnb-pink);
    flex-shrink: 0;
}

.localisation-map {
    height: 500px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--ombre-moyenne);
}

/* ========================================
   CONTACT / RÉSERVATION
   ======================================== */

.contact {
    background: var(--blanc);
}

.contact-content {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
    gap: var(--spacing-xl);
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

/* ========================================
   MODAL DE RÉSERVATION
   ======================================== */

.reservation-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.reservation-modal[style*="display: block"],
.reservation-modal[style*="display: flex"] {
    opacity: 1;
    pointer-events: all;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    cursor: pointer;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    position: relative;
    background: var(--blanc);
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-lg);
    border-bottom: 2px solid var(--gris-clair);
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.modal-header h3 {
    font-family: var(--font-titre);
    font-size: 1.75rem;
    color: var(--noir);
    margin: 0;
}

.modal-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gris-clair);
    color: var(--noir);
    font-size: 2rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-normale);
    border: none;
}

.modal-close:hover {
    background: var(--airbnb-pink);
    color: var(--blanc);
    transform: rotate(90deg);
}

.modal-body {
    padding: var(--spacing-lg);
    max-height: calc(90vh - 100px);
    overflow-y: auto;
}

/* Affichage des dates sélectionnées */
.selected-dates-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, #fff5f7 0%, #ffe8ed 100%);
    border-radius: var(--radius-lg);
    border: 2px solid var(--airbnb-pink);
}

.date-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
}

.date-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gris-texte);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.date-value {
    font-family: var(--font-titre);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--airbnb-pink);
}

.date-separator {
    font-size: 1.5rem;
    color: var(--airbnb-pink);
    font-weight: 700;
}

.dates-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
}

.price-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    animation: slideDown 0.3s ease-out;
}

.price-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 56, 92, 0.2);
    margin: 1rem 0;
}

.price-container {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.price-total-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gris-texte);
}

.price-total-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--airbnb-pink);
}

.price-details-small {
    font-size: 0.8rem;
    color: var(--gris-texte);
    opacity: 0.8;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Formulaire dans la modal */
.contact-form {
    background: transparent;
    padding: 0;
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--noir);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--gris-clair);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    background: var(--blanc);
    transition: all var(--transition-normale);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--airbnb-pink);
    box-shadow: 0 0 0 3px rgba(255, 56, 92, 0.1);
}

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

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23222' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.btn-full {
    margin-bottom: var(--spacing-md);
}

.form-success {
    text-align: center;
    padding: var(--spacing-xl);
    animation: fadeIn 0.3s ease;
}

.form-success svg {
    width: 80px;
    height: 80px;
    color: #10b981;
    margin: 0 auto var(--spacing-md);
}

.form-success h3 {
    font-family: var(--font-titre);
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
    color: var(--noir);
}

.form-success p {
    color: var(--gris-texte);
    font-size: 1.125rem;
}

/* Responsive */
@media (max-width: 768px) {
    .modal-content {
        max-width: 95%;
        max-height: 95vh;
    }

    .modal-header {
        padding: var(--spacing-md);
    }

    .modal-header h3 {
        font-size: 1.5rem;
    }

    .modal-body {
        padding: var(--spacing-md);
    }

    .selected-dates-display {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .date-separator {
        transform: rotate(90deg);
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact-info-item {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--gris-clair);
    border-radius: var(--radius-md);
    transition: all var(--transition-normale);
}

.contact-info-item:hover {
    transform: translateX(8px);
    box-shadow: var(--ombre-legere);
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    color: var(--airbnb-pink);
}

.contact-info-icon svg {
    width: 100%;
    height: 100%;
}

.contact-info-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--noir);
}

.contact-info-item p {
    font-size: 0.95rem;
    color: var(--gris-texte);
    line-height: 1.6;
}

/* Badge Airbnb dans contact */
.contact-info-badge {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
}

.contact-info-badge img {
    max-width: 550px;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--ombre-legere);
}

.contact-cta {
    margin-top: var(--spacing-md);
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, var(--beige-sable) 0%, #f0e6d6 100%);
    border-radius: var(--radius-md);
    text-align: center;
}

.contact-cta p {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: var(--spacing-md);
    color: var(--noir);
}

.contact-cta .btn svg {
    width: 20px;
    height: 20px;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: var(--noir);
    color: var(--blanc);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

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

.footer-title {
    font-family: var(--font-titre);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
}

.footer-subtitle {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.footer-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.footer-social {
    display: flex;
    gap: var(--spacing-sm);
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all var(--transition-normale);
}

.footer-social a:hover {
    background: var(--airbnb-pink);
    transform: translateY(-3px);
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

/* Badge Airbnb Coup de cœur */
.footer-badge {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-left: auto;
    padding-right: 0;
}

.airbnb-badge {
    text-align: right;
    display: flex;
    justify-content: flex-end;
}

.airbnb-badge img {
    max-width: 420px;
    height: auto;
    border-radius: var(--radius-md);
    margin-left: auto;
    margin-right: 0;
}

.footer-links li {
    margin-bottom: var(--spacing-xs);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: color var(--transition-normale);
}

.footer-links a:hover {
    color: var(--blanc);
    padding-left: 5px;
}

.newsletter-form {
    display: flex;
    gap: var(--spacing-xs);
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: var(--radius-sm);
    font-family: inherit;
    background: rgba(255, 255, 255, 0.1);
    color: var(--blanc);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    width: 45px;
    height: 45px;
    background: var(--airbnb-pink);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blanc);
    transition: all var(--transition-normale);
}

.newsletter-form button:hover {
    background: var(--airbnb-pink-dark);
    transform: translateX(3px);
}

.newsletter-form svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

/* ========================================
   RESPONSIVE
   ======================================== */

/* Tablette Large (992px - 1200px) */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
        padding: 0 var(--spacing-md);
    }

    .hero-title {
        font-size: 3.5rem;
    }

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

/* Tablette (768px - 992px) */
@media (max-width: 992px) {
    :root {
        --spacing-xl: 4rem;
        --spacing-lg: 3rem;
    }

    .container {
        max-width: 720px;
    }

    /* Navigation tablette */
    .header-content {
        padding: var(--spacing-sm) 0;
    }

    .nav-list {
        gap: var(--spacing-sm);
    }

    .nav-link {
        font-size: 0.9rem;
        padding: var(--spacing-xs) 0.75rem;
    }

    /* Hero */
    .hero {
        min-height: 500px;
    }

    .hero-title {
        font-size: 3rem;
    }

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

    /* Layouts en 1 colonne */
    .localisation-content,
    .localisation-content,
    .contact-content {
        grid-template-columns: minmax(0, 1fr);
        gap: var(--spacing-lg);
    }

    /* Équipements en 2 colonnes */
    .equipements-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Galerie */
    .galerie-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }

    .galerie-bloc {
        height: 280px;
    }

    /* Stats en 2 colonnes */
    .presentation-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Carte */
    .localisation-map {
        height: 400px;
        order: 2;
    }

    .localisation-text {
        order: 1;
    }
}

/* Mobile Large (481px - 768px) */
@media (max-width: 768px) {
    :root {
        --spacing-xl: 3rem;
        --spacing-lg: 2.5rem;
        --spacing-md: 1.5rem;
    }

    .container {
        padding: 0 var(--spacing-sm);
    }

    /* Header mobile */
    .header {
        padding: 0 var(--spacing-sm);
    }

    .logo a {
        font-size: 1.25rem;
    }

    /* Menu burger */
    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--blanc);
        box-shadow: var(--ombre-forte);
        transform: translateX(-100%);
        opacity: 0;
        transition: all 0.3s ease;
        padding: var(--spacing-lg) var(--spacing-md);
        z-index: 999;
        overflow-y: auto;
    }

    .nav.active {
        transform: translateX(0);
        opacity: 1;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
    }

    .nav-link {
        display: block;
        text-align: left;
        padding: var(--spacing-md) var(--spacing-sm);
        border-bottom: 1px solid var(--gris-clair);
        font-size: 1.125rem;
    }

    .nav-link.btn-reserve {
        margin-top: var(--spacing-md);
        text-align: center;
        border-bottom: none;
    }

    .menu-toggle {
        display: flex;
        z-index: 1000;
    }

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

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

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

    /* Hero mobile */
    .hero {
        min-height: 500px;
        height: 70vh;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.125rem;
        line-height: 1.5;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }

    /* Sections */
    .section {
        padding: var(--spacing-lg) 0;
    }

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

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

    /* Présentation */
    .presentation-grid {
        padding: 0;
    }

    .presentation-content {
        padding: 0;
    }

    .presentation-text {
        font-size: 0.95rem;
        margin-bottom: var(--spacing-sm);
    }

    .presentation-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
    }

    .stat-item {
        padding: var(--spacing-sm);
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    /* Galerie */
    .galerie-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .galerie-bloc {
        height: 250px;
    }

    .galerie-bloc-title {
        font-size: 1.75rem;
    }

    .galerie-bloc-count {
        font-size: 1rem;
    }

    .galerie-photos-container {
        padding: var(--spacing-md);
    }

    .galerie-photos-header h3 {
        font-size: 1.5rem;
    }

    .galerie-photos-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }

    .galerie-photos-grid img {
        height: 200px;
    }

    /* Équipements */
    .equipements-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }

    .equipement-item {
        padding: var(--spacing-md);
    }

    .equipement-icon {
        width: 50px;
        height: 50px;
    }

    .equipement-title {
        font-size: 1rem;
    }

    .equipement-description {
        font-size: 0.85rem;
    }

    /* Localisation */
    .localisation-map {
        height: 300px;
    }

    .localisation-list li {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }

    /* Contact */
    .contact-content {
        gap: var(--spacing-md);
    }

    .contact-form {
        padding: var(--spacing-md);
    }

    .form-group {
        margin-bottom: var(--spacing-sm);
    }

    .contact-info {
        gap: var(--spacing-sm);
    }

    .contact-info-item {
        padding: var(--spacing-sm);
        flex-direction: row;
    }

    .contact-info-icon {
        width: 40px;
        height: 40px;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .footer-title {
        font-size: 1.25rem;
    }

    .footer-subtitle {
        font-size: 1rem;
    }

    /* Lightbox */
    .lightbox-close {
        width: 45px;
        height: 45px;
        font-size: 2.5rem;
        top: 15px;
        right: 15px;
    }

    .lightbox-image {
        max-width: 95%;
        max-height: 85%;
    }
}

/* Mobile Petit (320px - 480px) */
@media (max-width: 480px) {
    :root {
        --spacing-xl: 2.5rem;
        --spacing-lg: 2rem;
        --spacing-md: 1rem;
    }

    /* Hero */
    .hero {
        min-height: 450px;
        height: 60vh;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: var(--spacing-sm);
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: var(--spacing-md);
    }

    .scroll-indicator {
        display: none;
    }

    /* Sections */
    .section-title {
        font-size: 1.75rem;
    }

    .section-tag {
        font-size: 0.75rem;
    }

    .section-description {
        font-size: 0.95rem;
    }

    /* Stats en colonne unique pour très petit écran */
    .presentation-stats {
        grid-template-columns: 1fr 1fr;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    /* Galerie */
    .galerie-bloc {
        height: 220px;
    }

    .galerie-bloc-title {
        font-size: 1.5rem;
    }

    .galerie-bloc-count {
        font-size: 0.95rem;
    }

    .galerie-photos-container {
        padding: var(--spacing-sm);
    }

    .galerie-photos-header {
        flex-direction: row;
        align-items: center;
        margin-bottom: var(--spacing-md);
    }

    .galerie-photos-header h3 {
        font-size: 1.25rem;
    }

    .galerie-photos-close {
        width: 35px;
        height: 35px;
        font-size: 1.25rem;
    }

    .galerie-photos-grid img {
        height: 180px;
    }

    /* Lightbox */
    .lightbox-close {
        width: 40px;
        height: 40px;
        font-size: 2rem;
        top: 10px;
        right: 10px;
    }

    .lightbox-image {
        max-width: 95%;
        max-height: 80%;
    }
}

/* Très petit mobile (< 360px) */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.75rem;
    }

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

    .galerie-bloc-title {
        font-size: 1.25rem;
    }

    .btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* ========================================
   DISPONIBILITÉS / CALENDRIER
   ======================================== */

.disponibilites {
    background: var(--gris-clair);
}

.ical-input {
    background: var(--blanc);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--ombre-moyenne);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.ical-input h3 {
    font-family: var(--font-titre);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--noir);
}

.ical-input input {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--gris-clair);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    margin-bottom: 1rem;
    transition: border-color var(--transition-normale);
}

.ical-input input:focus {
    outline: none;
    border-color: var(--airbnb-pink);
}

/* ========================================
   DISPONIBILITÉS - SECTION CONTAINER
   ======================================== */
.availability-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--blanc);
    border-radius: var(--radius-lg);
    box-shadow: var(--ombre-moyenne);
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

/* Header */
.avail-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.avail-title {
    font-family: var(--font-titre);
    font-size: 1.75rem;
    color: var(--noir);
    margin-bottom: 0.5rem;
}

.avail-subtitle {
    font-family: var(--font-texte);
    font-size: 0.95rem;
    color: var(--gris-texte);
    line-height: 1.5;
}

/* Instructions */
.avail-instructions {
    text-align: center;
    font-size: 0.9rem;
    color: var(--gris-texte);
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #fce4ec 0%, #f3e5f5 100%);
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    line-height: 1.5;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.avail-instructions strong {
    color: var(--airbnb-pink);
}

/* ========================================
   CONTRÔLES NAVIGATION
   ======================================== */
.avail-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.avail-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border-radius: 50%;
    border: 2px solid #eee;
    background: var(--blanc);
    color: var(--noir);
    cursor: pointer;
    transition: all 0.2s ease;
}

.avail-btn:hover {
    border-color: var(--airbnb-pink);
    color: var(--airbnb-pink);
    background: #fff5f7;
    transform: scale(1.08);
}

.avail-btn:active {
    transform: scale(0.95);
}

.avail-btn svg {
    display: block;
    flex-shrink: 0;
}

/* ========================================
   GRILLE CALENDRIER
   ======================================== */
.calendar-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
    max-width: 100%;
}

.month-card {
    background: var(--blanc);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    border: 1px solid #f0f0f0;
    box-shadow: var(--ombre-legere);
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    min-width: 0;
}

.month-header {
    text-align: center;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--airbnb-pink);
}

.month-header h3 {
    font-family: var(--font-titre);
    font-size: 1.35rem;
    color: var(--noir);
    margin-bottom: 0.25rem;
    text-transform: capitalize;
}

.month-stats {
    font-family: var(--font-texte);
    font-size: 0.8rem;
    color: var(--gris-texte);
}

/* ========================================
   GRILLE DES JOURS
   ======================================== */
.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 3px;
    width: 100%;
    min-width: 0;
}

.day-label {
    text-align: center;
    font-family: var(--font-texte);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--gris-texte);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.4rem 0;
}

/* ========================================
   CELLULES JOUR
   ======================================== */
.day {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    border-radius: var(--radius-sm);
    font-family: var(--font-texte);
    cursor: pointer;
    transition: all 0.15s ease;
    position: relative;
    padding: 2px;
    overflow: hidden;
    border: none;
    box-sizing: border-box;
    min-width: 0;
}

.day-number {
    font-size: clamp(0.7rem, 2.8vw, 0.95rem);
    font-weight: 600;
    line-height: 1;
    color: inherit;
}

.day-price {
    font-size: clamp(0.45rem, 1.8vw, 0.65rem);
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    padding: 1px 3px;
    border-radius: 4px;
    color: var(--gris-texte);
}

.day-price.custom {
    color: var(--blanc);
    background: var(--airbnb-pink);
}

/* --- États des jours --- */
.day.empty {
    cursor: default;
    background: transparent;
}

.day.past {
    background: var(--gris-clair);
    color: #ccc;
    cursor: default;
}

.day.past .day-price {
    opacity: 0.4;
}

.day.available {
    background: #f0faf0;
    color: var(--noir);
}

.day.available:hover {
    background: #d4edda;
    transform: scale(1.06);
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.25);
}

.day.booked {
    background: #fff0f0;
    color: #e57373;
    text-decoration: line-through;
    cursor: not-allowed;
}

.day.selected {
    background: var(--airbnb-pink) !important;
    color: white !important;
    transform: scale(1.08);
    box-shadow: 0 4px 14px rgba(255, 56, 92, 0.4);
    border-radius: var(--radius-sm);
}

.day.selected .day-price {
    color: rgba(255, 255, 255, 0.9);
}

.day.in-range {
    background: rgba(255, 56, 92, 0.12) !important;
    color: var(--airbnb-pink);
}

/* ========================================
   LÉGENDE
   ======================================== */
.avail-legend {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.25rem;
    padding: 1rem;
}

.avail-legend-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-texte);
    font-size: 0.82rem;
    color: var(--gris-texte);
}

.avail-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

.avail-dot--available {
    background: #c8e6c9;
    border: 2px solid #4caf50;
}

.avail-dot--booked {
    background: #ffcdd2;
    border: 2px solid #e57373;
}

.avail-dot--past {
    background: #e0e0e0;
    border: 2px solid #bdbdbd;
}

/* ========================================
   ÉTATS LOADING / ERROR
   ======================================== */
.loading {
    text-align: center;
    padding: 2.5rem 1rem;
    font-family: var(--font-texte);
    font-size: 1.1rem;
    color: var(--gris-texte);
}

.error-message {
    background: #ffebee;
    color: #c62828;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    text-align: center;
    margin: 1.5rem 0;
    font-family: var(--font-texte);
}

.no-availability {
    margin: 1.5rem 0;
}

.calendar-instructions {
    animation: slideDown 0.3s ease;
}

/* ========================================
   RESPONSIVE - TABLETTE
   ======================================== */
@media (max-width: 768px) {
    .availability-section {
        padding: 1.5rem 1rem;
    }

    .avail-title {
        font-size: 1.4rem;
    }

    .avail-subtitle {
        font-size: 0.85rem;
    }

    .month-card {
        padding: 1rem 0.75rem;
    }

    .month-header h3 {
        font-size: 1.2rem;
    }
}

/* ========================================
   RESPONSIVE - MOBILE
   ======================================== */
@media (max-width: 480px) {
    .availability-section {
        padding: 0.75rem 0.25rem;
        border-radius: var(--radius-md);
    }

    .avail-title {
        font-size: 1.25rem;
    }

    .avail-subtitle {
        font-size: 0.8rem;
    }

    .avail-instructions {
        font-size: 0.8rem;
        padding: 0.6rem 0.75rem;
        margin-bottom: 1rem;
    }

    .avail-controls {
        gap: 0.5rem;
        margin-bottom: 1rem;
    }

    .avail-btn {
        width: 36px;
        height: 36px;
    }

    .avail-btn svg {
        width: 16px;
        height: 16px;
    }

    .calendar-grid {
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .month-card {
        padding: 0.75rem 0.25rem;
    }

    .month-header {
        margin-bottom: 0.75rem;
        padding-bottom: 0.5rem;
    }

    .month-header h3 {
        font-size: 1.1rem;
    }

    .calendar-days {
        gap: 2px;
    }

    .day {
        border-radius: 6px;
        gap: 1px;
        padding: 1px;
    }

    .day-price {
        font-size: clamp(0.4rem, 1.6vw, 0.55rem);
        padding: 0 2px;
    }

    .avail-legend {
        gap: 0.75rem;
        padding: 0.75rem 0.5rem;
    }

    .avail-legend-item {
        font-size: 0.75rem;
    }

    .avail-dot {
        width: 10px;
        height: 10px;
    }

    .day.selected {
        transform: none;
    }
}

/* ========================================
   RESPONSIVE - TRÈS PETIT MOBILE (iPhone SE, etc)
   ======================================== */
@media (max-width: 360px) {
    .availability-section {
        padding: 0.75rem 0.4rem;
    }

    .avail-title {
        font-size: 1.1rem;
    }

    .calendar-days {
        gap: 1px;
    }

    .day-price {
        font-size: 0.4rem;
    }

    .avail-btn {
        width: 32px;
        height: 32px;
    }
}