/* =============================================
   holstrandoljak.com – Beach Detail Page
   ============================================= */

/* ===== HERO ===== */
.show-hero {
    position: relative;
    height: 420px;
    overflow: hidden;
}

.show-hero-img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.show-hero-placeholder {
    width: 100%; height: 100%;
}

.show-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 60%, rgba(0,0,0,0.2) 100%);
}

.show-hero-content {
    position: absolute; inset: 0;
    display: flex; flex-direction: column;
    justify-content: space-between;
    padding-top: 100px; padding-bottom: 40px;
}

.show-back-btn {
    display: inline-flex; align-items: center; gap: 8px;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.88rem; font-weight: 500;
    transition: color 0.2s;
}
.show-back-btn:hover { color: white; }

.show-hero-info { margin-top: auto; }

.show-type-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    color: white;
    padding: 6px 14px; border-radius: 20px;
    font-size: 0.8rem; font-weight: 600;
    margin-bottom: 12px;
}

.show-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700; color: white;
    margin: 0 0 12px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.show-hero-meta {
    display: flex; flex-wrap: wrap; gap: 20px;
    align-items: center;
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
}

.show-hero-meta i { margin-right: 4px; }

.show-hero-rating i { color: #ffc947; }
.show-hero-rating small { opacity: 0.7; margin-left: 4px; }

/* ===== MAIN LAYOUT ===== */
.show-main {
    padding: 40px 0 80px;
    background: #f5f8fa;
}

.show-layout {
    display: flex; gap: 32px;
    align-items: flex-start;
}

.show-content { flex: 1; min-width: 0; }
.show-sidebar { width: 340px; flex-shrink: 0; }

/* ===== CARDS ===== */
.show-card {
    background: white;
    border-radius: 16px;
    padding: 28px;
    border: 1px solid rgba(10,77,104,0.05);
    box-shadow: 0 2px 12px rgba(10,77,104,0.04);
    margin-bottom: 24px;
}

.show-card-title {
    font-size: 1.1rem; font-weight: 700;
    color: var(--ocean-deep);
    margin: 0 0 18px;
    display: flex; align-items: center; gap: 10px;
}
.show-card-title i { color: var(--ocean-mid); font-size: 0.95rem; }

/* ===== WEATHER ===== */
.weather-card {
    background: linear-gradient(135deg, #e8f4f8 0%, #fff 100%);
    border: 1px solid rgba(8,131,149,0.1);
}

.weather-current {
    display: flex; align-items: center; gap: 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(8,131,149,0.08);
    margin-bottom: 16px;
}

.weather-icon-big { font-size: 3rem; }

.weather-temp {
    font-size: 2.2rem; font-weight: 800;
    color: var(--ocean-deep); line-height: 1;
}

.weather-label {
    font-size: 0.9rem; color: #8895a4;
    font-weight: 500; margin: 4px 0 8px;
}

.weather-details {
    display: flex; flex-wrap: wrap; gap: 12px;
    font-size: 0.8rem; color: #8895a4;
}
.weather-details i { margin-right: 3px; color: var(--ocean-mid); }

.weather-forecast {
    display: flex; gap: 12px; justify-content: space-around;
}

.weather-day {
    display: flex; flex-direction: column;
    align-items: center; gap: 6px;
    padding: 10px 16px;
    background: rgba(255,255,255,0.7);
    border-radius: 12px;
    flex: 1;
}

.weather-day-name {
    font-size: 0.78rem; font-weight: 600;
    text-transform: uppercase; color: #8895a4;
}

.weather-day i { font-size: 1.3rem; }

.weather-day-temp {
    font-size: 0.82rem; font-weight: 600;
    color: var(--ocean-deep);
}

/* ===== DESCRIPTION ===== */
.show-description-short {
    font-size: 1.05rem; color: var(--dark);
    line-height: 1.7; margin-bottom: 12px;
    font-weight: 500;
}

.show-description-long {
    font-size: 0.92rem; color: #555;
    line-height: 1.8;
}

/* ===== AMENITIES ===== */
.show-amenity-group { margin-bottom: 16px; }
.show-amenity-group:last-child { margin-bottom: 0; }

.show-amenity-category {
    font-size: 0.72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px;
    color: #8895a4; display: block; margin-bottom: 8px;
}

.show-amenity-list { display: flex; flex-wrap: wrap; gap: 8px; }

.show-amenity-tag {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 14px;
    background: var(--sand-light);
    border-radius: 10px;
    font-size: 0.82rem; font-weight: 500;
    color: var(--sand-dark);
}
.show-amenity-tag i { color: var(--ocean-mid); font-size: 0.8rem; }

/* ===== SIDEBAR INFO ===== */
.show-info-card { padding: 24px; }

.show-info-title {
    font-size: 0.9rem; font-weight: 700;
    color: var(--dark); margin: 0 0 12px;
    display: flex; align-items: center; gap: 8px;
}
.show-info-title i { color: var(--ocean-mid); font-size: 0.85rem; }

.show-info-row {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 0.88rem; color: #555;
    margin-bottom: 10px;
}
.show-info-row i { color: var(--ocean-mid); width: 16px; text-align: center; margin-top: 2px; }
.show-info-row a { color: var(--ocean-mid); text-decoration: none; }
.show-info-row a:hover { text-decoration: underline; }

.show-info-price {
    font-size: 1.4rem; font-weight: 800;
    color: var(--ocean-deep);
    margin-bottom: 4px;
}

.show-info-note {
    font-size: 0.8rem; color: #8895a4;
    font-style: italic; margin-top: 4px;
}

/* ===== MAP ===== */
.show-map-card { padding: 24px; }
.show-map-wrap { border-radius: 12px; overflow: hidden; margin-bottom: 12px; }

.show-directions-btn {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    width: 100%;
    padding: 11px;
    background: linear-gradient(135deg, var(--ocean-mid), var(--ocean-deep));
    color: white; border-radius: 12px;
    text-decoration: none;
    font-weight: 600; font-size: 0.88rem;
    transition: all 0.3s;
}
.show-directions-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(8,131,149,0.3);
    color: white;
}

/* ===== SIMILAR ===== */
.show-similar-item {
    display: flex; align-items: center; justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(10,77,104,0.05);
    text-decoration: none; color: var(--dark);
    transition: all 0.2s;
}
.show-similar-item:last-child { border-bottom: none; }
.show-similar-item:hover { padding-left: 6px; }

.show-similar-name { font-weight: 600; font-size: 0.9rem; display: block; }
.show-similar-location { font-size: 0.78rem; color: #8895a4; }

.show-similar-rating {
    font-size: 0.85rem; font-weight: 700;
    color: var(--ocean-deep);
}
.show-similar-rating i { color: #ffc947; margin-right: 2px; }

/* ===== REVIEWS ===== */
.review-summary {
    display: flex; gap: 32px;
    padding: 24px;
    background: var(--sand-light);
    border-radius: 14px;
    margin-bottom: 28px;
}

.review-summary-score { text-align: center; min-width: 100px; }

.review-big-number {
    font-size: 2.8rem; font-weight: 800;
    color: var(--ocean-deep); line-height: 1;
}

.review-big-stars { margin: 6px 0 4px; }
.review-big-stars i { color: #ddd; font-size: 0.9rem; }
.review-big-stars i.active { color: #ffc947; }

.review-total { font-size: 0.78rem; color: #8895a4; }

.review-bars { flex: 1; display: flex; flex-direction: column; gap: 6px; justify-content: center; }

.review-bar-row {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.78rem; color: #8895a4;
}

.review-bar-label { width: 40px; text-align: right; }
.review-bar-label i { color: #ffc947; font-size: 0.65rem; }

.review-bar-track {
    flex: 1; height: 8px;
    background: rgba(10,77,104,0.06);
    border-radius: 4px; overflow: hidden;
}

.review-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #ffc947, #f5af19);
    border-radius: 4px;
    transition: width 0.5s ease;
}

.review-bar-count { width: 20px; }

/* Review Form */
.review-form-wrap {
    background: var(--sand-light);
    border-radius: 14px;
    padding: 24px;
    margin-bottom: 28px;
}

.review-form-title {
    font-size: 1rem; font-weight: 700;
    color: var(--dark); margin: 0 0 16px;
}

.review-stars-input {
    display: flex; align-items: center; gap: 6px;
    margin-bottom: 14px;
    font-size: 0.88rem; color: #555;
}

.star-label {
    cursor: pointer;
    font-size: 1.5rem;
}

.star-label input { display: none; }
.star-label i { color: #ddd; transition: color 0.2s; }
.star-label input:checked ~ i,
.star-label:has(input:checked) i { color: #ffc947; }

/* Csillag interaktivitás: a kiválasztottig mind aktív */
.review-stars-input:has(.star-label:nth-child(2) input:checked) .star-label:nth-child(2) i { color: #ffc947; }
.review-stars-input:has(.star-label:nth-child(3) input:checked) .star-label:nth-child(2) i,
.review-stars-input:has(.star-label:nth-child(3) input:checked) .star-label:nth-child(3) i { color: #ffc947; }
.review-stars-input:has(.star-label:nth-child(4) input:checked) .star-label:nth-child(2) i,
.review-stars-input:has(.star-label:nth-child(4) input:checked) .star-label:nth-child(3) i,
.review-stars-input:has(.star-label:nth-child(4) input:checked) .star-label:nth-child(4) i { color: #ffc947; }
.review-stars-input:has(.star-label:nth-child(5) input:checked) .star-label:nth-child(2) i,
.review-stars-input:has(.star-label:nth-child(5) input:checked) .star-label:nth-child(3) i,
.review-stars-input:has(.star-label:nth-child(5) input:checked) .star-label:nth-child(4) i,
.review-stars-input:has(.star-label:nth-child(5) input:checked) .star-label:nth-child(5) i { color: #ffc947; }
.review-stars-input:has(.star-label:nth-child(6) input:checked) .star-label:nth-child(2) i,
.review-stars-input:has(.star-label:nth-child(6) input:checked) .star-label:nth-child(3) i,
.review-stars-input:has(.star-label:nth-child(6) input:checked) .star-label:nth-child(4) i,
.review-stars-input:has(.star-label:nth-child(6) input:checked) .star-label:nth-child(5) i,
.review-stars-input:has(.star-label:nth-child(6) input:checked) .star-label:nth-child(6) i { color: #ffc947; }

.review-input {
    width: 100%;
    border: 1px solid rgba(10,77,104,0.1);
    border-radius: 10px;
    padding: 10px 14px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    margin-bottom: 10px;
    outline: none;
    transition: border-color 0.2s;
}
.review-input:focus { border-color: var(--ocean-mid); }

.review-textarea {
    width: 100%;
    border: 1px solid rgba(10,77,104,0.1);
    border-radius: 10px;
    padding: 10px 14px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    margin-bottom: 10px;
    resize: vertical;
    outline: none;
    transition: border-color 0.2s;
}
.review-textarea:focus { border-color: var(--ocean-mid); }

.review-form-row {
    display: flex; gap: 10px; align-items: center;
}

.review-date { max-width: 200px; margin-bottom: 0; }

.review-submit-btn {
    background: linear-gradient(135deg, var(--ocean-mid), var(--ocean-deep));
    color: white; border: none;
    padding: 10px 24px; border-radius: 12px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600; font-size: 0.9rem;
    cursor: pointer; transition: all 0.3s;
    display: inline-flex; align-items: center; gap: 8px;
}
.review-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(8,131,149,0.3);
}

.review-login-prompt {
    text-align: center;
    padding: 24px;
    background: var(--sand-light);
    border-radius: 14px;
    margin-bottom: 28px;
    color: #8895a4;
}
.review-login-prompt i { font-size: 2rem; margin-bottom: 8px; display: block; color: var(--ocean-light); }
.review-login-prompt a { color: var(--ocean-mid); font-weight: 600; }

/* Review Items */
.review-item {
    padding: 20px 0;
    border-bottom: 1px solid rgba(10,77,104,0.06);
}
.review-item:last-child { border-bottom: none; }

.review-item-header {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 10px;
}

.review-avatar {
    width: 40px; height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--ocean-mid), var(--ocean-light));
    color: white;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.95rem;
    flex-shrink: 0;
}

.review-meta { flex: 1; }
.review-author { font-weight: 600; font-size: 0.9rem; display: block; color: var(--dark); }
.review-date { font-size: 0.78rem; color: #8895a4; }

.review-item-stars i { color: #ddd; font-size: 0.8rem; }
.review-item-stars i.active { color: #ffc947; }

.review-item-title {
    font-size: 0.95rem; font-weight: 600;
    color: var(--dark); margin: 0 0 6px;
}

.review-item-body {
    font-size: 0.88rem; color: #555;
    line-height: 1.7; margin: 0;
}

.review-visit-date {
    display: inline-block; margin-top: 8px;
    font-size: 0.75rem; color: #8895a4;
}
.review-visit-date i { margin-right: 4px; }

.review-empty {
    text-align: center; padding: 40px;
    color: #8895a4;
}
.review-empty i { font-size: 2rem; display: block; margin-bottom: 8px; color: var(--ocean-light); }

.review-pagination { margin-top: 24px; display: flex; justify-content: center; }

/* ===== RESPONSIVE ===== */
@media (max-width: 991.98px) {
    .show-layout { flex-direction: column; }
    .show-sidebar { width: 100%; }
    .show-hero { height: 340px; }
    .weather-current { flex-wrap: wrap; }
}

@media (max-width: 575.98px) {
    .show-hero { height: 280px; }
    .show-hero-content { padding-top: 80px; padding-bottom: 24px; }
    .show-hero-meta { gap: 10px; font-size: 0.82rem; }
    .show-card { padding: 20px; }
    .review-summary { flex-direction: column; gap: 20px; }
    .review-form-row { flex-direction: column; }
    .review-date { max-width: 100%; }
    .weather-forecast { flex-direction: column; gap: 8px; }
    .weather-day { flex-direction: row; justify-content: space-between; }
}

/* Kedvenc gomb */
.show-favorite-btn {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex; align-items: center; gap: 6px;
}
.show-favorite-btn:hover { background: rgba(239, 83, 80, 0.3); }
.show-favorite-btn.is-favorite { background: rgba(239, 83, 80, 0.4); }
.show-favorite-btn.is-favorite i { color: #ef5350; }