/* ══════════════════════════════════════════
   MIVA – index.css
   Styly pro hlavní stránku (index.html)
══════════════════════════════════════════ */

/* ══ HERO ══ */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 var(--pad-x);
    position: relative;
    overflow: hidden;
    text-align: center;
    background: linear-gradient(170deg, var(--ice-lt) 0%, var(--ice) 55%, var(--ice-dk) 100%);
}

.hero-bg-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero-bg-shape--1 {
    width: 700px;
    height: 700px;
    top: -200px;
    left: -200px;
    background: radial-gradient(circle, rgba(59, 157, 191, .15) 0%, transparent 65%);
}

.hero-bg-shape--2 {
    width: 500px;
    height: 500px;
    bottom: -150px;
    right: -100px;
    background: radial-gradient(circle, rgba(22, 43, 94, .1) 0%, transparent 65%);
}

.hero-bg-shape--3 {
    width: 300px;
    height: 300px;
    top: 50%;
    right: 15%;
    transform: translateY(-50%);
    background: radial-gradient(circle, rgba(59, 157, 191, .08) 0%, transparent 70%);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle 1px at 15% 25%, rgba(22, 43, 94, .18) 0%, transparent 2px),
        radial-gradient(circle 1px at 80% 15%, rgba(22, 43, 94, .13) 0%, transparent 2px),
        radial-gradient(circle 1px at 45% 75%, rgba(22, 43, 94, .1) 0%, transparent 2px),
        radial-gradient(circle 1px at 90% 55%, rgba(22, 43, 94, .1) 0%, transparent 2px),
        radial-gradient(circle 1px at 25% 90%, rgba(22, 43, 94, .12) 0%, transparent 2px),
        radial-gradient(circle 1px at 65% 40%, rgba(22, 43, 94, .08) 0%, transparent 2px);
    pointer-events: none;
}

.hero-center {
    position: relative;
    z-index: 2;
    max-width: 760px;
    padding-top: 80px;
    padding-bottom: 90px;
}

.hero-desc {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text-lt);
    max-width: 560px;
    margin: 0 auto 44px;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 56px;
}

.hero-badges {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    background: rgba(255, 255, 255, .65);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 157, 191, .2);
    border-radius: 60px;
    padding: 14px 28px;
    gap: 4px;
    box-shadow: 0 4px 24px rgba(22, 43, 94, .08);
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 4px 14px;
    font-size: .8rem;
    font-weight: 600;
    color: var(--navy);
}

.hero-badge-icon {
    font-size: 1rem;
}

.hero-badge-sep {
    width: 1px;
    height: 20px;
    background: rgba(59, 157, 191, .25);
}

.hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: .65rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--text-lt);
    z-index: 2;
}

.scroll-line {
    width: 1px;
    height: 44px;
    background: linear-gradient(var(--teal), transparent);
    animation: scrollAnim 2s ease-in-out infinite;
}

@keyframes scrollAnim {

    0%,
    100% {
        transform: scaleY(1);
        opacity: 1;
    }

    50% {
        transform: scaleY(.4);
        opacity: .4;
    }
}

/* ══ STATS ══ */
.stats-bar {
    background: var(--navy);
    padding: clamp(40px, 5vw, 48px) var(--pad-x);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.stats-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(59, 157, 191, .12) 0%, transparent 50%, rgba(59, 157, 191, .08) 100%);
}

.stat {
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-n {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1;
    color: var(--teal-lt);
}

.stat-l {
    font-size: .72rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(224, 241, 250, .5);
    margin-top: 8px;
    font-weight: 600;
}

/* ══ MASÁŽE – hlavička sekce na indexu ══ */
.section-masaze {
    padding: var(--pad-y) var(--pad-x);
    background: var(--ice-lt);
}

.section-head {
    margin-bottom: 64px;
}

/* ══ O NÁS ══ */
.section-onas {
    background: var(--navy);
    padding: var(--pad-y) var(--pad-x);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.section-onas::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59, 157, 191, .08) 0%, transparent 50%);
    pointer-events: none;
}

