/* ============================================================
   HOTELS PAGE - MOBILE FIRST
   Chargé via $extraStyles sur les pages hôtels individuelles
   ============================================================ */

/* ── Page structure ───────────────────────────────────────── */
.hotel-page {
    padding: 16px 0 40px;
}

/* ── Header hôtel ─────────────────────────────────────────── */
.hotel-header {
    text-align: center;
    margin-bottom: 20px;
}

.hotel-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 8px;
    line-height: 1.3;
}

.hotel-stars {
    font-size: 1.1rem;
    margin-bottom: 6px;
    color: #f59e0b;
}

.hotel-location {
    color: #666;
    font-size: 0.9rem;
    margin: 0 0 6px;
}

.hotel-price-from {
    font-size: 1rem;
    color: #1976d2;
    margin: 4px 0 8px;
}

.hotel-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    margin-top: 8px;
}

.hotel-tag {
    background: #e3f2fd;
    color: #1565c0;
    font-size: 0.78rem;
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 600;
}

/* ── Image principale ─────────────────────────────────────── */
.hotel-image {
    margin: 0 -16px 16px;
    border-radius: 0;
    overflow: hidden;
}

.hotel-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

/* ── Galerie ──────────────────────────────────────────────── */
.hotel-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    margin-bottom: 20px;
}

.hotel-gallery img {
    width: 100%;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform .2s, opacity .2s;
}

.hotel-gallery img:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* ── Description ──────────────────────────────────────────── */
.hotel-description {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
}

.hotel-description h2 {
    font-size: 1.1rem;
    margin: 0 0 12px;
    color: #1a1a2e;
}

.hotel-description h3 {
    font-size: 1rem;
    margin: 20px 0 10px;
    color: #1a1a2e;
    font-weight: 600;
}

.hotel-description p {
    font-size: .95rem;
    line-height: 1.7;
    color: #444;
    margin: 0 0 14px;
}

.hotel-description p em  { color: #666; font-size: .9rem; }
.hotel-description p strong { color: #1976d2; }

/* Custom descriptions */
.hotel-custom-intro  { margin-bottom: 20px; }

.hotel-highlights {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.hotel-highlights h3 {
    color: #1976d2;
    font-size: 1.05rem;
    margin: 0 0 16px;
}

.hotel-highlight-item {
    background: #fff;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 12px;
    border-left: 4px solid #27ae60;
}

.hotel-highlight-item h4 {
    color: #1a1a2e;
    font-size: .95rem;
    margin: 0 0 8px;
    font-weight: 600;
}

.hotel-highlight-item p { margin: 0; font-size: .9rem; line-height: 1.6; }

.hotel-practical-note {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 16px;
    border-radius: 8px;
    margin: 20px 0;
}

.hotel-practical-note p { margin: 0; color: #856404; }

.hotel-custom-conclusion {
    background: #e3f2fd;
    padding: 16px;
    border-radius: 8px;
    margin-top: 20px;
    border-left: 4px solid #1976d2;
}

.hotel-custom-conclusion p { margin: 0; color: #0d47a1; }

/* ── CTA ──────────────────────────────────────────────────── */
.hotel-cta {
    background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
    padding: 24px 20px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 20px;
}

.hotel-cta .btn { margin-bottom: 12px; }

.hotel-cta-info {
    color: rgba(255,255,255,.9);
    font-size: .85rem;
    margin: 0;
}

/* ── Services ─────────────────────────────────────────────── */
.hotel-services {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
}

.hotel-services h2 {
    font-size: 1.1rem;
    margin: 0 0 16px;
    color: #1a1a2e;
}

.hotel-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.hotel-service {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: #f5f7fa;
    border-radius: 8px;
    font-size: .9rem;
}

.hotel-service-icon { font-size: 1.25rem; }

/* ── Carte ────────────────────────────────────────────────── */
.hotel-map {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
}

.hotel-map h2 {
    font-size: 1.1rem;
    margin: 0 0 16px;
    color: #1a1a2e;
}

.hotel-map #map {
    height: 250px;
    border-radius: 8px;
}

/* ── Hôtels similaires ────────────────────────────────────── */
.related-hotels {
    padding: 32px 0;
    background: #f5f7fa;
}

.related-hotels h2 {
    font-size: 1.25rem;
    text-align: center;
    margin: 0 0 20px;
}

.related-hotels-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.related-hotel-card {
    background: #fff;
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    display: block;
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
    overflow: hidden;
}

.related-hotel-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
}

.related-hotel-card__body {
    padding: 14px 16px;
}

.related-hotel-card h3 {
    margin: 0 0 6px;
    font-size: 1rem;
    color: #1976d2;
}

.related-hotel-card .stars {
    color: #ffc107;
    font-size: .9rem;
    margin-bottom: 6px;
}

.related-hotel-card p {
    margin: 0;
    color: #666;
    font-size: .85rem;
    line-height: 1.4;
}

/* ── Maillage contextuel ──────────────────────────────────── */
.hotel-context-links {
    padding: 32px 0;
    background: #fff;
    border-top: 1px solid #e8ecf0;
}

.hotel-context-links h2 {
    font-size: 1.1rem;
    text-align: center;
    margin: 0 0 20px;
    color: #1a1a2e;
}

.context-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.context-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: #f5f7fa;
    border-radius: 10px;
    text-decoration: none;
    color: #1a1a2e;
    font-size: .9rem;
    font-weight: 600;
    transition: background .2s, transform .15s;
}

.context-link:hover {
    background: #e3f2fd;
    transform: translateY(-2px);
}

.context-link__icon { font-size: 1.3rem; flex-shrink: 0; }
.context-link__label { line-height: 1.3; }

/* ============================================================
   TABLET & DESKTOP
   ============================================================ */
@media (min-width: 48em) {
    .hotel-page { padding: 32px 0 60px; }
    .hotel-title { font-size: 2rem; }

    .hotel-image {
        margin: 0 0 20px;
        border-radius: 12px;
    }

    .hotel-image img { height: 350px; }
    .hotel-gallery img { height: 100px; }

    .hotel-services-grid { grid-template-columns: repeat(4, 1fr); }

    .hotel-map #map { height: 350px; }

    .related-hotels-grid { flex-direction: row; }
    .related-hotel-card  { flex: 1; }

    .context-links-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 64em) {
    .hotel-title { font-size: 2.5rem; }
    .hotel-image img { height: 450px; }
    .context-links-grid { grid-template-columns: repeat(6, 1fr); }
}
