/**
 * Single Adresse - Style Airbnb/Apple Moderne
 * Design épuré, espacé, avec micro-interactions
 */

/* Reset et base */
.kidzup-single-adresse-modern {
    background: #fff;
}

/* Hero minimaliste */
.adresse-hero {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 400px;
    max-height: 600px;
    overflow: hidden;
    border-radius: 0 0 24px 24px;
}

.hero-single-image {
    width: 100%;
    height: 100%;
}

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

.hero-actions {
    position: absolute;
    top: 24px;
    right: 24px;
    display: flex;
    gap: 12px;
    z-index: 10;
}

.action-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.action-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.action-btn i {
    font-size: 18px;
    color: #222;
}

.action-btn.is-favorite i {
    color: #FF385C;
}

/* Container principal */
.adresse-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 48px 24px;
}

/* Header moderne */
.adresse-header-modern {
    margin-bottom: 48px;
}

.header-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Badge catégorie minimaliste */
.category-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    color: white;
    width: fit-content;
}

.category-badge i {
    font-size: 16px;
}

/* Titre élégant */
.adresse-title-modern {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    color: #222;
    margin: 0;
    letter-spacing: -0.5px;
}

.adresse-subtitle {
    font-size: 18px;
    color: #717171;
    margin: 0;
    line-height: 1.5;
}

/* Stats Airbnb style */
.adresse-stats {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    padding: 16px 0;
    border-bottom: 1px solid #EBEBEB;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    color: #222;
}

.stat-item i {
    font-size: 14px;
    color: #717171;
}

.stat-item .fas.fa-star {
    color: #FF385C;
}

.stat-item small {
    color: #717171;
    font-size: 14px;
}

/* Badges d'âge Airbnb style */
.age-badges-container {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.age-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #DDDDDD;
    transition: all 0.2s;
}

.age-badge:hover {
    border-color: #222;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.age-badge i {
    font-size: 14px;
}

/* Grid moderne */
.adresse-content-grid,
.content-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 80px;
    align-items: start;
}

@media (max-width: 1024px) {
    .adresse-content-grid,
    .content-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

/* Sections de contenu */
.content-section {
    background: #fff;
    border: 1px solid #DDDDDD;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    transition: box-shadow 0.2s;
}

.content-section:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

.content-section:last-child {
    margin-bottom: 0;
}

.section-title {
    font-size: 22px;
    font-weight: 600;
    color: #222;
    margin: 0 0 24px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-title i {
    font-size: 24px;
    color: #717171;
}

.section-content {
    color: #222;
    font-size: 16px;
    line-height: 1.625;
}

/* Info grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px;
    background: #F7F7F7;
    border-radius: 12px;
}

.info-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 20px;
    color: #667eea;
}

.info-text {
    flex: 1;
}

.info-text strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #222;
    margin-bottom: 4px;
}

.info-text span {
    font-size: 15px;
    color: #717171;
    line-height: 1.5;
}

/* Prestations list */
.prestations-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}

.prestation-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #F7F7F7;
    border-radius: 8px;
}

.prestation-item i {
    font-size: 18px;
    flex-shrink: 0;
}

.prestation-item span {
    font-size: 15px;
    color: #222;
    line-height: 1.5;
}

/* Gallery grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

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

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

/* Video container */
.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: 12px;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Sidebar content */
.content-sidebar {
    position: relative;
}

.sidebar-sticky {
    position: sticky;
    top: 100px;
}

/* Cards modernes */
.info-card,
.sidebar-card {
    background: #fff;
    border: 1px solid #DDDDDD;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    transition: box-shadow 0.2s;
}

.info-card:hover,
.sidebar-card:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

.card-title {
    font-size: 18px;
    font-weight: 600;
    color: #222;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-title i {
    font-size: 20px;
    color: #717171;
}

/* Contact list */
.contact-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #F7F7F7;
    border-radius: 8px;
    text-decoration: none;
    color: #222;
    font-size: 15px;
    transition: all 0.2s;
}

.contact-item:hover {
    background: #EBEBEB;
    transform: translateX(4px);
    color: #222;
}

.contact-item i {
    font-size: 18px;
    color: #717171;
    width: 24px;
    text-align: center;
}

/* Social links */
.social-links {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    justify-content: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #F7F7F7;
    color: #222;
    text-decoration: none;
    transition: all 0.2s;
}

.social-link:hover {
    background: #222;
    color: #fff;
    transform: scale(1.1);
}

