/* --- 1. ZÁKLADNÍ NASTAVENÍ A PROMĚNNÉ --- */
:root {
    --black: #0a0a0a;
    --white: #f5f5f0;
    --lime: #c8f135;
    --gray: #1a1a1a;
    --mid: #2e2e2e;
    --text-muted: #888;
}
 
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    background: var(--black);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    overflow-x: hidden;
    line-height: 1.6;
}
 
/* --- 2. NAVIGACE --- */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 4rem;
    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(200,241,53,0.1);
}
 
.nav-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 3px;
    color: var(--lime);
}
 
.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}
 
.nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}
 
.nav-links a:hover {
    color: var(--lime);
}
 
/* OPRAVA: active stav — uživatel vidí kde je */
.nav-links a.active {
    color: var(--lime);
    border-bottom: 2px solid var(--lime);
    padding-bottom: 2px;
}
 
.nav-cta {
    background: var(--lime);
    color: var(--black);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.6rem 1.4rem;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
    border: none;
    cursor: pointer;
}
 
.nav-cta:hover {
    background: #d4ff3a;
    transform: scale(1.03);
}
 
/* --- 3. HERO SEKCE --- */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}
 
.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 3rem 5rem 4rem;
}
 
.hero-tag {
    color: var(--lime);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}
 
.hero-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.5rem, 8vw, 7.5rem);
    line-height: 0.92;
    opacity: 0;
    animation: fadeUp 0.7s 0.4s forwards;
}
 
.hero-name span {
    color: var(--lime);
    display: block;
}
 
.hero-desc {
    color: var(--text-muted);
    margin: 1.5rem 0 2.5rem;
    max-width: 500px;
    font-size: 1.1rem;
}
 
/* OPRAVA: odstraněny inline styly, vše je tady */
.hero-btn {
    background: var(--lime);
    color: var(--black);
    padding: 1.2rem 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    display: inline-block;
    transition: background 0.3s, transform 0.2s;
    width: fit-content;
    text-align: center;
}
 
.hero-btn:hover {
    background: #d4ff3a;
    transform: translateY(-2px);
}
 
.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--mid);
}
 
.stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    line-height: 1;
    color: var(--lime);
}
 
.stat-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-top: 0.3rem;
}
 
/* Pravá strana hero - fotka v kruhu */
.hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 500px;
}
 
.hero-visual {
    position: relative;
    width: 500px;
    height: 500px;
}
 
.hero-circle {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border: 1px solid var(--mid);
    border-radius: 50%;
}
 
.hero-circle-inner {
    position: absolute;
    top: 50px; left: 50px; right: 50px; bottom: 50px;
    border: 1px solid var(--lime);
    border-radius: 50%;
    opacity: 0.2;
}
 
.hero-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 380px;
    height: 380px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--lime);
    box-shadow: 0 0 40px rgba(200,241,53,0.3);
    z-index: 20;
}
 
/* --- 4. OBECNÉ SEKCE --- */
section {
    padding: 7rem 4rem;
    border-top: 1px solid var(--mid);
}
 
.section-label {
    color: var(--lime);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}
 
.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    line-height: 1;
    margin-bottom: 2rem;
}
 
/* --- 5. SEKCE O MNĚ (na index.html) --- */
.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
 
.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}
 
.about-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--mid);
}
 
.about-card {
    background: var(--gray);
    padding: 2rem;
    transition: background 0.3s;
}
 
.about-card:hover {
    background: #222;
}
 
.about-card-icon {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
}
 
.about-card-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
}
 
.about-card-text {
    font-size: 0.85rem;
    color: var(--text-muted);
}
 
/* --- 6. SEKCE SLUŽBY --- */
.services-header {
    margin-bottom: 3rem;
}
 
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--mid);
}
 
.service-card {
    background: var(--gray);
    padding: 3rem 2rem;
    position: relative;
    transition: background 0.3s;
}
 
.service-card:hover {
    background: #1e1e1e;
}
 
.service-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: rgba(200,241,53,0.1);
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}
 
.service-name {
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}
 
.service-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
}
 
.service-tag {
    color: var(--lime);
    font-size: 0.7rem;
    text-transform: uppercase;
    margin-top: 1rem;
    display: block;
}
 
/* --- 7. CTA SEKCE (VYLEPŠENÁ) --- */
.cta-section {
    text-align: center;
    padding: 10rem 2rem; /* Více místa nahoře a dole, aby to vyniklo */
}

