/* ================================================================
   style.css — hlavní stylesheet Erangelino
   Všechny styly vytažené z PHP boxů + globální layout
   ================================================================ */

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

:root {
    --navy-deepest: #0D1B2E;
    --navy-deep:    #162840;
    --navy-dark:    #1A3050;
    --navy-mid:     #1E3D5C;
    --navy-base:    #264E70;
    --sky:          #5AAEE0;
    --sky-soft:     #85C8F0;
    --sky-pale:     #B8DFF8;
    --cream:        #F5EDD8;
    --cream-dim:    #D8C89C;
    --cream-faint:  #EDD9B0;
    --gold:         #D4A832;
    --gold-light:   #ECC84A;
    --gold-pale:    #F5DC88;
    --white:        #FEFBF4;
    --font-h: 'Cormorant Garamond', Georgia, serif;
    --font-b: 'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-b);
    background: var(--navy-deepest);
    color: var(--cream);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
}

/* ── NAV ─────────────────────────────────────────────────────── */
.site-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 200;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1rem 5vw;
    background: rgba(7,20,40,.92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(212,168,50,.25);
}
.nav-logo { text-decoration: none; }
.nav-logo-main { font-family: var(--font-h); font-size: 1.5rem; font-weight: 400; letter-spacing: .06em; color: var(--white); display: block; line-height: 1; }
.nav-logo-sub  { font-family: var(--font-b); font-size: .68rem; font-weight: 300; letter-spacing: .25em; text-transform: uppercase; color: var(--sky-soft); margin-top: 2px; display: block; }
.nav-links { display: flex; gap: 2.2rem; list-style: none; }
.nav-links a { color: var(--cream-dim); text-decoration: none; font-size: .87rem; font-weight: 300; letter-spacing: .04em; transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold-light); }
.nav-right { display: flex; align-items: center; gap: 1rem; }
.lang-sw { display: flex; align-items: center; gap: 2px; }
.lang-sw a { color: var(--cream-dim); text-decoration: none; font-family: var(--font-b); font-size: .78rem; font-weight: 400; letter-spacing: .08em; text-transform: uppercase; padding: .25rem .5rem; border-radius: 2px; transition: color .2s, background .2s; }
.lang-sw a.active { color: var(--gold); background: rgba(212,168,50,.1); }
.lang-sw a:hover:not(.active) { color: var(--cream); }
.lang-sep { width: 1px; height: 12px; background: rgba(212,168,50,.3); }
.nav-cta { background: var(--gold); color: var(--navy-deep); font-family: var(--font-b); font-size: .82rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; padding: .55rem 1.5rem; border: none; border-radius: 1px; cursor: pointer; text-decoration: none; transition: background .2s; display: inline-block; white-space: nowrap; }
.nav-cta:hover { background: var(--gold-light); }

/* hamburger */
.nav-toggle { display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px; width: 38px; height: 38px; background: none; border: 1px solid rgba(212,168,50,.22); border-radius: 2px; cursor: pointer; padding: 0; flex-shrink: 0; }
.nav-toggle span { display: block; width: 18px; height: 1.5px; background: var(--cream); border-radius: 2px; transition: transform .3s ease, opacity .3s ease; transform-origin: center; }
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* drawer */
.nav-drawer { position: fixed; inset: 0; z-index: 190; background: rgba(5,14,28,.98); backdrop-filter: blur(24px); display: flex; flex-direction: column; align-items: center; justify-content: center; transform: translateX(100%); transition: transform .38s cubic-bezier(.4,0,.2,1); }
.nav-drawer.open { transform: translateX(0); }
.nav-drawer a.drawer-link { display: block; font-family: var(--font-h); font-size: clamp(2rem,8vw,2.8rem); font-weight: 300; letter-spacing: .06em; color: var(--white); text-decoration: none; padding: .55rem 2rem; text-align: center; transition: color .2s; }
.nav-drawer a.drawer-link:hover { color: var(--gold-light); }
.drawer-divider { width: 40px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); margin: 1.4rem 0; opacity: .35; }
.drawer-cta { margin-top: 1.8rem; background: var(--gold); color: var(--navy-deep); font-family: var(--font-b); font-size: .9rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; padding: .9rem 2.5rem; border: none; border-radius: 1px; cursor: pointer; text-decoration: none; display: inline-block; }
.drawer-lang { margin-top: 2rem; display: flex; align-items: center; gap: 4px; }
.drawer-lang a { color: var(--cream-dim); text-decoration: none; font-family: var(--font-b); font-size: .85rem; font-weight: 400; letter-spacing: .1em; text-transform: uppercase; padding: .3rem .7rem; border-radius: 2px; transition: color .2s, background .2s; }
.drawer-lang a.active { color: var(--gold); background: rgba(212,168,50,.1); }
.drawer-lang-sep { width: 1px; height: 14px; background: rgba(212,168,50,.3); }

