/* ==========================================================================
   Stránka /letni-tabor – Tábor pro rodiče s dětmi
   Brand orange: #F0702F
   ========================================================================== */

.dt-page {
    color: #2c2c2c;
    font-size: 1rem;
    line-height: 1.65;
}

.dt-page h1,
.dt-page h2 {
    text-align: left;
}

.dt-page h1::after,
.dt-page h2::after {
    display: none;
}

.dt-page p {
    margin-bottom: 0.9rem;
}

/* ---------- Tlačítka ------------------------------------------------------ */

.dt-btn {
    display: inline-block;
    padding: 0.7rem 1.6rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid transparent;
    transition: background-color 0.15s, color 0.15s, border-color 0.15s;
    line-height: 1.2;
}

.dt-btn--primary {
    background-color: #F0702F;
    color: #fff;
    border-color: #F0702F;
}

.dt-btn--primary:hover {
    background-color: #d65f25;
    border-color: #d65f25;
    color: #fff;
    text-decoration: none;
}

.dt-btn--outline {
    background-color: transparent;
    color: #2c2c2c;
    border-color: #2c2c2c;
}

.dt-btn--outline:hover {
    background-color: #2c2c2c;
    color: #fff;
    text-decoration: none;
}

.dt-cta {
    text-align: center;
    margin: 2.5rem 0 0.5rem;
}

/* ---------- Reg-prompt (textová výzva k přihlášení mailem) ---------------- */

.dt-reg-prompt {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem 1.4rem;
    background-color: #fff7f1;
    border: 1.5px solid rgba(240, 112, 47, 0.35);
    border-radius: 14px;
    color: #2c2c2c;
    font-size: 1rem;
    line-height: 1.4;
    margin-top: 1.5rem;
    max-width: 100%;
}

.dt-reg-prompt__icon {
    color: #F0702F;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.dt-reg-prompt a {
    color: #F0702F;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid rgba(240, 112, 47, 0.5);
    transition: color 0.15s, border-color 0.15s;
    white-space: nowrap;
}

.dt-reg-prompt a:hover {
    color: #d65f25;
    border-bottom-color: #d65f25;
}

.dt-reg-prompt--centered {
    display: inline-flex;
    margin: 0 auto;
}

/* ---------- BANNER -------------------------------------------------------- */

.dt-banner {
    padding: 1.5rem 0 0;
}

.dt-banner__inner {
    border-radius: 16px;
    overflow: hidden;
}

.dt-banner img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 16 / 5;
}

/* ---------- HERO ---------------------------------------------------------- */

.dt-hero {
    padding: 3rem 0 3.5rem;
}

.dt-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.dt-hero__title {
    color: #2c2c2c;
    font-size: 2.6rem;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0 0 1.2rem;
    line-height: 1.1;
}

.dt-hero__badge {
    display: inline-block;
    border: 2px solid #F0702F;
    color: #F0702F;
    font-weight: 700;
    padding: 0.4rem 1.1rem;
    border-radius: 999px;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    margin-bottom: 1.4rem;
}

.dt-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.5rem;
}

.dt-hero__media img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

/* ---------- TOP GALLERY (4 fotky) ---------------------------------------- */

.dt-top-gallery {
    padding: 1.5rem 0 3rem;
    background-color: #e8eef4;
}

.dt-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.dt-grid-4 a {
    display: block;
    overflow: hidden;
    border-radius: 8px;
}

.dt-grid-4 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    transition: transform 0.3s;
    display: block;
}

.dt-grid-4 a:hover img {
    transform: scale(1.05);
}

/* ---------- SEKCE --------------------------------------------------------- */

.dt-section {
    padding: 3rem 0;
}

.dt-section--light {
    background-color: #e8eef4;
}

.dt-section--bottom {
    padding-top: 3rem;
}

.dt-h2 {
    color: #2c2c2c;
    font-size: 2rem;
    font-weight: 800;
    margin: 0 0 1.2rem;
    line-height: 1.15;
    text-transform: none;
}

.dt-h2__accent {
    color: #F0702F;
}

.dt-h2--left {
    text-align: left;
    margin-bottom: 2rem;
}

.dt-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 2.5rem;
}

.dt-row:last-child {
    margin-bottom: 0;
}

.dt-row--tight {
    margin-top: 2.5rem;
}

.dt-row__media img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

.dt-row--image-right .dt-row__content {
    order: 1;
}

.dt-row--image-right .dt-row__media {
    order: 2;
}

.dt-row--image-left .dt-row__media {
    order: 1;
}

