/*
Theme Name: Léčivý pokec s Marcelou
Theme URI: https://macpok.cz
Author: Antigravity IDE
Description: Jednoduchá, čistá a uklidňující jednostránková šablona pro Léčivý pokec.
Version: 1.0.0
Text Domain: lecivy-pokec
*/

/* ==========================================================================
   Základní proměnné (Uklidňující paleta)
   ========================================================================== */
:root {
    --color-primary: #9BA491; /* Šalvějově zelená */
    --color-secondary: #D4BCAE; /* Jemná pudrová/béžová */
    --color-background: #FAF8F5; /* Velmi světlá krémová */
    --color-text: #4A4A4A; /* Tmavě šedá pro čitelnost (ne černá) */
    --color-text-light: #737373;
    --color-white: #FFFFFF;
    
    --font-heading: 'Lora', serif;
    --font-body: 'Inter', sans-serif;
}

/* ==========================================================================
   Reset & Základ
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-secondary);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   Layout Sekcí
   ========================================================================== */
section {
    padding: 80px 0;
}

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

/* ==========================================================================
   Header & Hero Sekce
   ========================================================================== */
.site-header {
    background-color: var(--color-white);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
    position: sticky;
    top: 0;
    z-index: 100;
}

.site-title {
    font-size: 1.5rem;
    margin: 0;
    color: var(--color-primary);
}

/* ==========================================================================
   Hero Split (Dva sloupce)
   ========================================================================== */
.hero-split {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 60px 20px 40px;
}

.hero-split-image {
    flex: 1.2;
}

.hero-split-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.hero-split-text {
    flex: 0.8;
}

.hero-split-text h2 {
    font-size: 2.2rem;
    color: var(--color-primary);
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-split-text p {
    font-size: 1.1rem;
    color: var(--color-text-light);
}

/* ==========================================================================
   Problém & Identifikace (Prostor pro tebe)
   ========================================================================== */
.empathy-section {
    background-color: var(--color-white);
    border-radius: 20px;
    padding: 60px;
    margin-top: -40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    position: relative;
    z-index: 10;
}

.empathy-list {
    list-style: none;
    margin: 30px 0;
}

.empathy-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    position: relative;
    padding-left: 30px;
}

.empathy-list li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--color-secondary);
}

.site-header {
    padding: 30px 0;
    background-color: var(--color-white);
}

.site-logo-text {
    font-family: 'Lora', serif;
    font-size: 2.8rem;
    color: var(--color-primary);
    margin: 0;
    font-weight: 500;
    font-style: italic;
    letter-spacing: 1px;
}

.highlight-box {
    background-color: var(--color-background);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid var(--color-primary);
    margin: 40px 0;
    font-style: italic;
    color: var(--color-text);
}

/* ==========================================================================
   Služby
   ========================================================================== */
.services-section {
    background-color: var(--color-background);
}

.service-card {
    background: var(--color-white);
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    color: var(--color-secondary);
}

/* ==========================================================================
   Ceník
   ========================================================================== */
.pricing-section {
    background-color: var(--color-white);
}

.pricing-list {
    max-width: 600px;
    margin: 0 auto;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.pricing-item:last-child {
    border-bottom: none;
}

.pricing-title {
    font-weight: 500;
}

.pricing-price {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-primary);
    font-size: 1.2rem;
}

.bach-info {
    margin-top: 40px;
    padding: 30px;
    background-color: rgba(155, 164, 145, 0.1);
    border-radius: 15px;
}

/* ==========================================================================
   O mně
   ========================================================================== */
.about-section {
    background-color: var(--color-secondary);
    color: var(--color-white);
    border-radius: 40px;
    margin: 40px 20px;
    padding: 80px 20px;
}

.about-section h2 {
    color: var(--color-white);
}

.about-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.about-image {
    flex: 1;
    min-width: 300px;
    border-radius: 20px;
    overflow: hidden;
}

.about-text {
    flex: 2;
    min-width: 300px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background-color: var(--color-white);
    padding: 60px 0 20px;
    text-align: center;
}

.footer-contact {
    margin-bottom: 40px;
    font-size: 1.2rem;
}

.footer-contact a {
    display: inline-block;
    margin: 0 10px;
    padding: 10px 20px;
    border: 1px solid var(--color-primary);
    border-radius: 30px;
    transition: all 0.3s;
}

.footer-contact a:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.disclaimer {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-top: 40px;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 20px;
}

/* ==========================================================================
   Galerie jídla (Kaskádová / Masonry)
   ========================================================================== */
.food-gallery-section {
    padding: 60px 0;
    background-color: var(--color-white);
}

.food-gallery {
    column-count: 3;
    column-gap: 20px;
    margin-top: 40px;
}

.food-gallery-item {
    break-inside: avoid;
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.food-gallery-item img {
    width: 100%;
    display: block;
    border-radius: 15px;
    transition: transform 0.5s ease;
}

.food-gallery-item:hover img {
    transform: scale(1.03);
}

/* ==========================================================================
   Media Queries
   ========================================================================== */
@media (max-width: 768px) {
    .hero-split {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px 20px;
    }
    
    .food-gallery {
        column-count: 2;
    }
    .hero-section h1 {
        font-size: 2.2rem;
    }
    
    .empathy-section {
        padding: 40px 20px;
    }
    
    .pricing-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .pricing-price {
        margin-top: 5px;
    }
    
    .about-wrapper {
        flex-direction: column;
    }
    
    .about-section {
        margin: 0;
        border-radius: 0;
    }
}
