﻿@font-face {
    font-family: 'Bely Display';
    src: local('Bely Display'), local('BelyDisplay');
    font-display: swap;
}

:root {
    --bg: #0F1020;
    --panel: rgba(255,255,255,.04);
    --panel-2: rgba(122,92,255,.12);
    --text: #ffffff;
    --muted: rgba(255,255,255,.78);
    --line: rgba(255,255,255,.12);
    --accent: #7A5CFF;
    --accent-2: #FF3EA5;
    --accent-3: #9E4DFF;
    --accent-4: #FF6EDB;
    --accent-5: #4CE6FF;
    --gradient-main: linear-gradient(135deg, #7A5CFF 0%, #FF3EA5 100%);
    --gradient-soft: linear-gradient(135deg, rgba(122,92,255,.18) 0%, rgba(255,62,165,.14) 100%);
    --max: 1180px;
    --radius: 22px;
    --shadow: 0 22px 70px rgba(0,0,0,.42);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    background: radial-gradient(circle at top right, rgba(76,230,255,.12), transparent 28%), radial-gradient(circle at top left, rgba(255,62,165,.14), transparent 25%), radial-gradient(circle at center, rgba(122,92,255,.10), transparent 35%), var(--bg);
    color: var(--text);
    line-height: 1.55;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(calc(100% - 32px), var(--max));
    margin: 0 auto;
}

.section {
    padding: 88px 0;
}

.section-tight {
    padding: 64px 0;
}

.eyebrow {
    display: inline-block;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--accent-5);
    font-size: .78rem;
    margin-bottom: 14px;
}

/* Společné vlastnosti pro všechny nadpisy zůstávají */
h1, h2, h3 {
    margin: 0 0 18px;
    line-height: 1.05;
}

h3 {
    font-family: 'Bely Display', Georgia, 'Times New Roman', serif;
    font-weight: 400;
}

h1 {
    font-size: clamp(2.9rem, 8vw, 5.8rem);
    letter-spacing: -.04em;
    font-family: "dunbar-low", sans-serif;
    font-weight: 500;
    font-style: normal;
    letter-spacing: -.03em;
}

/* H2 má nyní svůj vlastní specifický font a váhu */
h2 {
    font-family: "dunbar-low", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: clamp(2rem, 5vw, 3.2rem);
    letter-spacing: -.03em;
}

ß {
    font-size: 1.25rem;
}



p {
    margin: 0 0 16px;
    color: var(--muted);
}

.lead {
    font-size: clamp(1.08rem, 2vw, 1.28rem);
    max-width: 760px;
}

.grid {
    display: grid;
    gap: 24px;
}

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

.grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.card {
    background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.025));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(8px);
}

.btn-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    border-radius: 999px;
    font-weight: 700;
    border: 1px solid transparent;
    transition: .2s ease;
}

.btn-primary {
    background: var(--gradient-main);
    color: #fff;
    box-shadow: 0 12px 32px rgba(255,62,165,.22);
}

    .btn-primary:hover {
        transform: translateY(-2px);
    }

.btn-secondary {
    border-color: rgba(76,230,255,.28);
    color: var(--text);
    background: rgba(255,255,255,.02);
}

    .btn-secondary:hover {
        background: rgba(255,255,255,.05);
    }

.hero {
    padding: 28px 0 72px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.nav {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(15,16,32,.76);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.nav-inner {
    width: min(calc(100% - 32px), var(--max));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}

.brand {
    font-weight: 800;
    letter-spacing: .08em;
    color: #fff;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--muted);
    font-size: .95rem;
}

.hello-rotator-full {
    grid-column: 1 / -1;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin-bottom: 10px;
    padding-top: 8px;
    text-align: center;
}

.hello-label {
    color: var(--accent-5);
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: .76rem;
    font-weight: 700;
}

.hello-rotator {
    font-family: 'Bely Display', Georgia, 'Times New Roman', serif;
    font-size: clamp(1.8rem, 5vw, 3.6rem);
    line-height: 1;
    letter-spacing: -.03em;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 28px rgba(255,62,165,.14);
    transition: opacity .18s ease, transform .18s ease;
    padding-bottom: 8px;
}

    .hello-rotator.is-changing {
        opacity: .18;
        transform: translateY(4px);
    }

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 34px;
    align-items: center;
}

.hero-meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 20px 0 6px;
}

.pill {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.06);
    border: 1px solid var(--line);
    color: var(--text);
    font-size: .92rem;
}