/* ── HERO ─────────────────────────────────────────────────────── */
.hero { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 8rem 5vw 6rem; position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 90% 60% at 50% 100%, #1E3D5C 0%, transparent 65%), linear-gradient(180deg, #162840 0%, #1A3050 100%); }
.hero-shaft { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 300px; height: 70%; background: linear-gradient(180deg, rgba(90,174,224,.07) 0%, rgba(212,168,50,.04) 60%, transparent 100%); filter: blur(48px); pointer-events: none; }
.hero-bubbles { position: absolute; inset: 0; pointer-events: none; }
.bubble { position: absolute; bottom: -80px; border-radius: 50%; border: 1px solid rgba(90,174,224,.28); background: radial-gradient(circle at 32% 32%, rgba(168,216,240,.18), rgba(90,174,224,.03)); animation: bubble-rise linear infinite; }
@keyframes bubble-rise { 0%{transform:translateY(0) translateX(0);opacity:0} 8%{opacity:.9} 50%{transform:translateY(-50vh) translateX(10px)} 92%{opacity:.25} 100%{transform:translateY(-115vh) translateX(-6px);opacity:0} }
.hero-content { position: relative; }
.hero-tag { font-family: var(--font-b); font-size: .73rem; font-weight: 400; letter-spacing: .3em; text-transform: uppercase; color: var(--gold-light); display: inline-flex; align-items: center; gap: 1rem; margin-bottom: 2.5rem; }
.hero-tag-line { display: block; width: 32px; height: 1px; background: var(--gold); opacity: .7; }
.hero h1 { font-family: var(--font-h); font-size: clamp(4.5rem,11vw,9rem); font-weight: 300; line-height: .88; letter-spacing: .04em; color: var(--white); margin-bottom: .5rem; }
.hero-subtitle { font-family: var(--font-h); font-size: clamp(1rem,2.5vw,1.6rem); font-weight: 300; font-style: italic; color: var(--sky-pale); letter-spacing: .06em; margin-bottom: 2rem; }
.hero-ornament { display: flex; align-items: center; gap: 1rem; justify-content: center; margin: 1.8rem auto; }
.orn-line { display: block; width: 56px; height: 1px; background: var(--gold); opacity: .65; }
.orn-diamond { display: block; width: 8px; height: 8px; background: var(--gold); opacity: .9; transform: rotate(45deg); }
.hero-sub { font-size: 1.02rem; font-weight: 300; color: var(--cream-faint); max-width: 480px; margin: 0 auto 3rem; line-height: 1.9; }
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 5px; font-size: .68rem; font-weight: 300; letter-spacing: .25em; text-transform: uppercase; color: var(--gold); opacity: .35; animation: bob 2.5s ease-in-out infinite; }
.scroll-line { display: block; width: 1px; height: 34px; background: linear-gradient(180deg, var(--gold), transparent); }
@keyframes bob { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

/* ── BANNER (podstránky) ──────────────────────────────────────── */
.page-banner { padding: 9rem 5vw 3rem; background: var(--navy-mid); border-bottom: 1px solid rgba(212,168,50,.18); }
.page-banner-title { font-family: var(--font-h); font-size: clamp(2.5rem,6vw,4.5rem); font-weight: 300; color: var(--white); line-height: 1; }

/* ── BREADCRUMBS ─────────────────────────────────────────────── */
.breadcrumbs { padding: 1rem 5vw; background: var(--navy-mid); border-bottom: 1px solid rgba(212,168,50,.12); font-size: .8rem; font-weight: 300; color: var(--cream-dim); }
.breadcrumbs-inner { display: flex; align-items: center; gap: .3rem; flex-wrap: wrap; }
.breadcrumbs a { color: var(--sky-soft); text-decoration: none; transition: color .2s; }
.breadcrumbs a:hover { color: var(--sky-pale); }
.bc-sep { opacity: .4; margin: 0 .5rem; }
.bc-current { color: var(--gold-light); opacity: 1; font-weight: 400; }

/* ── SEKCE SPOLEČNÉ ──────────────────────────────────────────── */
section { padding: 6.5rem 5vw; }
.eyebrow { font-family: var(--font-b); font-size: .73rem; font-weight: 400; letter-spacing: .28em; text-transform: uppercase; color: var(--gold-light); display: block; margin-bottom: .9rem; opacity: 1; }
.stitle { font-family: var(--font-h); font-size: clamp(2rem,3.8vw,3.2rem); font-weight: 300; line-height: 1.12; color: var(--white); margin-bottom: 1.2rem; }
.stitle em { font-style: italic; color: var(--gold-light); }
.sdiv { width: 48px; height: 1px; background: linear-gradient(90deg, var(--gold), transparent); margin: 1.4rem 0; opacity: .85; }
.slead { font-size: .97rem; font-weight: 300; color: var(--cream-faint); line-height: 1.9; }

/* buttons */
.btn-gold { background: var(--gold); color: var(--navy-deep); font-family: var(--font-b); font-size: .86rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; padding: 1rem 2.8rem; border: none; border-radius: 1px; cursor: pointer; text-decoration: none; display: inline-block; transition: background .2s, transform .15s; }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--cream-faint); font-family: var(--font-b); font-size: .86rem; font-weight: 300; letter-spacing: .1em; text-transform: uppercase; padding: 1rem 2.8rem; border: 1px solid rgba(240,232,208,.22); border-radius: 1px; cursor: pointer; text-decoration: none; display: inline-block; transition: border-color .2s; }
.btn-outline:hover { border-color: var(--cream); }