.social-link i {
    font-size: 18px;
}

/* Tarifs */
.tarifs-content {
    text-align: center;
}

.tarif-highlight {
    font-size: 16px;
    color: #222;
    margin-bottom: 16px;
}

.tarif-highlight strong {
    font-size: 24px;
    color: #FF385C;
    display: block;
    margin: 8px 0;
}

.tarif-description {
    font-size: 14px;
    color: #717171;
    line-height: 1.6;
}

/* Sticky sidebar */
.sticky-card {
    position: sticky;
    top: 100px;
}

/* Quote info */
.quote-info {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #EBEBEB;
}

.quote-info p {
    font-size: 14px;
    color: #717171;
    margin: 8px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.quote-info i {
    color: #667eea;
}

/* Bouton moderne */
.btn-map-full,
.btn-reservation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    background: #222;
    color: white !important;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    width: 100%;
    margin-top: 16px;
}

.btn-map-full:hover,
.btn-reservation:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.btn-reservation {
    background: linear-gradient(135deg, #FF385C 0%, #E61E4D 100%);
}

.btn-reservation:hover {
    background: linear-gradient(135deg, #E61E4D 0%, #C13584 100%);
}

/* Mini-map */
.mini-map {
    width: 100%;
    height: 240px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
    border: 1px solid #EBEBEB;
}

/* Adresse */
.address-text {
    font-size: 15px;
    color: #222;
    text-align: center;
    padding: 12px 16px;
    background: #F7F7F7;
    border-radius: 8px;
    margin: 16px 0 0 0;
    font-weight: 500;
}

/* Items d'accès */
.access-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.access-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #F7F7F7;
    border-radius: 8px;
    font-size: 15px;
    color: #222;
}

.access-item i {
    font-size: 18px;
    color: #717171;
    width: 24px;
    text-align: center;
}

/* Horaires structurés */
.horaire-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #EBEBEB;
    font-size: 15px;
}

.horaire-item:last-child {
    border-bottom: none;
}

.horaire-item strong {
    color: #222;
    font-weight: 600;
}

.horaire-item span {
    color: #717171;
}

/* Services et paiements */
.services-list,
.paiements-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}

.service-item,
.paiement-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: #F7F7F7;
    border-radius: 8px;
    font-size: 14px;
    color: #222;
}

.service-item i,
.paiement-item i {
    font-size: 16px;
    color: #717171;
}

/* Langues */
.languages-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.language-badge {
    padding: 8px 16px;
    background: #F7F7F7;
    border-radius: 20px;
    font-size: 14px;
    color: #222;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.language-badge i {
    font-size: 12px;
    color: #00A699;
}

/* Contact moderne */
.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #F7F7F7;
    border-radius: 8px;
    text-decoration: none;
    color: #222;
    margin-bottom: 12px;
    transition: all 0.2s;
    font-size: 15px;
}

.contact-item:hover {
    background: #EBEBEB;
    transform: translateX(2px);
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: #222;
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

/* Réseaux sociaux */
.social-links-modern {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.social-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s;
    border: 1px solid #DDDDDD;
    background: white;
}

.social-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.social-btn i {
    font-size: 18px;
}

.social-btn.facebook:hover { background: #1877F2; border-color: #1877F2; }
.social-btn.facebook:hover i { color: white; }
.social-btn.instagram:hover { background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF); border: none; }
.social-btn.instagram:hover i { color: white; }
.social-btn.linkedin:hover { background: #0A66C2; border-color: #0A66C2; }
.social-btn.linkedin:hover i { color: white; }
.social-btn.youtube:hover { background: #FF0000; border-color: #FF0000; }
.social-btn.youtube:hover i { color: white; }

/* Responsive */
@media (max-width: 768px) {
    .adresse-hero {
        height: 50vh;
        border-radius: 0 0 16px 16px;
    }
    
    .adresse-container {
        padding: 32px 16px;
    }
    
    .adresse-title-modern {
        font-size: 26px;
    }
    
    .adresse-stats {
        flex-direction: column;
        align-items: flex-start;
    }
}
/* ========================================
   HORAIRES - Affichage structuré
   ======================================== */

.horaires-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.horaire-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    border-bottom: 1px solid #eee;
}

.horaire-item:last-child {
    border-bottom: none;
}

.horaire-item.closed {
    opacity: 0.5;
}

.horaire-item strong {
    font-weight: 600;
    color: #333;
    min-width: 120px;
}

.horaire-item span {
    text-align: right;
    color: #666;
    font-size: 14px;
}

/* Horaires complexes (par période) */
.horaires-complexes {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 90%;
}

.periode-block {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
}

.periode-block h4 {
    margin: 0 0 10px 0;
    color: #0783BE;
    font-size: 18px;
    font-weight: 600;
}

.periode-block h4 i {
    margin-right: 8px;
}

.periode-block > p {
    color: #666;
    font-size: 14px;
    margin: 0 0 15px 0;
}

.periode-block > p i {
    margin-right: 6px;
    color: #0783BE;
}

/* Responsive */
@media (max-width: 768px) {
    .horaire-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    
    .horaire-item strong {
        min-width: auto;
    }
    
    .horaire-item span {
        text-align: left;
    }
}

/* ========================================
   TARIFS - Liste structurée
   ======================================== */

.tarifs-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 90%;
}

.tarif-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.tarif-item:hover {
    background: #e9ecef;
    transform: translateX(4px);
}

.tarif-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex: 1;
}