.visual {
    min-height: 560px;
    border-radius: 30px;
    background: linear-gradient(165deg, rgba(122,92,255,.22), rgba(255,62,165,.16));
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

/* Nový styl pro obrázek, aby vyplnil celý prostor */
.visual-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.visual-badge {
    position: absolute;
    left: 22px;
    bottom: 22px;
    right: 22px;
    height: auto;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    background: rgba(15, 17, 20, 0.43);
    z-index: 2;
}

.badge-content {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 16px;
    border-radius: 14px;
    background: rgba(15,17,21,.55);
    backdrop-filter: blur(6px);
}

    .badge-content p {
        margin: 10px 0 0;
        color: #fff;
    }

.highlight {
    color: var(--text);
    font-size: 1.1rem;
    max-width: 28ch;
}

.stat {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
}

    .stat:last-child {
        border-bottom: 0;
    }

.highlight {
    color: var(--text);
    font-size: 1.1rem;
    max-width: 28ch;
}

.checklist, .route-list, .faq-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .checklist li, .route-list li, .faq-list li {
        padding: 14px 0;
        border-bottom: 1px solid var(--line);
        color: var(--muted);
    }

        .checklist li:last-child, .route-list li:last-child, .faq-list li:last-child {
            border-bottom: 0;
        }

.sense {
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.quote {
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: var(--text);
    max-width: 18ch;
    letter-spacing: -.03em;
    text-shadow: 0 0 24px rgba(76,230,255,.18);
}

.price-box {
    display: grid;
    gap: 10px;
    align-content: start;
}

.price-main {
    font-size: clamp(2.4rem, 6vw, 4rem);
    font-weight: 800;
    letter-spacing: -.04em;
}

.muted-small {
    color: var(--muted);
    font-size: .94rem;
}

.booking-frame {
    width: 100%;
    min-height: 740px;
    border: 0;
    border-radius: 24px;
    background: #fff;
}

.booking-placeholder {
    background: linear-gradient(135deg, rgba(122,92,255,.10), rgba(255,62,165,.08)), #fff;
    color: #111;
    padding: 26px;
    border-radius: 24px;
    border: 2px dashed rgba(122,92,255,.35);
}

.split {
    display: grid;
    gap: 24px;
    grid-template-columns: 1fr 1fr;
}

.footer {
    padding: 36px 0 80px;
    color: var(--muted);
}

.sticky-book {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 40;
    display: none;
}

    .sticky-book a {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        background: var(--accent);
        color: #111;
        padding: 16px 20px;
        border-radius: 999px;
        font-weight: 800;
        box-shadow: var(--shadow);
    }

@media (max-width: 980px) {
    .hero-grid, .grid-2, .grid-3, .grid-5, .split {
        grid-template-columns: 1fr;
    }

    .hello-rotator-full {
        grid-column: 1;
        justify-content: center;
        margin-bottom: 18px;
    }
}

@media (max-width: 760px) {
    .hello-rotator-wrap {
        margin-bottom: 6px;
        min-height: 44px;
    }

    .hello-label {
        font-size: .68rem;
    }

    .hero {
        min-height: auto;
        padding: 18px 0 44px;
    }

    .section {
        padding: 64px 0;
    }

    .card {
        padding: 22px;
    }

    .sticky-book {
        display: block;
    }

    body {
        padding-bottom: 78px;
    }
}
/* Styl pro burger tlačítko (výchozí stav - skryté) */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 100;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    position: relative;
    transition: background 0.3s;
}

    .hamburger::before, .hamburger::after {
        content: '';
        display: block;
        width: 24px;
        height: 2px;
        background: var(--text);
        position: absolute;
        transition: transform 0.3s;
    }

    .hamburger::before {
        top: -8px;
    }

    .hamburger::after {
        bottom: -8px;
    }

/* Aktivní stav burgeru (přeměna na X) */
.nav-open .hamburger {
    background: transparent;
}

    .nav-open .hamburger::before {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .nav-open .hamburger::after {
        transform: rotate(-45deg) translate(5px, -6px);
    }

/* Mobilní verze (pod 760px) */
@media (max-width: 760px) {
    .nav-toggle {
        display: block; /* Zobrazíme burger */
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%; /* Menu je vysunuté mimo obrazovku */
        width: 80%;
        height: 100vh;
        background: rgba(15, 16, 32, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: right 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0);
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }

    /* Když je menu otevřené */
    .nav-open .nav-links {
        right: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
        font-weight: 600;
    }
}

#bokun_24824278_55f8_4322_a3d0_95264a1f6632 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    border-radius: 999px;
    font-weight: 700;
    border: 1px solid transparent;
    transition: .2s ease;
    background: var(--gradient-main);
    color: #fff;
    box-shadow: 0 12px 32px rgba(255,62,165,.22);
}

    #bokun_24824278_55f8_4322_a3d0_95264a1f6632:hover {
        transform: translateY(-2px);
    }

    #bokun_24824278_55f8_4322_a3d0_95264a1f6632:active {
        transform: translateY(-2px);
    }