.onas-features {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.onas-feat {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.onas-feat-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(59, 157, 191, .18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.onas-feat h4 {
    font-size: .9rem;
    font-weight: 700;
    color: var(--ice-lt);
    margin-bottom: 4px;
}

.onas-feat p {
    font-size: .85rem;
    line-height: 1.65;
    color: rgba(224, 241, 250, .5);
}

.onas-visual {
    position: relative;
    z-index: 1;
    width: 100%;
}

.onas-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 16px;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.onas-image-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    border: 1px solid rgba(224, 241, 250, .15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
    transition: transform .3s ease, box-shadow .3s ease;
}

.onas-image-grid img:hover {
    transform: scale(1.04) rotate(1deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .3);
    z-index: 2;
}

.onas-image-grid img:nth-child(even):hover {
    transform: scale(1.04) rotate(-1deg);
}

/* ══ POSTUP ══ */
.section-postup {
    padding: var(--pad-y) var(--pad-x);
    background: var(--ice);
}

.postup-head {
    text-align: center;
    margin-bottom: 64px;
}

.postup-head .section-label {
    justify-content: center;
}

.postup-head .section-label::before {
    display: none;
}

.postup-head .section-label::after {
    content: '✦';
    font-size: .65rem;
    color: var(--teal);
}

.steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 20px;
}

.step {
    text-align: center;
}

.step-arrow {
    font-size: 1.8rem;
    color: var(--teal-lt);
    opacity: .5;
    font-weight: 300;
    margin-top: -20px;
}

.step-num {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--teal-lt);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--navy);
    box-shadow: 0 4px 20px rgba(59, 157, 191, .2);
    transition: background .3s, color .3s, border-color .3s;
}

.step:hover .step-num {
    background: var(--navy);
    color: var(--teal-lt);
    border-color: var(--navy);
}

.step-icon {
    font-size: 1.8rem;
    display: block;
    margin-bottom: 10px;
}

.step h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.step p {
    font-size: .86rem;
    line-height: 1.7;
    color: var(--text-lt);
}

/* ══ KONTAKT ══ */
.section-kontakt {
    padding: var(--pad-y) var(--pad-x);
    background:
        radial-gradient(ellipse 80% 80% at 0% 100%, rgba(59, 157, 191, .14) 0%, transparent 60%),
        var(--ice-lt);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    overflow: hidden;
}

.k-details {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.k-detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.k-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(59, 157, 191, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.k-detail h4 {
    font-size: .7rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--text-lt);
    margin-bottom: 4px;
    font-weight: 700;
}

.k-detail p {
    font-size: .95rem;
    color: var(--navy);
    font-weight: 700;
}

.k-detail span {
    font-size: .84rem;
    color: var(--text-lt);
}

.kontakt-phone {
    position: relative;
    z-index: 1;
}

.phone-card {
    background: var(--white);
    border-radius: var(--r);
    padding: 44px 48px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(59, 157, 191, .15);
}

.phone-card-top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 36px;
}

.phone-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal-lt), var(--navy));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}

.phone-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
}

.phone-role {
    font-size: .78rem;
    color: var(--text-lt);
    margin-top: 2px;
}

.phone-number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background: var(--navy);
    color: var(--white);
    text-decoration: none;
    border-radius: 14px;
    padding: 22px 28px;
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: .04em;
    transition: background .3s, transform .2s, box-shadow .3s;
    box-shadow: 0 8px 32px rgba(22, 43, 94, .28);
    margin-bottom: 12px;
}

.phone-number:hover {
    background: var(--teal-dk);
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(22, 43, 94, .35);
}

.phone-hint {
    text-align: center;
    font-size: .75rem;
    color: var(--text-lt);
    margin-bottom: 28px;
    letter-spacing: .06em;
}

.phone-hours {
    background: var(--ice-lt);
    border-radius: 10px;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 24px;
    border: 1px solid rgba(59, 157, 191, .15);
}

.phone-hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: .88rem;
}

.phone-hours-row:not(:last-child) {
    border-bottom: 1px solid rgba(59, 157, 191, .12);
}

.phone-hours-row span {
    color: var(--text-lt);
}

.phone-hours-row strong {
    color: var(--navy);
    font-weight: 700;
}

.phone-divider {
    height: 1px;
    background: rgba(59, 157, 191, .15);
    margin-bottom: 20px;
}

.phone-services-label {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--teal-dk);
    margin-bottom: 12px;
}

.phone-service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.phone-service-tags span {
    background: rgba(59, 157, 191, .1);
    color: var(--navy-lt);
    border: 1px solid rgba(59, 157, 191, .22);
    font-size: .73rem;
    font-weight: 600;
    padding: 5px 13px;
    border-radius: 50px;
}