.tarif-label i {
    font-size: 20px;
    color: #0783BE;
    margin-top: 2px;
}

.tarif-label strong {
    color: #333;
    font-weight: 600;
    font-size: 15px;
}

.tarif-prix {
    font-size: 18px;
    font-weight: 700;
    color: #0783BE;
    white-space: nowrap;
    margin-left: 20px;
}

/* ========================================
   ACCESSIBILITÉ - Badges
   ======================================== */

.accessibilite-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.access-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #e8f5e9;
    border-radius: 8px;
    color: #2e7d32;
    font-weight: 500;
}

.access-item i {
    font-size: 20px;
    color: #2e7d32;
}

/* Responsive */
@media (max-width: 768px) {
    .tarif-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .tarif-prix {
        margin-left: 32px;
        font-size: 16px;
    }
    
    .accessibilite-list {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   STATUT OUVERTURE (Single Page)
   ======================================== */
.opening-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.opening-status.open {
    color: #2e7d32;
    background-color: #e8f5e9;
    border: 1px solid #a5d6a7;
}

.opening-status.open .fa-check-circle {
    color: #4caf50;
    font-size: 16px;
}

.opening-status.closed {
    color: #c62828;
    background-color: #ffebee;
    border: 1px solid #ef9a9a;
}

.opening-status.closed .fa-times-circle {
    color: #f44336;
    font-size: 16px;
}

.opening-status .opening-info {
    font-size: 12px;
    font-weight: 400;
    opacity: 0.8;
    margin-left: 4px;
}

/* ========================================
   STATUT OUVERTURE (Cards)
   ======================================== */
.card-opening-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
    transition: all 0.2s ease;
}

.card-opening-badge.open {
    color: #2e7d32;
    background-color: #e8f5e9;
    border: 1px solid #a5d6a7;
}

.card-opening-badge.open .fa-check-circle {
    color: #4caf50;
    font-size: 14px;
}

.card-opening-badge.closed {
    color: #c62828;
    background-color: #ffebee;
    border: 1px solid #ef9a9a;
}

.card-opening-badge.closed .fa-times-circle {
    color: #f44336;
    font-size: 14px;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
    .opening-status {
        font-size: 13px;
        padding: 6px 12px;
    }
    
    .card-opening-badge {
        font-size: 11px;
        padding: 3px 8px;
    }
}


/* ========================================
   SECTION FOOD
   ======================================== */
.food-menu-download {
    margin-bottom: 24px;
}

.btn-view-menu {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.btn-view-menu:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
    color: white;
}

.btn-view-menu i {
    font-size: 20px;
}

.food-services,
.food-anniversaire {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #e0e0e0;
}

.food-services h4,
.food-anniversaire h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.service-item:hover {
    background: #e8f5e9;
    transform: translateX(4px);
}

.service-item i {
    font-size: 20px;
    color: #0783BE;
    min-width: 24px;
}

.anniversaire-available {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: #e8f5e9;
    border-radius: 8px;
    margin-bottom: 12px;
    font-weight: 500;
}

.anniversaire-details {
    padding: 16px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #0783BE;
}

.anniversaire-details p {
    margin-bottom: 8px;
    line-height: 1.6;
}

.anniversaire-details p:last-child {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .services-list {
        grid-template-columns: 1fr;
    }
    
    .btn-view-menu {
        width: 100%;
        justify-content: center;
    }
}

