/* style.css - Revidovaná verzia s farbou #ff3366 */

/* Základné nastavenia */
body {
    font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background: #f0f2f5;
    margin: 0;
    color: #2c3e50;
    line-height: 1.7;
}

/* HERO SEKCIE - UPRAVENÉ PRE DOKONALÉ CENTROVANIE */
.hero {
    background-image: url("images/business.jpg");
    min-height: 60vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: stretch;
    position: relative;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.65);
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

/* JAZYKOVÝ PREPÍNAČ */
.lang-switch a {
    font-size: 28px;
    margin: 0 8px;
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s;
    opacity: 0.9;
}

.lang-switch a:hover {
    transform: scale(1.15);
    opacity: 1;
}

/* TITULKY V HERO */
.hero h1 {
    font-size: 3.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
    margin-bottom: 15px;
    color: #ff3366;
}

.hero .lead {
    font-size: 1.4rem;
    font-weight: 400;
    border-top: 2px solid rgba(255,255,255,0.2);
    border-bottom: 2px solid rgba(255,255,255,0.2);
    display: inline-block;
    padding: 10px 0;
    color: white;
}

.contact {
    font-size: 1.2rem;
    font-weight: 300;
    margin-top: 20px;
    color: white;
}

.address {
    margin-top: 30px;
    font-size: 0.9rem;
    color: #ccc;
    border-top: 1px solid #444;
    padding-top: 20px;
}

/* HLAVNÝ OBSAHOVÝ BLOK */
.content-box {
    background: white;
    margin-top: -70px;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

/* SEKCIE A NADPISY */
.section-title {
    font-size: 1.9rem;
    font-weight: 700;
    color: #1a2b3c;
    margin-top: 50px;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 3px solid #ff3366;
    letter-spacing: 1px;
    position: relative;
}

.section-title:first-of-type {
    margin-top: 0;
}

/* SLUBY - DVA STĹPCE S IKONKAMI */
.services {
    columns: 2;
    padding-left: 0;
    list-style: none;
}

.services li {
    margin-bottom: 20px;
    padding-left: 35px;
    position: relative;
    font-weight: 500;
    break-inside: avoid;
    transition: all 0.3s ease;
}

.services li i {
    position: absolute;
    left: 0;
    top: 3px;
    color: #ff3366;
    font-size: 1.3rem;
    width: 25px;
    text-align: center;
    transition: transform 0.3s ease;
}

.services li:hover {
    color: #ff3366;
    transform: translateX(5px);
}

.services li:hover i {
    transform: scale(1.2);
}

/* OSTATNÉ ODSTAVCE */
.content-box p {
    margin-bottom: 25px;
    font-size: 1.05rem;
    color: #3a4a5a;
    background: #f9fafc;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #ff3366;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
}

.content-box p:last-of-type {
    margin-bottom: 0;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 50px 20px 40px;
    color: #6c7a8a;
    font-size: 0.95rem;
    border-top: 1px solid #d0d8e0;
    margin-top: 40px;
    background: white;
}

/* MOBILNÁ VERZIA */
@media (max-width: 768px) {
    .hero {
        min-height: 50vh;
        background-attachment: scroll;
    }

    .hero h1 {
        font-size: 2rem;
        color: #ff3366;
    }

    .hero .lead {
        font-size: 1.1rem;
    }

    .content-box {
        margin-top: -40px;
        padding: 30px 20px;
        border-radius: 8px;
    }

    .services {
        columns: 1;
    }

    .services li {
        padding-left: 35px;
        margin-bottom: 15px;
    }

    .services li i {
        font-size: 1.2rem;
        top: 2px;
    }

    .section-title {
        font-size: 1.6rem;
        border-bottom-color: #ff3366;
    }

    .content-box p {
        padding: 15px;
        font-size: 1rem;
        border-left-color: #ff3366;
    }
}

/* Vežmi malé displeje */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.6rem;
    }

    .contact {
        font-size: 1rem;
    }
}