/* ── O SLUŽBĚ ────────────────────────────────────────────────── */
.intro { background: var(--navy-deep); border-top: 1px solid rgba(212,168,50,.2); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; max-width: 1120px; margin: 0 auto; }
.benefits-list { list-style: none; margin-top: 2rem; }
.benefits-list li { display: flex; align-items: flex-start; gap: 1rem; padding: .85rem 0; border-bottom: 1px solid rgba(212,168,50,.15); font-size: .94rem; font-weight: 300; color: var(--cream-faint); line-height: 1.55; }
.benefits-list li:last-child { border-bottom: none; }
.benefit-dot { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; border-radius: 50%; border: 1px solid var(--gold); background: rgba(212,168,50,.1); position: relative; display: block; }
.benefit-dot::after { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 6px; height: 6px; border-radius: 50%; background: var(--gold); display: block; }

.chamber-card { background: var(--navy-mid); border: 1px solid rgba(212,168,50,.3); border-radius: 2px; padding: 2.8rem; position: relative; overflow: hidden; }
.chamber-card::before { content: ''; position: absolute; bottom: -60px; right: -60px; width: 200px; height: 200px; border-radius: 50%; background: radial-gradient(circle, rgba(42,127,184,.18) 0%, transparent 70%); pointer-events: none; }
.chamber-big { font-family: var(--font-h); font-size: 5.5rem; font-weight: 300; line-height: 1; color: var(--gold-light); }
.chamber-big small { font-size: 2.2rem; }
.chamber-lbl { font-size: .72rem; font-weight: 300; letter-spacing: .22em; text-transform: uppercase; color: var(--sky-pale); opacity: .5; margin: .4rem 0 2rem; }
.chamber-text { font-size: .9rem; font-weight: 300; color: var(--cream-faint); line-height: 1.8; }
.chamber-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(90,174,224,.1); }
.chamber-stat-num { font-family: var(--font-h); font-size: 2rem; font-weight: 300; color: var(--gold-light); line-height: 1; }
.chamber-stat-lbl { font-size: .7rem; font-weight: 300; letter-spacing: .15em; text-transform: uppercase; color: var(--sky-pale); opacity: .4; }

