/* =========================================
   CELKOVÉ POZADÍ STRÁNKY (Kefír modrá)
   ========================================= */
body {
    background-color: var(--kefir-svetle-modra) !important;
}

/* =========================================
   ZÁKLAD A HRDINA (HERO SEKCE)
   ========================================= */
.sekce-kemp-hero {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 60px 20px 20px 20px;
    box-sizing: border-box;
}

.kemp-hero-obsah {
    text-align: center;
    max-width: 1180px;
    width: 100%;
}

.hlavni-nadpis-img {
    width: 100%;
    max-width: 450px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* =========================================
   OBECNÝ POPIS A TLAČÍTKO
   ========================================= */
.sekce-kemp-uvod {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px 20px 10px 20px;
    box-sizing: border-box;
}

.kontejner-uzky {
    max-width: 800px;
    width: 100%;
    text-align: left;
}

.kemp-uvod-text {
    font-size: 20px;
    line-height: 1.6;
    color: var(--kefir-cerna, #111);
    margin: 0 0 20px 0;
}

/* Modrá pilulka převzatá z homepage */
.obal-tlacitko-koupit {
    text-align: center;
    margin: 30px 0;
}

.tlacitko-pilulka {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--kefir-modra-tmava, #283482);
    color: var(--kefir-bila, #ffffff) !important;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    padding: 8px 16px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.tlacitko-pilulka:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    background-color: var(--kefir-cerna, #111111);
}

/* =========================================
   SNOMAT SEKCE NA KEMPU (PŘÍSTROJ)
   ========================================= */
.sekce-snomat {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0px 20px 10px 20px;
    box-sizing: border-box;
}

.kontejner-centrovany {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.snomat-kemp-odkaz {
    display: block;
    position: relative;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    text-decoration: none;
    transition: transform 0.3s ease;
    transform: translateX(2%);
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.15));
}

.snomat-kemp-odkaz:hover {
    transform: translateX(2%) scale(1.03) translateY(-5px);
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.25));
}

.snomat-svg-kontejner {
    position: relative;
    width: 100%;
    height: auto;
}

.snomat-svg-kontejner svg {
    display: block;
    width: 100%;
    height: auto;
}

.snomat-kemp-text {
    position: absolute;
    top: 53%;
    left: 48%;
    transform: translate(-50%, -50%);
    width: 65%;
    max-width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #111111;
    font-family: 'Courier New', Courier, monospace;
    font-size: 21px;
    font-weight: bold;
    text-align: center;
    line-height: 1.35;
    z-index: 10;
}

.snomat-text-uvod {
    display: block;
    margin-bottom: 12px;
}

