/* ============================================================
   KRIZOVÁ INTERVENCE HK – style.css
   Moderní, responzivní jednostránkový web
   ============================================================ */

:root {
    /* Primární paleta – zachovány původní modré tóny + nové odstíny */
    --primary:        #0A4D68;
    --primary-dark:   #073a50;
    --primary-light:  #1a6b8a;
    --secondary:      #088395;
    --secondary-light:#0aa3b8;
    --accent:         #05BFDB;
    --accent-soft:    #c8f0f7;

    /* Neutrály */
    --bg-white:       #FFFFFF;
    --bg-light:       #F0F7F8;
    --bg-mid:         #e4f2f5;
    --text-dark:      #1a2e38;
    --text-mid:       #4a6572;
    --text-light:     #FFFFFF;
    --border:         #cce6ec;

    /* Danger */
    --danger:         #c0392b;

    /* Typografie */
    --font:           'Montserrat', sans-serif;

    /* Spacing */
    --section-pad:    90px;
    --radius:         12px;
    --radius-lg:      20px;
    --shadow-sm:      0 2px 12px rgba(10,77,104,0.08);
    --shadow-md:      0 6px 30px rgba(10,77,104,0.12);
    --shadow-lg:      0 12px 50px rgba(10,77,104,0.16);

    /* Transitions */
    --transition:     0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    color: var(--text-dark);
    line-height: 1.75;
    background-color: var(--bg-white);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1 {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--primary);
}

h2 {
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    font-weight: 700;
    color: var(--primary);
    line-height: 1.25;
}

h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    font-weight: 600;
    color: var(--primary);
    line-height: 1.35;
}

h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
}

/* ============================================================
   SECTION HEADER (reusable)
   ============================================================ */
.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--secondary);
    background: var(--accent-soft);
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-mid);
    margin-top: 10px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

section {
    padding: var(--section-pad) 0;
}

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
    transition: box-shadow var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    gap: 16px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.88rem;
    flex-shrink: 0;
    white-space: nowrap;
}

.logo img {
    height: 38px;
    width: auto;
}

/* Nav */
.main-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2px;
    flex-wrap: nowrap;
}

.main-nav a {
    display: inline-block;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.8rem;
    padding: 6px 8px;
    border-radius: 8px;
    white-space: nowrap;
    transition: color var(--transition), background var(--transition);
}

.main-nav a:hover {
    color: var(--secondary);
    background: var(--bg-light);
}

.main-nav a.cta-button {
    background: var(--secondary);
    color: #fff;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: 50px;
    margin-left: 4px;
    white-space: nowrap;
}

.main-nav a.cta-button:hover {
    background: var(--primary);
    color: #fff;
}

/* Hamburger */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: 8px;
    transition: background var(--transition);
}

.mobile-nav-toggle:hover { background: var(--bg-light); }

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

.mobile-nav-toggle.open .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.mobile-nav-toggle.open .hamburger-line:nth-child(2) {
    opacity: 0;
}
.mobile-nav-toggle.open .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 45%, var(--secondary) 100%);
    overflow: hidden;
    padding-top: 72px;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 70% at 80% 40%, rgba(5,191,219,0.18) 0%, transparent 70%),
        radial-gradient(ellipse 40% 50% at 10% 80%, rgba(255,255,255,0.05) 0%, transparent 60%);
    pointer-events: none;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 60px 24px;
    max-width: 800px;
}

.hero-location {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
}

.hero-section h1 {
    color: #fff;
    margin-bottom: 24px;
}

.hero-highlight {
    color: var(--accent);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.85);
    max-width: 520px;
    margin-bottom: 40px;
    font-weight: 400;
}

.cta-button-main {
    display: inline-block;
    background: #fff;
    color: var(--primary);
    font-weight: 700;
    font-size: 1rem;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
    margin-bottom: 40px;
}

.cta-button-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.25);
    background: var(--accent-soft);
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.badge {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 7px 18px;
    border-radius: 50px;
    backdrop-filter: blur(4px);
}

/* ============================================================
   SLOVO ÚVODEM
   ============================================================ */
.uvod-section {
    background: var(--bg-white);
}

.uvod-content {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 60px;
    align-items: start;
}