/* ── JAK FUNGUJE ─────────────────────────────────────────────── */
.how { background: #0A1624; border-top: 1px solid rgba(212,168,50,.18); border-bottom: 1px solid rgba(212,168,50,.18); }
.how-head { text-align: center; max-width: 580px; margin: 0 auto 4.5rem; }
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; max-width: 1100px; margin: 0 auto; border: 1px solid rgba(90,174,224,.1); border-radius: 2px; overflow: hidden; }
.step-item { padding: 2.2rem 2rem; border-right: 1px solid rgba(90,174,224,.1); }
.step-item:last-child { border-right: none; }
.step-num-big { font-family: var(--font-h); font-size: 3.5rem; font-weight: 300; font-style: italic; color: rgba(90,174,224,.12); line-height: 1; margin-bottom: 1.2rem; }
.step-title { font-family: var(--font-h); font-size: 1.25rem; font-weight: 400; color: var(--white); margin-bottom: .6rem; }
.step-text { font-size: .85rem; font-weight: 300; color: var(--cream-dim); line-height: 1.7; }

/* ── CENÍK ───────────────────────────────────────────────────── */
.cenik { background: var(--navy-deep); border-top: 1px solid rgba(212,168,50,.18); }
.cenik-head { text-align: center; max-width: 560px; margin: 0 auto 4.5rem; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 1px; max-width: 1060px; margin: 0 auto; background: rgba(212,168,50,.15); border: 1px solid rgba(212,168,50,.2); border-radius: 2px; overflow: hidden; }
.plan-item { padding: 2.2rem 2rem; position: relative; background: var(--navy-deep); }
.plan-item.best { background: var(--navy-mid); border-top: 2px solid var(--gold); }
.plan-lbl { font-size: .7rem; font-weight: 300; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-light); margin-bottom: .5rem; }
.plan-name { font-family: var(--font-h); font-size: 1.5rem; font-weight: 400; color: var(--white); margin-bottom: .9rem; }
.plan-price { font-family: var(--font-h); font-size: 3rem; font-weight: 300; line-height: 1; color: var(--gold-light); margin-bottom: .25rem; }
.plan-price span { font-family: var(--font-b); font-size: 1rem; font-weight: 300; }
.plan-saving { font-size: .78rem; font-weight: 300; color: var(--cream-dim); margin-bottom: 1.5rem; }
.plan-list { list-style: none; }
.plan-list li { font-size: .84rem; font-weight: 300; color: var(--cream-dim); line-height: 2.1; border-bottom: 1px solid rgba(212,168,50,.06); }
.plan-list li:last-child { border-bottom: none; }
.plan-list li::before { content: '— '; color: var(--gold); opacity: .7; }
.plan-badge { display: inline-block; background: var(--gold); color: var(--navy-deep); font-size: .68rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; padding: .22rem .8rem; border-radius: 1px; margin-top: 1rem; }
.cenik-note { text-align: center; margin-top: 2.2rem; font-size: .8rem; font-weight: 300; color: var(--cream-dim); opacity: .5; }

/* ── REZERVACE ───────────────────────────────────────────────── */
.rezervace { background: var(--navy-mid); border-top: 1px solid rgba(212,168,50,.09); text-align: center; }
.rezervace-inner { max-width: 620px; margin: 0 auto; }

