/* ══ FONTY (lokální) ═══════════════════════════════════════════════ */

/* CY — nadpisy (h1, h2, h3) */
@font-face {
    font-family: 'CY';
    src: url('../fonts/cy/Cy-Light.ttf') format('truetype');
    font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'CY';
    src: url('../fonts/cy/Cy-Regular.ttf') format('truetype');
    font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'CY';
    src: url('../fonts/cy/Cy-SemiLight.ttf') format('truetype');
    font-weight: 350; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'CY';
    src: url('../fonts/cy/Cy-SemiBold.ttf') format('truetype');
    font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'CY';
    src: url('../fonts/cy/Cy-Bold.ttf') format('truetype');
    font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'CY';
    src: url('../fonts/cy/Cy-Black.ttf') format('truetype');
    font-weight: 900; font-style: normal; font-display: swap;
}

/* DM Sans — podnadpisy (.section-label, .hero-eyebrow, nav, tagy) — načítá se přes Google Fonts v index.php */

/* ══ RESET & BASE ══════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --gold:    #c8963e;
    --gold-lt: #e8b86d;
    --dark:    #0f0f0f;
    --dark2:   #1a1a1a;
    --red:     #c0392b;
    --red-h:   #a93226;
    --white:   #ffffff;
    --gray:    #888;
    --light:   #f5f2ee;

    --font-body:     'Lora', Georgia, serif;
    --font-heading:  'CY', sans-serif;
    --font-sub:      'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--dark);
    line-height: 1.6;
}

/* Nadpisy → CY */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
}

/* ══ NAVBAR ════════════════════════════════════════════════════════ */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 40px;
    background: rgba(15,15,15,.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(200,150,62,.2);
}
.nav-logo {
    font-family: var(--font-heading);
    color: var(--gold);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: .02em;
}
.nav-btn {
    font-family: var(--font-sub);
    background: var(--red);
    color: #fff;
    text-decoration: none;
    padding: 9px 22px;
    border-radius: 8px;
    font-size: .75rem;
    font-weight: 500;
    letter-spacing: .06em;
    text-transform: uppercase;
    transition: background .2s;
}
.nav-btn:hover { background: var(--red-h); }

/* ══ HERO ══════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--dark);
    overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0;
    background: url('../img/korunovacni_klenoty_karla_IV_3.webp') center/cover no-repeat;
    background-color: #010102;
    opacity: 1.00;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(15,15,15,.60) 45%, rgba(15,15,15,.0) 100%);
}
.hero-content {
    position: relative; z-index: 2;
    max-width: 1100px; margin: 0 auto; padding: 120px 40px 80px;
    width: 100%;
}
.hero-eyebrow {
    font-family: var(--font-sub);
    color: var(--gold);
    font-size: .75rem;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.6rem, 6vw, 4.2rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
    max-width: 560px;
}
.hero h1 em {
    color: var(--gold);
    font-style: normal;
}
.hero-sub {
    font-family: var(--font-body);
    color: rgba(255,255,255,.75);
    font-size: 1.05rem;
    max-width: 440px;
    margin-bottom: 36px;
    line-height: 1.65;
}
.hero-date {
    font-family: var(--font-sub);
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--gold-lt);
    font-size: .85rem;
    font-weight: 500;
    margin-bottom: 32px;
    letter-spacing: .05em;
}
.hero-date svg { opacity: .7; }

.btn-primary {
    font-family: var(--font-sub);
    display: inline-block;
    background: var(--red);
    color: #fff;
    text-decoration: none;
    padding: 16px 36px;
    border-radius: 8px;
    font-size: .8rem;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: background .2s, transform .15s;
    box-shadow: 0 4px 20px rgba(192,57,43,.4);
}
.btn-primary:hover { background: var(--red-h); transform: translateY(-2px); }

/* ══ SEKCE OBECNĚ ══════════════════════════════════════════════════ */
.section { padding: 80px 40px; max-width: 1100px; margin: 0 auto; }
.section-full { padding: 80px 40px; }