.uvod-text p {
    font-size: 1.12rem;
    color: var(--text-mid);
    line-height: 1.85;
    text-align: justify;
}

.uvod-text p strong {
    color: var(--primary);
}

.uvod-quote {
    position: sticky;
    top: 100px;
}

.uvod-quote blockquote {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #fff;
    padding: 36px 32px;
    border-radius: var(--radius-lg);
    font-size: 1.1rem;
    font-style: italic;
    font-weight: 500;
    line-height: 1.6;
    position: relative;
    box-shadow: var(--shadow-md);
}

.uvod-quote blockquote::before {
    content: '"';
    font-size: 5rem;
    line-height: 1;
    color: rgba(255,255,255,0.2);
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: Georgia, serif;
}

/* ============================================================
   CO JE KRIZOVÁ INTERVENCE
   ============================================================ */
.co-je-section {
    background: var(--bg-light);
}

.co-je-intro-box {
    background: #fff;
    border-left: 4px solid var(--secondary);
    border-radius: var(--radius);
    padding: 28px 32px;
    margin-bottom: 48px;
    box-shadow: var(--shadow-sm);
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.co-je-intro-box p {
    font-size: 1.02rem;
    color: var(--text-mid);
    margin: 0;
    line-height: 1.8;
    text-align: justify;
}

.co-je-intro-box strong {
    color: var(--primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.feature-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 28px 24px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
    border-top: 3px solid transparent;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-top-color: var(--secondary);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 14px;
    line-height: 1;
}

.feature-card h3 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-mid);
    margin: 0;
    line-height: 1.65;
}

.co-je-note {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #fff;
    text-align: center;
    padding: 24px 32px;
    border-radius: var(--radius);
    max-width: 720px;
    margin: 0 auto;
    font-size: 0.95rem;
    line-height: 1.7;
    box-shadow: var(--shadow-md);
}

.co-je-note strong {
    color: var(--accent);
}

/* ============================================================
   MOJE CESTA – TIMELINE
   ============================================================ */
.moje-cesta-section {
    background: var(--bg-white);
}

.moje-cesta-text.center-this-part{
    text-align: center;
}

.moje-cesta-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 780px;
    margin: 0 auto 56px;
}

.moje-cesta-text {
    text-align: left;
}

.moje-cesta-text h2 {
    margin-top: 10px;
    margin-bottom: 12px;
}

.moje-cesta-subtitle {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    max-width: 520px;
    text-align: left;
}

.moje-cesta-photo-wrap {
    display: flex;
    justify-content: flex-end;
}

.moje-cesta-photo {
    width: 100%;
    max-width: 360px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}

.timeline {
    position: relative;
    max-width: 860px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 110px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent-soft), var(--secondary), var(--accent-soft));
}

.timeline-item {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.timeline-item:last-child { margin-bottom: 0; }

.timeline-marker {
    flex-shrink: 0;
    width: 110px;
    text-align: right;
    padding-top: 4px;
}

.timeline-year {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 50px;
    line-height: 1.3;
    text-align: center;
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
}

.timeline-content {
    flex: 1;
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 28px 32px;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: box-shadow var(--transition);
}

/*.timeline-content::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 18px;
    width: 10px;
    height: 2px;
    background: var(--secondary);
}*/

.timeline-content:hover {
    box-shadow: var(--shadow-md);
}

.timeline-content h3 {
    margin-bottom: 10px;
    color: var(--primary);
}

.timeline-content p {
    font-size: 0.99rem;
    color: #000000;
    margin: 0;
    text-align: justify;
}

.education-degrees {
    margin-top: 12px !important;
    font-size: 0.9rem;
    color: var(--text-mid);
}

/* ============================================================
   CENA
   ============================================================ */
.cena-section {
    background: var(--bg-light);
}

.cena-content {
    display: flex;
    justify-content: center;
}

.cena-box {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    max-width: 560px;
    width: 100%;
}

.cena-box-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 28px 36px;
    text-align: center;
}

.cena-box-header h3 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
}

.cena-box-body {
    padding: 36px;
    text-align: center;
}

.price-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.price-currency {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-mid);
}

.cena-note {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 0;
}

.cena-divider {
    height: 1px;
    background: var(--border);
    margin: 28px 0;
}

.platba-info h4 {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 10px;
}

