:root {
    /* Uklidňující psychologická paleta (Premium Sage & Soft Sand) */
    --primary-color: #547060; /* Elegant Sage Green */
    --secondary-color: #7A9B89; /* Lighter Sage */
    --accent-color: #3B5244; /* Dark Forest/Sage */
    --bg-color: #Fdfbf7; /* Off-white warm sand */
    --bg-light: #F4F1EA; /* Slightly darker sand for sections */
    --text-primary: #2C3831; /* Very dark green-grey for text */
    --text-secondary: #5C6E63;
    --white: #ffffff;
    --border-radius: 12px;
    --transition: all 0.3s ease;
    --box-shadow: 0 10px 40px rgba(44, 62, 45, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, .logo { font-family: 'Lora', serif; font-weight: 500; color: var(--text-primary); }
p { margin-bottom: 1rem; color: var(--text-secondary); }
.text-center { text-align: center; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

/* Layout */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}
.section { padding: 80px 0; }
.bg-light { background-color: var(--bg-light); }
.align-items-center { align-items: center; }

/* Navigation */
.navbar {
    background: rgba(253, 251, 247, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0; width: 100%; z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.03);
}
.nav-container { display: flex; justify-content: space-between; align-items: center; padding: 20px; }
.logo { font-size: 1.5rem; font-weight: 700; color: var(--primary-color); }
.nav-links { display: flex; list-style: none; gap: 2rem; }
.nav-links a { text-decoration: none; color: var(--text-primary); font-weight: 500; transition: var(--transition); }
.nav-links a:hover { color: var(--primary-color); }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}
.btn-primary { background: var(--primary-color); color: var(--white); box-shadow: 0 4px 15px rgba(107,142,35,0.3); }
.btn-primary:hover { background: var(--accent-color); transform: translateY(-2px); }

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: url('https://images.unsplash.com/photo-1469474968028-56623f02e42e?auto=format&fit=crop&q=80&w=2000') center/cover;
}
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(253, 251, 247, 0.7); }
.hero-content { position: relative; z-index: 1; display: flex; justify-content: center; }
.glass-panel {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    padding: 3rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: var(--box-shadow);
    max-width: 700px;
}
.hero-title { font-size: 3.5rem; margin-bottom: 1.2rem; color: var(--text-primary); line-height: 1.2; }
.hero-subtitle { font-size: 1.2rem; }

/* About Section & ČAP Badge */
.section-content { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.profile-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    object-fit: cover;
    max-height: 500px;
}
.section-title { font-size: 2.5rem; margin-bottom: 2rem; position: relative; display: inline-block; }

.credentials { margin-top: 2rem; }
.credentials ul { list-style-type: none; margin-top: 15px; }
.credentials li { position: relative; padding-left: 20px; margin-bottom: 15px; }
.credentials li::before { content: ''; width: 6px; height: 6px; background: var(--primary-color); border-radius: 50%; position: absolute; left: 0; top: 10px; }
.credentials .li-title { font-weight: 600; color: var(--text-primary); font-size: 1.05rem; display: block; }
.credentials .li-subtitle { color: var(--text-secondary); font-size: 0.95rem; margin-top: 3px; display: block; }
.credentials .li-text { color: var(--text-secondary); font-size: 1rem; margin-top: 5px; display: block; }

/* ČAP Badge Styles */
.cap-container {
    background: transparent;
    border-left: 3px solid var(--secondary-color);
    padding: 0.5rem 0 0.5rem 1.5rem;
    margin-top: 2rem;
}
.cap-title { font-size: 0.85rem; text-transform: uppercase; font-weight: 600; color: var(--text-secondary); letter-spacing: 1px; margin-bottom: 1rem; display: block; font-family: 'Inter', sans-serif;}
.cap-image-override { max-width: 140px; height: auto; display: block; }
.cap-description { font-size: 0.95rem; color: var(--text-secondary); margin-top: 1rem; margin-bottom: 0; line-height: 1.5; max-width: 400px; }

/* Services Section */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 3rem; }
.service-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 15px 45px rgba(44, 62, 45, 0.08); }
.service-icon { font-size: 2.5rem; margin-bottom: 1rem; }

/* Pricing */
.pricing-container { display: flex; justify-content: center; margin-top: 3rem; flex-wrap: wrap; gap: 2rem; }
.price-card { text-align: center; padding: 3rem; width: 100%; max-width: 400px; }
.price-header h3 { font-size: 1.5rem; }
.price-duration { color: var(--primary-color); font-weight: 500; margin-top: 5px; }
.price-amount { font-size: 2.5rem; font-weight: 400; color: var(--primary-color); margin: 1.5rem 0; font-family: 'Lora', serif; }

/* Contact Section - SYMMETRICAL LAYOUT */
.contact-grid { 
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* Levá info 40%, pravá mapa 60% */
    gap: 3rem; 
    margin-top: 3rem; 
}
.contact-info { 
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    display: flex; 
    flex-direction: column; 
    justify-content: flex-start; /* Karty se nebudou natahovat */
    gap: 1.5rem; 
}
.info-card { 
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.02);
}
.info-card:last-child {
    margin-bottom: 0;
}
.info-card h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    letter-spacing: 0.5px;
}
.info-card h3 span[data-cms="Extra"] {
    color: var(--primary-color);
    font-size: 1.5rem;
}
.info-card > div {
    padding-left: 2.5rem;
    font-size: 1.05rem;
    color: var(--text-primary);
    line-height: 1.6;
}
.info-card ul { list-style-type: none; margin-top: 5px; }
.info-card li { position: relative; padding-left: 20px; margin-bottom: 5px; }
.info-card li::before { content: '•'; color: var(--primary-color); position: absolute; left: 0; font-weight: bold; }
.contact-link { color: var(--primary-color); text-decoration: none; font-weight: 500; font-size: 1.2rem; }
.transportation ul { list-style-type: none; margin-top: 10px; }
.contact-map { 
    display: flex;
    width: 100%;
}
.contact-map > div {
    flex: 1;
    display: flex;
    width: 100%;
}
.contact-map iframe { 
    flex: 1; 
    width: 100%; 
    height: 100%; 
    min-height: 400px;
    border-radius: var(--border-radius); 
    box-shadow: var(--box-shadow); 
}

/* Footer */
footer { padding: 30px 0; background: var(--text-primary); color: var(--white); }
footer p { color: rgba(255,255,255,0.7); margin: 0; }

/* Scroll Reveal Animations */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 768px) {
    .section-content, .contact-grid { flex-direction: column; }
    .hero-title { font-size: 2.2rem; }
    .nav-links { display: none; /* simple mobile */ }
    .contact-map iframe { height: 400px; }
}
