/* --- ZÁKLADNÍ NASTAVENÍ A BAREVNÁ PALETA --- */
:root {
    --color-dark: #111e1e;       
    --color-cream: #f4f6f4;     
    --color-accent: #6b8a70;    
    --color-text: #4a5555;      
    --color-border: #eaeaeb;
    --font-heading: 'Lora', serif;
    --font-body: 'Manrope', sans-serif;
}

html { overflow-y: scroll; height: 100%; }
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-body); color: var(--color-text); background-color: #ffffff; line-height: 1.6; overflow-x: hidden; display: flex; flex-direction: column; min-height: 100vh; }
main { flex: 1 0 auto; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.bg-cream { background-color: var(--color-cream); }
.text-center { text-align: center; }

/* --- JEDNOTNÁ HLAVIČKA, MENU A TLAČÍTKA (ZLATÝ STANDARD Z INDEXU) --- */
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--color-dark); }
.btn-solid, .btn-outline { display: inline-block; padding: 14px 32px; border-radius: 40px; font-size: 0.95rem; font-weight: 500; text-decoration: none; transition: all 0.3s ease; cursor: pointer; border: 1px solid transparent; }
.btn-solid { background-color: var(--color-dark); color: white; border-color: var(--color-dark); }
.btn-solid:hover { background-color: var(--color-accent); border-color: var(--color-accent); }
.btn-outline { background-color: transparent; color: var(--color-dark); border: 1px solid #d0d5d0; }
.btn-outline:hover { border-color: var(--color-dark); }

.psyon-header { background-color: transparent; padding: 25px 0; position: absolute; width: 100%; top: 0; left: 0; z-index: 1000; border-bottom: 1px solid rgba(0,0,0,0.05); }
.header-inner { display: flex; justify-content: space-between; align-items: center; position: relative; height: 50px; }
.logo-img { height: 45px; width: auto; display: block; }
.main-nav { display: flex; gap: 40px; }
.main-nav a { text-decoration: none; color: var(--color-dark); font-weight: 500; font-size: 1.05rem; transition: color 0.2s; }
.main-nav a:hover, .main-nav a.active { color: var(--color-accent); }
.header-action { display: flex; gap: 15px; }

.menu-toggle { display: none; flex-direction: column; justify-content: space-between; width: 30px; height: 21px; background: none; border: none; cursor: pointer; z-index: 1001; }
.menu-toggle span { display: block; width: 100%; height: 3px; background-color: var(--color-dark); transition: all 0.3s ease; border-radius: 3px; }

/* --- HERO SEKCE O MNĚ (TVŮJ ORIGINÁL) --- */
.badge { display: inline-block; padding: 6px 16px; background-color: #e5ebe6; color: var(--color-accent); border-radius: 30px; font-size: 0.85rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 30px; }
.about-hero { padding: 220px 0 120px 0; }
.about-hero-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 80px; align-items: center; }

.about-photo-wrapper { display: flex; justify-content: center; position: relative; }
.image-wrapper { position: relative; z-index: 2; width: 85%; max-width: 450px; }
.image-wrapper img { width: 100%; height: auto; display: block; position: relative; z-index: 2; }

.shape-blob { 
    position: absolute; width: 100%; height: 100%; background-color: #e5ebe6; 
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; 
    top: 5%; left: -10%; z-index: 1; opacity: 0.8; 
}

.huge-title { font-family: var(--font-heading); font-size: 4.5rem; line-height: 1.1; color: var(--color-dark); margin-bottom: 35px; letter-spacing: -1px; }
.lead-text { font-size: 1.25rem; color: var(--color-text); max-width: 600px; line-height: 1.8; }

/* --- OSTATNÍ SEKCE (TVŮJ ORIGINÁL) --- */
.quote-section { padding: 100px 20px; background-color: #ffffff; }
.massive-quote { font-family: var(--font-heading); font-size: 2.8rem; line-height: 1.3; color: var(--color-dark); text-align: center; max-width: 900px; margin: 0 auto; font-style: italic; position: relative; }
.massive-quote::before { content: ''; display: block; width: 60px; height: 3px; background-color: var(--color-accent); margin: 0 auto 40px auto; }

.journey-section { padding: 120px 0; }
.journey-header h2 { font-family: var(--font-heading); font-size: 3rem; margin-bottom: 60px; text-align: center; color: var(--color-dark); }
.journey-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.journey-card { background: #ffffff; padding: 50px 40px; border-radius: 12px; border: 1px solid var(--color-border); transition: transform 0.3s ease; }
.journey-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,0.04); }
.journey-icon { color: var(--color-accent); margin-bottom: 25px; }
.journey-card h3 { font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: 15px; color: var(--color-dark); }
.journey-card p { color: var(--color-text); font-size: 1.05rem; line-height: 1.7; }

.testimonials-section { padding: 120px 0; background-color: #1a2222; color: white; }
.testimonials-header h2 { font-family: var(--font-heading); color: white; font-size: 3rem; margin-bottom: 60px; text-align: center; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.testimonial-card { background-color: rgba(255,255,255,0.03); padding: 40px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.1); position: relative; }
.quote-mark { font-family: var(--font-heading); font-size: 6rem; color: var(--color-accent); opacity: 0.4; position: absolute; top: -10px; left: 20px; line-height: 1; }
.testimonial-text { position: relative; z-index: 2; font-family: var(--font-heading); font-size: 1.1rem; font-style: italic; line-height: 1.8; margin-bottom: 30px; opacity: 0.9; padding-top: 20px; }
.testimonial-author strong { display: block; font-family: var(--font-body); font-size: 1.1rem; margin-bottom: 5px; color: var(--color-accent); font-weight: 600; }
.testimonial-author span { font-size: 0.85rem; opacity: 0.6; text-transform: uppercase; letter-spacing: 1px; }

/* --- JEDNOTNÁ PATIČKA (ZLATÝ STANDARD Z INDEXU) --- */
.psyon-footer { flex-shrink: 0; background-color: var(--color-dark); color: #ffffff; padding: 100px 0 30px 0; }
.footer-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; padding-bottom: 80px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-logo-text { font-family: var(--font-heading); font-size: 2.2rem; margin-bottom: 20px; color: white; }
.footer-logo-text span { color: var(--color-accent); font-style: italic; }
.footer-brand p { font-size: 1.05rem; opacity: 0.8; line-height: 1.8; }
.footer-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.footer-col h4 { color: white; font-family: var(--font-body); font-size: 1.1rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 25px; opacity: 0.5; }
.footer-col a { display: block; color: white; text-decoration: none; margin-bottom: 15px; font-size: 1.05rem; transition: color 0.3s; }
.footer-col a:hover, .footer-col a.active { color: var(--color-accent); }
.footer-col p { margin-bottom: 20px; opacity: 0.8; line-height: 1.8; }
.footer-link-highlight { color: var(--color-accent) !important; font-weight: 600; }
.footer-bottom { padding-top: 30px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; font-size: 0.9rem; opacity: 0.5; }
.legal-links { display: flex; flex-wrap: wrap; gap: 20px; }
.legal-links a { color: white; opacity: 0.6; text-decoration: none; font-size: 0.85rem; transition: all 0.3s ease; }
.legal-links a:hover { opacity: 1; color: var(--color-accent); }

/* ========================================= */
/* --- MOBILNÍ RESPONZIVITA A HAMBURGER --- */
/* ========================================= */
@media (max-width: 992px) {
    /* 1. Hamburger UI */
    .menu-toggle { display: flex; }
    .menu-toggle.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .menu-toggle.active span:nth-child(2) { opacity: 0; }
    .menu-toggle.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

    /* Mobilní Navigace */
    .main-nav {
        display: none; position: absolute; top: 100%; left: -40px; width: calc(100% + 80px);
        background: #ffffff; flex-direction: column; padding: 40px;
        box-shadow: 0 15px 30px rgba(0,0,0,0.1); text-align: center; gap: 25px; z-index: 1000;
    }
    .main-nav.active { display: flex; }
    .header-action { display: none; }

    /* 2. Oprava všech mřížek pro "O mně" */
    .about-hero-grid, 
    .journey-grid, 
    .testimonials-grid, 
    .footer-inner {
        grid-template-columns: 1fr !important;
        gap: 60px !important;
    }

    /* Hero úpravy */
    .container { padding: 0 25px; }
    .about-hero { padding: 140px 0 60px 0; text-align: center; }
    .huge-title { font-size: 3rem !important; line-height: 1.2 !important; }
    .about-photo-wrapper { order: -1; margin-bottom: 40px; }
    .image-wrapper { width: 70%; margin: 0 auto; }
    .massive-quote { font-size: 1.8rem !important; }

    .footer-nav { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { text-align: center; flex-direction: column; }
    .legal-links { justify-content: center; }
}

@media (max-width: 480px) {
    .huge-title { font-size: 2.5rem !important; }
}

/* --- TLAČÍTKO NAHORU (CSS) --- */
#scroll-to-top { position: fixed; bottom: 30px; right: 30px; width: 50px; height: 50px; background-color: var(--color-dark); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; font-size: 24px; line-height: 0; z-index: 1000; opacity: 0; visibility: hidden; transition: all 0.3s ease; box-shadow: 0 4px 10px rgba(0,0,0,0.2); }
#scroll-to-top.show { opacity: 1; visibility: visible; }
#scroll-to-top:hover { background-color: var(--color-accent); transform: translateY(-5px); }