/* ============================================================
   hotels-overview.css
   Hotelspecifieke stijlen — bouwt voort op public-routes.css
   ============================================================ */

/* ── Sterren badge op de hotelkaarten ── */
.hotel-sterren-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: #f59e0b;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 3px;
}

.hotel-sterren-badge i {
    font-size: 11px;
}

/* Grote sterren op de detailpagina */
.hotel-sterren-groot {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 1rem;
    color: #f59e0b;
    font-size: 1.3rem;
}

.hotel-sterren-groot span {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
}

/* Kleine sterren badge in gerelateerde kaarten */
.hotel-sterren-sm {
    font-size: 10px;
    padding: 3px 8px;
}

/* ── Locatieregel op de hotelkaarten ── */
.hotel-locatie {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #7B2CBF;
    font-weight: 600;
    margin-bottom: 8px;
}

.hotel-locatie i {
    color: #7B2CBF;
}

/* ── Hotelkaart: iets hogere miniatuur ── */
.hotel-card .route-card-image {
    height: 180px;
}

/* ── Adres op de detailpagina ── */
.hotel-adres {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hotel-adres div {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #374151;
}

.hotel-adres i {
    color: #7B2CBF;
    width: 16px;
    text-align: center;
}

/* ── Contactregel in de sidebar ── */
.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #374151;
    margin-bottom: 10px;
}

.contact-item i {
    color: #7B2CBF;
    width: 16px;
    text-align: center;
}

.contact-item a {
    color: #7B2CBF;
    text-decoration: none;
    font-weight: 600;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* ── Responsive aanpassingen ── */
@media (max-width: 768px) {
    .hotel-card .route-card-image {
        height: 160px;
    }

    .hotel-sterren-badge {
        font-size: 11px;
        padding: 3px 8px;
    }

    .hotel-locatie {
        font-size: 12px;
    }
}