.section-label {
    font-family: var(--font-sub);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
}
.section-lead {
    font-family: var(--font-body);
    color: #555;
    font-size: 1rem;
    max-width: 560px;
    line-height: 1.75;
}

/* ══ PRO MILOVNÍKY HISTORIE ════════════════════════════════════════ */
.history-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.history-text p {
    font-family: var(--font-body);
    color: #444;
    font-size: .85rem;
    line-height: 1.65;
    margin-bottom: 16px !important;
}
.history-text p:last-of-type { margin-bottom: 0; }

.curator-box {
    background: var(--light);
    border-left: 3px solid var(--gold);
    padding: 20px 24px;
    border-radius: 0 6px 6px 0;
    margin-top: 28px;
}
.curator-quote {
    font-family: var(--font-body);
    font-size: .88rem;
    font-style: italic;
    color: #444;
    line-height: 1.75;
    margin-bottom: 14px;
}
.curator-meta { display: flex; align-items: center; gap: 12px; }
.curator-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--gold);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-family: var(--font-heading); font-weight: 700;
    font-size: .9rem; flex-shrink: 0;
}
.curator-name  { font-family: var(--font-sub); font-size: .82rem; font-weight: 600; }
.curator-title { font-family: var(--font-sub); font-size: .74rem; color: var(--gray); margin-top: 2px; }

.history-img { border-radius: 6px; overflow: hidden; }
.history-img img { width: 100%; display: block; }

/* ══ CO NA VÝSTAVĚ ZAŽIJETE ════════════════════════════════════════ */
.experience-section { background: var(--dark); padding: 80px 0; }
.experience-inner { max-width: 1100px; margin: 0 auto; padding: 0 40px; }
.experience-inner .section-title { color: var(--white); text-align: center; margin-bottom: 40px; }

.exp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 24px;
}
.exp-card { position: relative; overflow: hidden; }
.exp-card.large { grid-row: span 2; }
.exp-img {
    width: 100%; height: 100%; min-height: 220px;
    object-fit: cover; display: block;
    transition: transform .4s;
}
.exp-card.large .exp-img { min-height: 460px; }
.exp-card:hover .exp-img { transform: scale(1.04); }
.exp-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,.82));
    padding: 32px 24px 24px; color: #fff;
}
.exp-overlay h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 6px;
}
.exp-overlay p {
    font-family: var(--font-body);
    font-size: .83rem; opacity: .8; line-height: 1.55;
}

/* ══ CTA BANNER ════════════════════════════════════════════════════ */
.cta-banner {
    background: var(--dark2);
    border-top: 1px solid rgba(200,150,62,.25);
    border-bottom: 1px solid rgba(200,150,62,.25);
    padding: 70px 40px;
    text-align: center;
    position: relative; overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute; inset: 0;
    opacity: .15;
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-date-line {
    /*font-family: var(--font-heading);*/
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}
.cta-date-line span { color: var(--gold); }
.cta-sub {
    font-family: var(--font-body);
    color: rgba(255,255,255,.65);
    font-size: .95rem;
    margin-bottom: 32px;
}

/* ══ PROČ PŘIJET ════════════════════════════════════════════════════ */
.reasons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    margin-top: 48px;
}
.reason-card img {
    width: 100%; border-radius: 6px;
    aspect-ratio: 4/3; object-fit: cover;
    margin-bottom: 16px;
}
.reason-card h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.reason-card p {
    font-family: var(--font-body);
    font-size: .88rem; color: #555; line-height: 1.7;
}

/* ══ CENY VSTUPENEK ════════════════════════════════════════════════ */
.pricing-bar {
    background: var(--light);
    padding: 56px 40px;
    text-align: center;
}
.pricing-bar h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 32px;
}