/* Úprava samotného obrázku loga */
.logo-img {
    height: 100px; /* Nastaví pevnou výšku (uprav podle potřeby) */
    width: auto; /* Šířka se dopočítá automaticky, aby se logo nedeformovalo */
    display: block; /* Odstraní drobné místo pod obrázkem */
    transition: transform 0.3s ease; /* Příprava pro efekt při najetí myší */
}

/* Úprava odkazu, ve kterém je logo (obal) */
.nav-brand {
    display: flex;
    align-items: center;
    padding: 5px 0;
}

    /* Efekt při najetí myší na logo (aby to ladilo s "dopaminovým" webem) */
    .nav-brand:hover .logo-img {
        transform: scale(1.05); /* Logo se lehce zvětší */
        filter: drop-shadow(0 0 10px var(--accent)); /* Přidá jemnou záři ve tvé fialové barvě */
    }

@media (max-width: 760px) {
    .logo-img {
        height: 32px; /* Na mobilu bude logo o něco menší */
    }
}
/* Kontejner pro galerii */
.gallery-container {
    width: 100%;
}

.photo-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 150px);
    gap: 12px;
}

.photo-item {
    border-radius: var(--radius); /* Použití tvé proměnné pro zaoblení */
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow); /* Použití tvé proměnné pro stín */
}

    .photo-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    /* Efekt při najetí myší */
    .photo-item:hover img {
        transform: scale(1.1);
    }

    /* První fotka bude velká přes dvě řady */
    .photo-item.large {
        grid-row: span 2;
    }

/* Responzivita pro mobil */
@media (max-width: 760px) {
    .photo-gallery {
        grid-template-rows: repeat(5, 180px); /* Na mobilu budou pod sebou */
        grid-template-columns: 1fr;
    }

    .photo-item.large {
        grid-row: span 1;
    }
}
/* Mapa */
.map-container {
    height: 400px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* Galerie */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 30px;
}

.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--radius);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .gallery-img:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(122,92,255,0.3);
    }

.koberec-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: var(--radius);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Lightbox Styl */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 16, 32, 0.95);
    backdrop-filter: blur(10px);
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80%;
    border-radius: 12px;
    box-shadow: 0 0 50px rgba(0,0,0,0.8);
}

.close, .prev, .next {
    position: absolute;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    user-select: none;
    transition: color 0.3s;
}

.close {
    top: 30px;
    right: 40px;
}

.prev {
    left: 30px;
}

.next {
    right: 30px;
}

.close:hover, .prev:hover, .next:hover {
    color: var(--accent);
}

map-container {
    border: 0;
    border-radius: 22px;
    filter: invert(90%) hue-rotate(180deg) brightness(95%);
}

/* Široká karta s fotkou uvnitř */
.card-wide {
    grid-column: span 2;
    display: flex;
    align-items: stretch; /* Zajistí, že obě poloviny jsou stejně vysoké */
    padding: 22px; /* Vrátíme standardní padding tvých karet */
    gap: 24px; /* Mezera mezi textem a fotkou */
    overflow: hidden;
    max-height: 500px;
}

/* Levá strana s textem */
.card-content {
    flex: 1.2; /* Text dostane o trochu více prostoru než fotka */
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px; /* Jemné odsazení uvnitř */
}

/* Pravá strana s fotkou */
.card-image {
    flex: 1; /* Fotka zabere zbytek místa */
    display: flex;
}

    .card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* Fotka vyplní prostor, ale nedeformuje se */
        border-radius: 16px; /* Zaoblení fotky, aby ladilo s kartou */
        display: block;
    }

/* Responzivita pro mobil */
@media (max-width: 760px) {
    .card-wide {
        grid-column: span 1;
        flex-direction: column;
        padding: 22px;
        max-height:100%;
    }

    .card-image {
        height: 200px; /* Na mobilu omezíme výšku fotky */
        order: -1; /* Fotka bude nad textem */
    }

    .card-content {
        padding: 0; /* Na mobilu nepotřebujeme extra vnitřní padding */
    }
}