.platba-info p {
    font-size: 0.95rem;
    color: var(--text-mid);
    margin: 0;
}

/* ============================================================
   KONTAKT
   ============================================================ */
.kontakt-section {
    background: var(--bg-white);
}

.kontakt-layout {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.kontakt-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.kontakt-card {
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 28px 24px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
    border-top: 3px solid transparent;
    height: 100%;
}

.kontakt-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-top-color: var(--secondary);
}

.kontakt-card-highlight {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #fff;
}

.kontakt-card-highlight h3,
.kontakt-card-highlight p,
.kontakt-card-highlight .kontakt-detail {
    color: rgba(255,255,255,0.9);
}

.objednaci-text-white {
    color: #fff !important;
}

.kontakt-icon {
    font-size: 1.8rem;
    margin-bottom: 14px;
    line-height: 1;
}

.kontakt-card h3 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.kontakt-card-highlight h3 {
    color: #fff;
}

.kontakt-card p {
    font-size: 0.9rem;
    color: var(--text-mid);
    margin-bottom: 6px;
}

.kontakt-detail {
    font-size: 0.85rem;
    color: var(--text-mid);
}

.kontakt-link {
    font-size: 1.25rem;
    color: var(--secondary);
    text-decoration: none;
    font-weight: 500;
    word-break: break-all;
    transition: color var(--transition);
}

.kontakt-link:hover { color: var(--primary); }

.objednaci-btn {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.6);
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 10px 22px;
    border-radius: 50px;
    text-decoration: none;
    margin-top: 8px;
    transition: background var(--transition), border-color var(--transition);
}

.objednaci-btn:hover {
    background: rgba(255,255,255,0.35);
    border-color: #fff;
}

.kontakt-map-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    background: #fff;
}

.kontakt-map {
    display: block;
    width: 100%;
    height: 420px;
    border: 0;
}

/* ============================================================
   ETICKÉ ZÁSADY
   ============================================================ */
.eticke-zasady-section {
    background: var(--bg-light);
}

.eticke-content {
    max-width: 800px;
    margin: 0 auto;
}

.eticke-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 44px 48px;
    box-shadow: var(--shadow-md);
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.eticke-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    line-height: 1;
    margin-top: 4px;
}

.eticke-text h3 {
    margin-bottom: 14px;
    font-size: 1.25rem;
}

.eticke-text p {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.8;
    text-align: justify;
}

.eticke-pozn {
    font-size: 0.88rem !important;
    color: #888 !important;
    margin-top: 12px;
}

/* ============================================================
   DŮLEŽITÉ ODKAZY
   ============================================================ */
.dulezite-section {
    background: var(--bg-white);
}

.dulezite-block {
    margin-bottom: 52px;
}

.dulezite-block:last-child { margin-bottom: 0; }

.dulezite-block-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border);
}

.dulezite-block-subtitle {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
    margin-top: 4px;
}

.table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.dulezite-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    background: #fff;
}

.dulezite-table thead tr {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.dulezite-table thead th {
    color: #fff;
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 13px 16px;
    text-align: left;
    white-space: nowrap;
}

.dulezite-table tbody tr {
    border-bottom: 1px solid var(--border);
    transition: background var(--transition);
}

.dulezite-table tbody tr:last-child { border-bottom: none; }

.dulezite-table tbody tr:hover {
    background: var(--bg-light);
}

.dulezite-table tbody td {
    padding: 12px 16px;
    color: var(--text-mid);
    vertical-align: top;
}

.dulezite-table a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition);
}

.dulezite-table a:hover { color: var(--primary); text-decoration: underline; }

.tel-link {
    font-weight: 700 !important;
    white-space: nowrap;
}

.capld-note {
    margin-top: 14px;
    font-size: 0.88rem;
    color: var(--text-mid);
}

.capld-note a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 500;
}
.capld-note a:hover { text-decoration: underline; }

/* Org cards */
.org-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.org-card {
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 28px 28px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--secondary);
}

.org-card h4 {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.org-card h4 a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 700;
    transition: color var(--transition);
}

.org-card h4 a:hover { color: var(--primary); }

.org-card p {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin: 0;
    text-align: justify;
}