.tlacitko-cervene {
    display: inline-block;
    background-color: #E60033;
    color: #ffffff !important;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 10px 22px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(230, 0, 51, 0.3);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    white-space: nowrap;
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.snomat-kemp-odkaz:hover .tlacitko-cervene {
    background-color: #cc002d;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(230, 0, 51, 0.4);
}

.kemp-zarovka {
    transition: fill-opacity 0.6s ease, fill 0.6s ease;
}

/* =========================================
   UBYTOVÁNÍ (GRID A POLOŽKY)
   ========================================= */
.sekce-ubytovani {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0px 20px 80px 20px;
    box-sizing: border-box;
}

.kontejner-ubytovani {
    max-width: 1000px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.ubytovani-polozka {
    display: flex;
    flex-direction: row;
    background-color: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

/* --- FOTO A GALERIE S TRACKEM --- */
.ubytovani-foto {
    flex: 0 0 35%;
    background-color: #c8d0d8;
    position: relative;
    min-height: 420px;
    overflow: hidden;
}

.ubytovani-galerie {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0; left: 0;
}

.galerie-vyrez {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.galerie-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.4s ease-in-out;
}

.galerie-track img {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Šipky pro galerii */
.galerie-sipka {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.85);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #E60033;
    transition: background 0.2s ease, transform 0.2s ease;
    z-index: 5;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.galerie-sipka:hover {
    background: #ffffff;
    transform: translateY(-50%) scale(1.1);
}

.galerie-sipka.vlevo { left: 10px; }
.galerie-sipka.vpravo { right: 10px; }

/* --- ŠTÍTEK VYPRODÁNO --- */
.vyprodano-stitek {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-25deg);
    background-color: #E60033;
    color: #ffffff;
    font-weight: 900;
    font-size: 36px;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 15px 120px;
    z-index: 10;
    box-shadow: 0 5px 25px rgba(0,0,0,0.4);
    pointer-events: none;
    white-space: nowrap;
}

/* --- INFO A TEXTY --- */
.ubytovani-info {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    box-sizing: border-box;
}

.ubytovani-nazev {
    font-size: 32px;
    font-weight: 900;
    color: #111111;
    margin: 0 0 10px 0;
    text-transform: uppercase;
}

.ubytovani-kapacita {
    display: inline-block;
    background-color: #00C16E;
    color: #ffffff;
    font-weight: bold;
    font-size: 14px;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
    align-self: flex-start;
}

.ubytovani-popis {
    font-size: 17px;
    line-height: 1.6;
    color: #444444;
    margin: 0 0 20px 0;
}

.ubytovani-stitky {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.stitek {
    background-color: #E60033;
    color: #ffffff;
    font-weight: 800;
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 6px;
}

.stitek-doplnkovy {
    background-color: #E2007A;
    color: #ffffff;
    font-weight: bold;
    font-size: 13px;
    padding: 6px 12px;
    border-radius: 6px;
}

/* =========================================
   SPODNÍ INFO KARTA S ČASY
   ========================================= */
.sekce-kemp-info-dole {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0 20px 80px 20px;
    box-sizing: border-box;
}

.karta-info {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 50px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    max-width: 1000px;
    width: 100%;
    text-align: left;
    box-sizing: border-box;
}

.karta-info h2 {
    font-size: 32px;
    font-weight: 900;
    color: #111111;
    margin: 0 0 30px 0;
    text-transform: uppercase;
}

.karta-info h3 {
    font-size: 22px;
    font-weight: 900;
    color: #E60033;
    margin: 25px 0 10px 0;
}

.karta-info ul {
    list-style: none;
    padding-left: 0;
    margin: 0 0 20px 0;
}

.karta-info li {
    font-size: 18px;
    line-height: 1.6;
    color: #444444;
    padding-left: 20px;
    position: relative;
    margin-bottom: 5px;
}

.karta-info li::before {
    content: "•";
    color: #00C16E;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.karta-info-poznamka {
    font-size: 17px;
    line-height: 1.6;
    color: #444444;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px dashed #eaeaea;
}

/* =========================================
   RESPONZIVITA PRO MOBILY A TABLETY
   ========================================= */
@media (max-width: 768px) {
    .sekce-kemp-hero {
        padding: 40px 15px 10px 15px;
    }
    
    .hlavni-nadpis-img {
        max-width: 300px;
    }

    .sekce-kemp-uvod {
        padding: 10px 15px 10px 15px;
    }

    .kemp-uvod-text {
        font-size: 17px;
    }

    .sekce-snomat {
        padding: 10px 15px 30px 15px;
    }
    
    .snomat-kemp-odkaz {
        max-width: 360px;
    }
    
    .snomat-kemp-text {
        font-size: 16px;
        max-width: 170px;
        top: 50%;
    }
    
    .tlacitko-cervene {
        font-size: 14px;
        padding: 8px 16px;
        margin-top: 8px;
    }

    .sekce-ubytovani {
        padding: 0 15px 50px 15px;
    }

    .ubytovani-polozka {
        flex-direction: column;
    }
    
    .ubytovani-foto {
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 5;
        min-height: auto;
    }

    .vyprodano-stitek {
        font-size: 28px;
        padding: 10px 100px;
    }
    
    .galerie-sipka {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
    
    .ubytovani-info {
        padding: 25px 20px;
    }
    
    .ubytovani-nazev {
        font-size: 26px;
    }
    
    .sekce-kemp-info-dole {
        padding: 0 15px 50px 15px;
    }
    
    .karta-info {
        padding: 30px 20px;
    }
    
    .karta-info h2 {
        font-size: 24px;
    }
    
    .karta-info h3 {
        font-size: 18px;
    }
    
    .karta-info li {
        font-size: 16px;
    }
}