/* Tady zvětšujeme ten nápis "Připravena na změnu?" */
.cta-section .section-title {
    font-size: clamp(3.5rem, 10vw, 7rem); /* Opravdu velký nápis */
    line-height: 0.9;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

/* Tohle obarví to slovo "změnu?" v HTML <span>změnu?</span> */
.cta-section .section-title span {
    color: var(--lime);
    font-style: normal; /* Konec hrozné kurzívy */
}

.cta-desc {
    color: var(--text-muted);
    margin: 0 auto 3rem;
    max-width: 600px;
    font-size: 1.2rem; /* Trochu větší text pod nadpisem */
}

.cta-big-btn {
    background: var(--lime);
    color: var(--black);
    padding: 1.5rem 3.5rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-big-btn:hover {
    background: #d4ff3a;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(200, 241, 53, 0.3);
}
 
/* --- 8. STRÁNKA CENÍK --- */
/* --- 8. STRÁNKA CENÍK (OPRAVA) --- */
.pricing-page {
    padding-top: 150px; /* Dostatek místa pod navigací */
    padding-bottom: 6rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* Popiska "Investice do sebe" */
.pricing-page .section-label {
    display: block;
    margin-bottom: 1.5rem; /* Mezera mezi popiskou a nadpisem */
    color: var(--lime);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 0.8rem;
}

/* Hlavní nadpis "Ceník služeb" */
.pricing-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 7vw, 5rem);
    line-height: 1;
    margin-bottom: 1.5rem;
    color: white;
}

.pricing-title span {
    color: var(--lime); /* Udělá slovo "služeb" limetkové */
}

/* Ten text pod nadpisem */
.pricing-subtitle {
    color: white;
    opacity: 0.7;
    margin: 0 auto 5rem; /* 5rem mezera dole před kartami */
    max-width: 600px;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Zbytek (grid a karty) máš v pořádku, ten tam nech tak, jak je */
 
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
 
.pricing-card {
    background: rgba(255,255,255,0.03);
    padding: 3rem 2rem;
    border: 1px solid rgba(255,255,255,0.1);
    transition: border-color 0.3s, background 0.3s;
}
 
.pricing-card:hover {
    border-color: rgba(200,241,53,0.3);
    background: rgba(255,255,255,0.05);
}
 
/* --- 9. STRÁNKA O MNĚ (omne.html) --- */
.about-page {
    /* OPRAVA: padding-top místo margin-top — margin-top nefunguje s margin: auto */
    padding-top: 120px;
    padding-bottom: 4rem;
    padding-left: 5%;
    padding-right: 5%;
    max-width: 1200px;
    margin: 0 auto;
    border-top: none;
}
/* Úprava nadpisu speciálně pro stránku O mně */
.about-page .hero-name {
    font-size: clamp(2.5rem, 6vw, 4.5rem); /* Zmenšení z původních 7.5rem */
    line-height: 1;
    margin-bottom: 2.5rem;
    opacity: 1; 
    animation: fadeUp 0.8s forwards; /* Necháme tam tu hezkou animaci */
}

/* Zmenšení toho limetkového podnadpisu "od hřiště k fitness" */
.about-page .hero-name span {
    font-size: 0.7em; /* Bude to o 30 % menší než horní řádek */
    display: block;
    margin-top: 0.5rem;
}
 
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 5rem;
    align-items: start;
    margin-bottom: 6rem;
}
 
.about-description p {
    color: white;
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}
 
.story-cards {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-bottom: 6rem;
}
 
.story-row {
    background: rgba(255,255,255,0.02);
    display: grid;
    grid-template-columns: 450px 1fr;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 4px;
    overflow: hidden;
}
 
.story-row.reverse {
    grid-template-columns: 1fr 450px;
}
 
.story-img {
    width: 100%;
    height: 100%;
    min-height: 350px;
    object-fit: cover;
}
 
.story-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
 
.story-content h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    color: var(--lime);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}
 
.story-content p {
    color: white;
    opacity: 0.9;
    line-height: 1.7;
    font-size: 1.05rem;
}
 
/* Sidebar box na omne.html */
.sidebar-box {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(200,241,53,0.2);
    padding: 2rem;
    border-radius: 4px;
}
 
/* --- 10. ANIMACE --- */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
 
/* --- 11. PATIČKA --- */
footer {
    padding: 3rem 4rem;
    text-align: center;
    border-top: 1px solid var(--mid);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}
 
.footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    color: var(--lime);
    font-size: 1.5rem;
    letter-spacing: 2px;
}
 
.footer-copy {
    color: var(--text-muted);
    font-size: 0.8rem;
}
 
/* --- 12. MOBILNÍ RESPONSIVITA (NADPIS -> TEXT -> FOTKA) --- */
@media (max-width: 900px) {
    nav {
        padding: 1rem 5%;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .nav-links {
        order: 3;
        width: 100%;
        justify-content: center;
        gap: 15px;
        margin-top: 10px;
    }

    .nav-links a { font-size: 0.75rem; }

    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 140px;
        min-height: auto;
    }

    .hero-left { padding: 2rem 1.5rem; }

    .hero-right {
        order: -1;
        padding-bottom: 2rem;
    }

    .hero-visual {
        width: 300px;
        height: 300px;
        margin: 0 auto;
    }

    .hero-image {
        width: 220px;
        height: 220px;
    }

    .hero-stats {
        gap: 1.5rem;
        justify-content: center;
    }

    /* Upravené sekce pro mobilní zobrazení */
    .about,
    .services-grid,
    .pricing-grid,
    .about-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }

    /* Úprava mřížky pro příběh */
    .story-row,
    .story-row.reverse {
        display: grid;
        grid-template-columns: 1fr !important;
        gap: 0;
        overflow: hidden;
        margin-bottom: 5rem; /* Větší mezera mezi bloky, aby se to nepletlo */
        background: rgba(255,255,255,0.02);
        border-radius: 8px;
    }

    /* Rozbalení kontejneru s textem */
    .story-content {
        display: contents; 
    }

    /* 1. NADPIS - ÚPLNĚ NAHOŘE */
    .story-content h3 {
        order: 1;
        padding: 2.5rem 1.5rem 0.5rem;
        text-align: center;
        margin: 0;
        font-size: 2.2rem;
        color: var(--lime);
    }

    /* 2. TEXT - HNED POD NADPISEM */
    .story-content p {
        order: 2;
        padding: 0.5rem 1.5rem 2rem;
        text-align: center;
        margin: 0;
        line-height: 1.6;
        opacity: 0.8;
    }

    /* 3. FOTKA - NA KONCI BLOKU */
    .story-img {
        order: 3; 
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1; /* Čtverec na mobilu vypadá u fotky dole dobře */
        object-fit: cover;
        object-position: top center;
    }

    section { padding: 4rem 1.5rem; }

    .about-page h1 {
        font-size: 2.3rem !important;
    }

    footer { padding: 2rem 1.5rem; }
}