/* Grid tří platných karet – stejná výška na všech zařízeních */
.price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 780px;
    margin: 0 auto;
}
.price-card {
    background: #fff;
    border-radius: 10px;
    padding: 28px 20px 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,.08);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.price-card__amount {
    font-family: var(--font-body);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--red);
    line-height: 1;
}
.price-card__amount span {
    font-size: .95rem;
    font-family: var(--font-sub);
    font-weight: 500;
}
.price-card__type {
    font-family: var(--font-sub);
    font-size: .88rem;
    font-weight: 700;
    margin-top: 10px;
    color: var(--dark);
}
.price-card__unit {
    font-family: var(--font-sub);
    font-size: .72rem;
    color: var(--gray);
    margin-top: 4px;
    line-height: 1.55;
    letter-spacing: .03em;
}

/* Volné vstupenky – jednoduchý strip pod kartami */
.price-free {
    display: flex;
    gap: 12px 32px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
    padding: 16px 24px;
    background: #fff;
    border-radius: 10px;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.price-free__item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sub);
    font-size: .83rem;
    color: #444;
}
.price-free__item svg {
    flex-shrink: 0;
    color: #16a34a;
}

.price-note {
    font-family: var(--font-sub);
    font-size: .76rem;
    color: rgba(0,0,0,.4);
    max-width: 560px;
    margin: 16px auto 0;
    line-height: 1.6;
}

/* ══ PRAKTICKÉ INFO ════════════════════════════════════════════════ */
.practical-section {
    padding: 80px 40px;
    background-size: auto 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #010102;
}
.practical-inner {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
}
.practical-left .section-title { color: var(--white); }
.practical-left > p {
    font-family: var(--font-body);
    color: rgba(255,255,255,.65);
    font-size: .95rem;
}

.practical-tags { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
.ptag {
    font-family: var(--font-sub);
    display: flex; align-items: center; gap: 12px;
    color: rgba(255,255,255,.8);
    font-size: .88rem;
    font-weight: 400;
}
.ptag-icon {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--red);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

/* ══ NAVIGACE / PARKOVÁNÍ ══════════════════════════════════════════ */
.transport-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    padding: 60px 40px;
    max-width: 1100px; margin: 0 auto;
}
.transport-card h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.transport-card p {
    font-family: var(--font-body);
    font-size: .88rem; color: #555; line-height: 1.7;
    margin-bottom: 16px;
}
.transport-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 4px;
    padding: 10px 20px;
    background: var(--dark);
    color: #fff;
    text-decoration: none;
    border-radius: 7px;
    font-family: var(--font-sub);
    font-size: .75rem;
    font-weight: 500;
    letter-spacing: .06em;
    text-transform: uppercase;
    transition: background .2s, transform .15s;
}
.transport-btn:hover { background: var(--red); transform: translateY(-2px); }
.img-placeholder {
    background: linear-gradient(135deg, #e8e4dc, #d8d4cc);
    display: flex; align-items: center; justify-content: center;
    color: #aaa; font-family: var(--font-sub);
    font-size: .72rem; letter-spacing: .08em; text-transform: uppercase;
}

/* ══ RESPONSIVE ════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .nav { padding: 14px 20px; }
    .hero-content { padding: 100px 20px 60px; }
    .section { padding: 60px 20px; }
    .history-grid  { grid-template-columns: 1fr; gap: 36px; }
    .history-img   { order: -1; }
    .exp-grid      { grid-template-columns: 1fr; }
    .exp-card.large { grid-row: span 1; }
    .reasons-grid  { grid-template-columns: 1fr; }
    .practical-inner { grid-template-columns: 1fr; gap: 40px; }
    .transport-grid  { grid-template-columns: 1fr; padding: 40px 20px; }
    .cta-banner    { padding: 60px 20px; }
    .practical-section { padding: 60px 20px; }
    .pricing-bar { padding: 48px 20px; }
    .price-grid  { grid-template-columns: 1fr; }
    .price-free  { flex-direction: column; gap: 10px; }
}
