/* ---------------------------------------------------
   INFO – HLAVNÍ SEKCE
--------------------------------------------------- */

.info-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px 40px;
}

/* Nadpisy nad boxy – stejný styl jako PROGRAM */
.info-title,
.info-subtitle {
    font-family: "Oswald", "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 80px;
    color: #FF5E00;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 30px;
    margin-top: 20px;
}

/* První nadpis v sekci – stejně vysoko jako na homepage */
.info-section > .info-title:first-child {
    margin-top: 0;
}

/* Horní box */
.info-box {
    background: rgba(0, 0, 0, 0.75);
    border: 2px solid #ff7a00;
    border-radius: 6px;
    padding: 30px;
    margin-bottom: 50px;
    box-shadow: 0 0 20px rgba(255, 120, 0, 0.25);
}

/* Nadpisy uvnitř boxu (pokud nějaké jsou) */
.info-box h1,
.info-box h2 {
    margin-bottom: 20px;
}

/* Mapa sekce – druhý box */
.map-section {
    background: rgba(0, 0, 0, 0.75);
    border: 2px solid #ff7a00;
    border-radius: 6px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 0 20px rgba(255, 120, 0, 0.25);
}

.map-box {
    margin: 20px 0 30px 0;
}

/* Navigační tlačítko */
.nav-button {
    display: inline-block;
    padding: 12px 24px;
    background: #ff7a00;
    color: #000;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 4px;
    text-decoration: none;
    transition: 0.2s ease;
}

.nav-button:hover {
    background: #ffd200;
    color: #000;
}

/* ---------------------------------------------------
   MOBIL
--------------------------------------------------- */

@media (max-width: 768px) {
    .info-section {
        padding: 0 16px 24px;
    }

    .info-title,
    .info-subtitle {
        font-size: clamp(26px, 7vw, 42px);
        margin-bottom: 20px;
    }

    .info-box,
    .map-section {
        padding: 20px 16px;
    }

    .nav-button {
        padding: 14px 28px;
        min-height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .info-title,
    .info-subtitle {
        font-size: clamp(24px, 6vw, 36px);
    }

    .info-box,
    .map-section {
        padding: 18px 14px;
    }
}