/* ── KONTAKT ─────────────────────────────────────────────────── */
.kontakt { background: var(--navy-deep); border-top: 1px solid rgba(212,168,50,.08); }
.kontakt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; max-width: 1000px; margin: 0 auto; align-items: start; }
.kontakt-row { margin-bottom: 1.6rem; }
.kontakt-row-lbl { font-size: .7rem; font-weight: 300; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); opacity: .6; margin-bottom: .3rem; }
.kontakt-row-val { font-size: .94rem; font-weight: 300; color: var(--cream-faint); line-height: 1.7; }
.kontakt-row-val a { color: var(--sky-pale); text-decoration: none; }
.map-frame { border: 1px solid rgba(90,174,224,.12); border-radius: 2px; height: 300px; overflow: hidden; }
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ── NOVINKY ─────────────────────────────────────────────────── */
.news-section-clean { background: var(--navy-deepest); padding: 6.5rem 5vw; border-top: 1px solid rgba(212,168,50,.12); }
.container { max-width: 1100px; margin: 0 auto; }
.section-intro-news { text-align: center; margin-bottom: 3.5rem; }
.intro-label { font-family: var(--font-b); font-size: .73rem; font-weight: 400; letter-spacing: .28em; text-transform: uppercase; color: var(--gold-light); opacity: 1; margin-bottom: .9rem; }
.intro-title { font-family: var(--font-h); font-size: clamp(2rem,3.8vw,3.2rem); font-weight: 300; color: var(--white); line-height: 1.12; margin-bottom: 1.2rem; }
.intro-line { width: 48px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); margin: 0 auto; opacity: .8; }
.news-feed { max-width: 820px; margin: 0 auto; }
.feed-item { display: flex; align-items: flex-start; gap: 2rem; padding: 2rem 0; border-bottom: 1px solid rgba(212,168,50,.08); }
.feed-item:last-child { border-bottom: none; }
.feed-img { flex: 0 0 200px; height: 130px; overflow: hidden; border-radius: 2px; }
.feed-img img { width: 100%; height: 100%; object-fit: cover; transition: opacity .3s, transform .3s; }
.feed-img img:hover { opacity: .85; transform: scale(1.03); }
.feed-content { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.feed-title { font-family: var(--font-h); font-size: 1.35rem; font-weight: 400; line-height: 1.3; margin-bottom: .7rem; color: var(--white); }
.feed-title a { color: var(--white); text-decoration: none; transition: color .2s; }
.feed-title a:hover { color: var(--gold-light); }
.feed-meta { font-size: .75rem; font-weight: 300; color: var(--cream-dim); opacity: .55; letter-spacing: .05em; }
.feed-sep { margin: 0 .4rem; opacity: .4; }
.feed-author { color: var(--sky-soft); opacity: .7; }

/* ── CONTENT (wysiwyg stránky) ───────────────────────────────── */
.content-page { max-width: 900px; margin: 0 auto; padding: 6.5rem 5vw; }

/* ── COOKIE ──────────────────────────────────────────────────── */
#cookie-bar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 300; background: rgba(22,40,64,.98); border-top: 1px solid rgba(212,168,50,.35); padding: 1rem 5vw; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.cookie-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; width: 100%; }
.cookie-text { font-size: .85rem; font-weight: 300; color: var(--cream-dim); flex: 1; min-width: 200px; }
.cookie-text a { color: var(--sky-soft); }
.cookie-btn-ok { background: var(--gold); color: var(--navy-deep); font-family: var(--font-b); font-size: .8rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; padding: .5rem 1.4rem; border: none; border-radius: 1px; cursor: pointer; white-space: nowrap; }

/* ── FOOTER ──────────────────────────────────────────────────── */
footer { background: #080F1A; padding: 2.2rem 5vw; border-top: 1px solid rgba(212,168,50,.1); }
.footer-inner { max-width: 1100px; margin: 0 auto; width: 100%; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.f-logo { font-family: var(--font-h); font-size: 1.15rem; font-weight: 300; color: var(--cream); }
.f-logo em { font-style: italic; color: var(--gold); }
.footer-links { font-size: .78rem; font-weight: 300; color: var(--cream-dim); opacity: .45; }
.footer-links a { color: inherit; text-decoration: none; }
.footer-links a:hover { opacity: 1; }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 900px) {
    .steps-grid { grid-template-columns: 1fr 1fr; }
    .step-item { border-right: none; border-bottom: 1px solid rgba(90,174,224,.1); }
    .step-item:nth-child(odd) { border-right: 1px solid rgba(90,174,224,.1); }
    .step-item:nth-child(3),
    .step-item:nth-child(4) { border-bottom: none; }
}

@media (max-width: 768px) {
    .nav-links, .nav-cta, .lang-sw { display: none; }
    .nav-toggle { display: flex; }
    .about-grid, .kontakt-grid { grid-template-columns: 1fr; gap: 3rem; }
    .steps-grid { grid-template-columns: 1fr; }
    .step-item { border-right: none !important; }
    .step-item:nth-child(3) { border-bottom: 1px solid rgba(90,174,224,.1); }
    section { padding: 4rem 5vw; }
    .hero-cta { flex-direction: column; align-items: center; }
    .feed-item { flex-direction: column; gap: 1rem; }
    .feed-img { flex: 0 0 auto; width: 100%; height: 200px; }
    .news-section-clean { padding: 4rem 5vw; }
}

@media (max-width: 480px) {
    .kontakt-grid { gap: 2rem; }
    img { max-width: 100%; height: auto; }
}