/* ══════════════════════════════════════════
   RESPONZIVITA – index.html
══════════════════════════════════════════ */

@media (max-width: 1100px) {
    .section-onas {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }

    .section-kontakt {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .steps {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    .step-arrow {
        display: none;
    }
}

@media (max-width: 900px) {
    .steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 110px;
    }

    .hero-badges {
        gap: 8px;
        padding: 12px;
        justify-content: center;
        border-radius: 16px;
    }

    .hero-badge-sep {
        display: none;
    }

    .hero-badge {
        font-size: .8rem;
        padding: 4px 8px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-ghost {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .phone-number {
        font-size: clamp(1.3rem, 5vw, 1.7rem);
        padding: 18px 20px;
        flex-wrap: wrap;
    }

    .stats-bar {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .onas-image-grid {
        max-width: 100%;
        gap: 12px;
    }

    .onas-image-grid img {
        border-radius: 8px;
    }

    .postup-head .section-title {
        font-size: 2rem;
    }
}

@media (max-height: 720px) {
    .hero-scroll {
        display: none;
    }

    .hero-center {
        padding-bottom: 40px;
    }
}

/* ══════════════════════════════════════════
   HOVER EFEKTY – index.html
══════════════════════════════════════════ */

/* ── Hero badges ── */
.hero-badges {
    transition: box-shadow .3s ease, transform .3s ease;
}

.hero-badges:hover {
    box-shadow: 0 8px 36px rgba(22, 43, 94, .13);
    transform: translateY(-2px);
}

.hero-badge {
    transition: color .25s ease;
    border-radius: 50px;
}

.hero-badge:hover {
    color: var(--teal-dk);
}

/* ── Kroky (postup) ── */
.step {
    padding: 20px 16px;
    border-radius: 16px;
    transition: background .3s ease, transform .3s ease, box-shadow .3s ease;
}

.step:hover {
    background: rgba(255, 255, 255, .7);
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(59, 157, 191, .12);
}

.step-icon {
    transition: transform .3s ease;
    display: block;
    margin-bottom: 10px;
}

.step:hover .step-icon {
    transform: scale(1.15) rotate(-5deg);
}

/* ── Section masaze – odkaz ── */
.section-masaze .btn-primary {
    transition: background .3s ease, transform .25s ease, box-shadow .3s ease, letter-spacing .3s ease;
}

.section-masaze .btn-primary:hover {
    letter-spacing: .14em;
}

/* ══════════════════════════════════════════
   RESPONZIVITA – index.html (doplněná)
══════════════════════════════════════════ */

@media (max-width: 1100px) {
    .section-onas {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }

    .section-kontakt {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .steps {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    .step-arrow {
        display: none;
    }
}

@media (max-width: 900px) {
    .steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .section-kontakt {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 110px;
    }

    .hero-badges {
        gap: 8px;
        padding: 12px;
        justify-content: center;
        border-radius: 16px;
    }

    .hero-badge-sep {
        display: none;
    }

    .hero-badge {
        font-size: .8rem;
        padding: 4px 8px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-ghost {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .phone-number {
        font-size: clamp(1.3rem, 5vw, 1.7rem);
        padding: 18px 20px;
        flex-wrap: wrap;
    }

    .stats-bar {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .onas-image-grid {
        max-width: 100%;
        gap: 12px;
    }

    .onas-image-grid img {
        border-radius: 8px;
    }

    .postup-head .section-title {
        font-size: 2rem;
    }

    /* Step hover se na mobilu vypne (touch) */
    .step:hover {
        transform: none;
        box-shadow: none;
        background: transparent;
    }

    .step {
        padding: 16px 12px;
    }

    /* Kontakt na mobilu */
    .kontakt-info .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-center {
        padding-top: 60px;
    }

    .hero-badges {
        flex-direction: column;
        border-radius: 14px;
        gap: 4px;
    }

    .hero-badge {
        justify-content: center;
    }

    .steps {
        gap: 20px;
    }

    .step {
        padding: 14px 10px;
    }

    .step-num {
        width: 68px;
        height: 68px;
        font-size: 1.3rem;
    }

    .k-details {
        gap: 16px;
    }
}

@media (max-height: 720px) {
    .hero-scroll {
        display: none;
    }

    .hero-center {
        padding-bottom: 40px;
    }
}