.dulezite-emergency {
    background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
    color: #fff;
    text-align: center;
    padding: 20px 28px;
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-weight: 500;
    margin-top: 48px;
    box-shadow: var(--shadow-md);
}

.dulezite-emergency strong { color: #fff; font-size: 1.1rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.75);
    padding: 48px 0 24px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    width: fit-content;
}

.footer-logo img {
    height: 40px;
    width: auto;
    opacity: 0.9;
}

.footer-tagline {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    margin: 0;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-nav a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color var(--transition);
}

.footer-nav a:hover { color: #fff; }

.footer-bottom {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
}

.footer-bottom p { margin: 0; }

/* ============================================================
   RESPONSIVE – TABLET (max 1024px)
   ============================================================ */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .uvod-content {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .uvod-quote {
        position: static;
    }

    .moje-cesta-hero {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
        align-items: center;
    }

    .timeline::before {
        left: 90px;
    }

    .timeline-marker {
        width: 90px;
    }
}

/* ============================================================
   RESPONSIVE – MOBILE (max 768px)
   ============================================================ */
@media (max-width: 1024px) {
    :root {
        --section-pad: 64px;
    }

    /* Header */
    .header-content {
        height: 64px;
    }

    .logo span {
        display: none;
    }

    .main-nav {
        display: none;
        position: fixed;
        top: 64px;
        left: 0;
        width: 100%;
        height: calc(100vh - 64px);
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        overflow-y: auto;
        padding: 16px 0 32px;
        z-index: 999;
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        display: flex;
        flex-direction: column;
        gap: 0;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .main-nav li {
        width: 100%;
    }

    .main-nav a {
        display: block;
        width: 100%;
        padding: 16px 24px;
        font-size: 1rem;
        border-radius: 0;
        border-bottom: 1px solid var(--bg-light);
    }

    .main-nav a.cta-button {
        margin: 20px 24px 0;
        border-radius: 50px;
        text-align: center;
        border-bottom: none;
        width: auto;
    }

    .mobile-nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    /* Hero */
    .hero-section {
        min-height: 100svh;
        padding-top: 64px;
    }

    .hero-content {
        padding: 48px 24px;
    }

    .hero-badges {
        gap: 8px;
    }

    /* Moje cesta */
    .moje-cesta-hero {
        grid-template-columns: 1fr;
        gap: 24px;
        margin: 0 auto 40px;
        max-width: 860px;
    }

    .moje-cesta-text {
        text-align: center;
    }

    .moje-cesta-text h2 {
        margin-top: 10px;
    }

    .moje-cesta-subtitle {
        max-width: 100%;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .moje-cesta-photo-wrap {
        justify-content: center;
    }

    .moje-cesta-photo {
        max-width: 320px;
    }

    /* Sections */
    .section-header {
        margin-bottom: 40px;
    }

    /* Features */
    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    /* Timeline */
    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        flex-direction: column;
        gap: 12px;
        padding-left: 44px;
        position: relative;
    }

    .timeline-item::before {
        content: '';
        position: absolute;
        left: 14px;
        top: 8px;
        width: 12px;
        height: 12px;
        background: var(--secondary);
        border-radius: 50%;
        border: 2px solid #fff;
        box-shadow: 0 0 0 2px var(--secondary);
    }

    .timeline-marker {
        width: auto;
        text-align: left;
    }

    .timeline-content::before {
        display: none;
    }

    /* Kontakt */
    .kontakt-row {
        grid-template-columns: 1fr;
    }

    .kontakt-map {
        height: 320px;
    }

    /* Etické zásady */
    .eticke-card {
        flex-direction: column;
        padding: 28px 24px;
        gap: 16px;
    }

    /* Org cards */
    .org-cards {
        grid-template-columns: 1fr;
    }

    /* Cena */
    .cena-box-body {
        padding: 24px;
    }

    /* Footer */
    .footer-nav {
        gap: 6px 16px;
    }
}

/* ============================================================
   RESPONSIVE – SMALL MOBILE (max 480px)
   ============================================================ */
@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .hero-badges {
        flex-direction: column;
        align-items: flex-start;
    }

    .price-amount {
        font-size: 2.3rem;
    }

    .dulezite-table {
        font-size: 0.82rem;
    }
}

/* ============================================================
   SCROLL ANIMATIONS (subtle fade-in)
   ============================================================ */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