.dt-row--image-left .dt-row__content {
    order: 2;
}

/* ---------- Bullets s ikonami --------------------------------------------- */

.dt-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dt-bullets li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.7rem;
    font-size: 1.05rem;
}

.dt-bullets li i {
    color: #F0702F;
    font-size: 1.2rem;
    width: 1.6rem;
    text-align: center;
    flex-shrink: 0;
}

/* ---------- Plain list ---------------------------------------------------- */

.dt-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dt-list li {
    position: relative;
    padding-left: 1rem;
    margin-bottom: 0.4rem;
}

.dt-list li::before {
    content: "·";
    position: absolute;
    left: 0;
    color: #2c2c2c;
    font-weight: 700;
}

/* ---------- DARK SECTION (Profesionální péče / Čas jen pro vás) ----------- */

.dt-dark {
    position: relative;
    padding: 5rem 0;
    color: #fff;
    background-image: url('/images/letni-tabor/milkway.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.dt-dark::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 14, 28, 0.65) 0%, rgba(8, 14, 28, 0.85) 100%);
    z-index: 0;
}

.dt-dark .container {
    position: relative;
    z-index: 1;
}

.dt-dark__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.dt-dark__card {
    background: rgba(255, 255, 255, 0.08);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    border-radius: 16px;
    padding: 2rem 1.8rem;
}

.dt-dark__title {
    color: #fff;
    font-size: 1.7rem;
    font-weight: 800;
    margin: 0 0 1rem;
    text-align: left;
}

.dt-dark__title::after {
    display: none;
}

.dt-dark p {
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.98rem;
}

/* ---------- PRICING ------------------------------------------------------- */

.dt-price-box {
    background-color: #e8eef4;
    border-radius: 18px;
    padding: 2.5rem 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

.dt-price-box .dt-h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.dt-price-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.dt-price-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 1.1rem 1.2rem;
    text-align: left;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.dt-price-card__label {
    font-size: 0.78rem;
    font-weight: 700;
    color: #6c757d;
    letter-spacing: 0.04em;
    margin-bottom: 0.4rem;
}

.dt-price-card__value {
    font-size: 0.95rem;
    font-weight: 700;
    color: #2c2c2c;
}

/* ---------- CENA ZAHRNUJE (uvnitř modré pricing karty) -------------------- */

.dt-includes {
    display: grid;
    grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
    gap: 2rem;
    align-items: center;
    margin-top: 2.5rem;
    text-align: left;
}

.dt-includes__media img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

.dt-includes__title {
    color: #2c2c2c;
    font-size: 1.7rem;
    font-weight: 800;
    margin: 0 0 1rem;
    text-align: left;
}

.dt-includes__title::after {
    display: none;
}

.dt-includes__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dt-includes__list li {
    position: relative;
    padding-left: 1.1rem;
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.dt-includes__list li::before {
    content: "-";
    position: absolute;
    left: 0;
    color: #2c2c2c;
    font-weight: 700;
}

/* ---------- BOTTOM GALLERY (6 fotek) -------------------------------------- */

.dt-grid-6 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.dt-grid-6 a {
    display: block;
    overflow: hidden;
    border-radius: 10px;
}

.dt-grid-6 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 3;
    transition: transform 0.3s;
    display: block;
}

.dt-grid-6 a:hover img {
    transform: scale(1.05);
}

/* ---------- Responsive ---------------------------------------------------- */

@media (max-width: 991px) {
    .dt-hero__title {
        font-size: 2.1rem;
    }

    .dt-h2 {
        font-size: 1.6rem;
    }

    .dt-hero__grid,
    .dt-row,
    .dt-dark__grid,
    .dt-price-grid,
    .dt-includes {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .dt-banner img {
        aspect-ratio: 16 / 9;
    }

    .dt-row--image-right .dt-row__media,
    .dt-row--image-left .dt-row__media {
        order: 1;
    }

    .dt-row--image-right .dt-row__content,
    .dt-row--image-left .dt-row__content {
        order: 2;
    }

    .dt-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .dt-grid-6 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .dt-section,
    .dt-hero {
        padding: 2rem 0;
    }

    .dt-hero__title {
        font-size: 1.7rem;
    }

    .dt-h2 {
        font-size: 1.4rem;
    }

    .dt-grid-4,
    .dt-grid-6 {
        grid-template-columns: 1fr;
    }

    .dt-price-box {
        padding: 1.5rem 1rem;
    }

    .dt-hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .dt-btn {
        text-align: center;
    }
}
