/* ============================
   FONTY
   ============================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

@font-face {
    font-family: 'HeyKidos';
    src: url('fonts/HeyKidos-CZ.ttf') format('truetype');
    font-display: swap;
}

/* ============================
   ZÁKLADNÍ NASTAVENÍ
   ============================ */

:root {
    --primary: #f3943e;
    --primary-light: #f7c08a;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #f9e9d2;
    color: #333;
    padding-top: 70px;
}

.section {
    padding: 60px 20px;
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

/* ============================
   NADPISY
   ============================ */

h1, h2, h3 {
    color: var(--primary);
    margin-bottom: 15px;
}

h2, h3 {
    font-family: 'HeyKidos', sans-serif;
}

h2 {
    font-size: 2.4rem;
}

h3 {
    font-size: 1.8rem;
}

/* ============================
   MENU
   ============================ */

.top-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
}

.top-menu ul {
    list-style: none;
    margin: 0;
    padding: 12px 0;
    display: flex;
    justify-content: center;
    gap: 40px;
}

.top-menu a {
    text-decoration: none;
    color: var(--primary);
    font-weight: 600;
    font-size: 18px;
}

.top-menu a:hover {
    color: var(--primary-light);
}

/* ============================
   HERO
   ============================ */

.hero {
    background: linear-gradient(to right, #f7dce3, #f9e9d2);
    padding: 80px 20px;
}

.hero-inner {
    max-width: 1100px;
    margin: auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

/* FOTO + ODZNAK + MOTTO VLEVO */
.hero-left {
    flex: 1;
    min-width: 300px;
}

.hero-photo {
    width: 100%;
    max-width: 380px;
    border-radius: 0;
    box-shadow: none;
}

/* ODZNAK POD FOTKOU */
.student-badge {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.student-badge img {
    width: 58px; /* +20 % */
}

.student-badge span {
    font-size: 16px;
    font-weight: 500;
    color: #444;
}

/* MOTTO POD ODZNAKEM */
.hero-motto-wrap {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero-motto {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: #555;
    line-height: 1.4;
    max-width: 300px;
}

.hero-motto-img {
    width: 120px;
    border-radius: 12px;
}

/* TEXTY VPRAVO */
.hero-right {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

/* H1 v HeyKidos */
.hero-title {
    font-family: 'HeyKidos', sans-serif;
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 15px;
}

/* „Proměny…“ menší, šedé, Poppins */
.hero-sub {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    color: #666;
    margin-top: 5px;
    margin-bottom: 25px;
    line-height: 1.4;
}

/* CTA */
.btn {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    margin-top: 20px;
    font-weight: 600;
    transition: 0.2s;
}

.btn:hover {
    background: var(--primary-light);
}

/* ============================
   FILOZOFIE / HYGIENA
   ============================ */

.filozofie-inner,
.hygiene-inner {
    max-width: 1100px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.filozofie-text,
.hygiene-text {
    flex: 1;
    min-width: 280px;
    text-align: left;
}

.filozofie-img img,
.hygiene-img img {
    width: 80%;
    max-width: 260px;
    border-radius: 12px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}

/* ============================
   CENÍK / SLUŽBY
   ============================ */

.pricing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.price-box {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
    text-align: center;
}

.price-icon {
    width: 40px;
    margin-bottom: 10px;
}

.price {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary);
    margin: 5px 0;
}

.price-desc {
    font-size: 16px;
    line-height: 1.5;
    color: #444;
    margin-top: 10px;
}

/* ============================
   KONTAKT
   ============================ */

.kontakt-inner {
    max-width: 1100px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.kontakt-img img {
    width: 80%;
    max-width: 260px;
    border-radius: 12px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}

.kontakt-text {
    flex: 1;
    min-width: 280px;
    text-align: left;
}

.kontakt-info p {
    font-size: 18px;
    margin: 5px 0;
}

.kontakt-info a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.social-links {
    margin-top: 25px;
    display: flex;
    gap: 18px;
}

.fakturace {
    margin-top: 20px;
    font-size: 16px;
    color: #555;
}

.copyright {
    margin-top: 40px;
    text-align: center;
    font-size: 14px;
    color: #666;
}

/* ============================
   RESPONSIVITA
   ============================ */

@media (max-width: 768px) {

    .hero-inner {
        flex-direction: column;
        text-align: center;
    }

    .hero-right {
        text-align: center;
    }

    .hero-motto-wrap {
        flex-direction: column;
    }

    .top-menu ul {
        gap: 20px;
    }
}