:root {
    --primary: #2c5e2e;
    --accent: #f39c12;
    --dark: #212529;
    --light: #f8f9fa;
}

body { 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
    background-color: var(--light); 
    color: var(--dark);
    margin: 0;
}

/* --- Sekcja Header/Hero (Zdjęcie z przyciemnieniem) --- */
.hero-section, .camp-header {
    position: relative;
    min-height: 300px; 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
}

/* Filtr przyciemniający - musi być nad zdjęciem, ale pod tekstem */
.hero-section::before, .camp-header::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.55); /* Przyciemnienie 55% */
    z-index: 1;
}

/* Kontener z tekstem - ląduje nad filtrem dzięki z-index: 2 */
.hero-section .container, .camp-header .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-section h1, .camp-header h1 {
    color: #ffffff !important;
    font-weight: 800;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
    margin-bottom: 15px;
}

.hero-section p, .camp-header p, .camp-header .breadcrumb-item a {
    color: #ffffff !important;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

/* --- Wyszukiwarka (Pasek nad zdjęciem) --- */
.search-box { 
    background: white; 
    padding: 30px; 
    border-radius: 15px; 
    margin-top: -60px; /* Przesunięcie do góry na zdjęcie */
    box-shadow: 0 15px 35px rgba(0,0,0,0.15); 
    position: relative; 
    z-index: 10; /* Najwyższa warstwa, aby przyciski działały */
}

/* --- Karty i pozostałe --- */
/* --- Nagłówki Sekcji (bez podkreślenia) --- */
.section-title { 
    font-weight: 800; 
    margin-bottom: 2rem; 
    display: block; /* Zmienione z inline-block na block, skoro nie ma linii */
    padding-bottom: 0; 
    border-bottom: none; /* To usunie linię */
    color: var(--dark);
}

.card { border-radius: 15px; border: none; box-shadow: 0 4px 12px rgba(0,0,0,0.05); transition: 0.3s; }
.card:hover { transform: translateY(-5px); box-shadow: 0 12px 24px rgba(0,0,0,0.12) !important; }
.btn-warning { background-color: var(--accent); border: none; color: white !important; font-weight: bold; }
.category-card { height: 160px; border-radius: 15px; display: flex; align-items: center; justify-content: center; color: white !important; font-weight: bold; text-decoration: none; font-size: 1.5rem; background-size: cover; background-position: center; text-shadow: 2px 2px 8px rgba(0,0,0,0.8); }

/* Wymuszenie wyrównania do lewej dla treści w nagłówku kempingu */
.camp-header .container {
    text-align: left !important;
}

/* Opcjonalnie: poprawka dla chlebka, żeby też był do lewej */
.camp-header .breadcrumb {
    justify-content: flex-start;
}

/* --- Nowa Sekcja Recenzji Admina --- */
.admin-review-wrapper {
    margin-bottom: 30px;
    margin-top: 20px;
}

.admin-box {
    background-color: #fff9f0 !important; /* Jasny piaskowy */
    border-left: 6px solid #f39c12 !important; /* Pomarańczowa linia */
    border-top: 0 !important;
    border-right: 0 !important;
    border-bottom: 0 !important;
    padding: 30px !important;
    border-radius: 0 15px 15px 0 !important;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06) !important;
}

.admin-box h4 {
    color: #2c5e2e !important; /* Kolor Twojego brandu (ciemnozielony) */
    font-size: 1.4rem !important;
    margin-bottom: 15px !important;
}

.admin-content {
    font-style: italic;
    font-size: 1.15rem;
    line-height: 1.7;
    color: #444 !important;
}

/* Poprawka Breadcrumbs, aby region był klikalny i biały */
.camp-header .breadcrumb-item a {
    color: #ffffff !important;
    text-decoration: none !important;
    opacity: 0.9;
}

.camp-header .breadcrumb-item a:hover {
    opacity: 1;
    text-decoration: underline !important;
}

/* --- Kafelki Krajów --- */
.country-card {
    height: 180px !important; /* Nieco wyższe niż standardowe przyciski, ale niższe niż kategorie */
    flex-direction: column;
}

.country-card .badge {
    font-size: 0.75rem;
    font-weight: bold;
}

.country-card .fs-4 {
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- WYRAŹNE TAGI W EDYCJI (ADMIN) --- */
.tag-wrapper {
    margin-bottom: 5px;
}

/* Wygląd podstawowy (niezaznaczony) */
.tag-badge-admin { 
    cursor: pointer; 
    transition: all 0.2s ease; 
    border: 1px solid #ced4da !important; 
    background-color: #f8f9fa !important;
    color: #495057 !important;
    padding: 8px 14px !important;
    display: inline-block;
    font-weight: 500 !important;
    border-radius: 6px !important;
    font-size: 0.85rem !important;
    text-decoration: none !important;
}

.tag-badge-admin:hover { 
    background-color: #e9ecef !important;
    border-color: #adb5bd !important;
}

/* WYGLĄD PO ZAZNACZENIU (Checked) */
.tag-check:checked + .tag-badge-admin { 
    background-color: #198754 !important; /* Czysty zielony Bootstrapa */
    color: #ffffff !important; 
    border-color: #157347 !important;
    font-weight: 700 !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15) !important;
}

/* Dodatkowa ikonka fajki przy zaznaczonym tagu */
.tag-check:checked + .tag-badge-admin::before {
    content: "\f00c"; 
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 6px;
}

.toggle-icon { cursor: pointer; transition: transform 0.2s; }
.toggle-icon:hover { transform: scale(1.2); }
.star-active { color: #ffc107; } /* Złota gwiazdka */
.star-inactive { color: #dee2e6; } /* Szara gwiazdka */