/* Styly pro sekci "Jak se k nám dostanete" */

#kudyKnam {
    position: relative;

    background-image: url(assets/image\ 1.webp);
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 13rem 20px;
    color: white;
        font-family: KottaOna;

}

#kudyKnam h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: KronaOne, sans-serif;

}

.mapicka {
    width: 40%;
    height: 400px;
    border: 3px solid #A8C657;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
}

.mapicka img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.map-coordinates a {
    text-decoration: none;
    color: #e0e0e0;
    transition: 0.5s;

}
strong{
font-weight: 100;
}
.map-coordinates a:hover {
    color: #A8C657; /* Zelená barva při najetí myší, můžete změnit podle vašeho designu */
    text-decoration: none;
    transition: 0.5s;
}
.map-coordinates {
    text-align: center;
    font-size: 0.9rem;
    margin-bottom: 30px;
    color: #e0e0e0;
    font-family: KronaOne, sans-serif;
    text-decoration: none;

    
}

.directions-content {
    max-width: 800px;
    text-align: justify;
    line-height: 1.6;
    margin-bottom: 30px;
}

.directions-content p {
    margin-bottom: 20px;
    font-family: KottaOna;

}

.nearby-places {
    max-width: 800px;
    margin-top: 20px;
}

.nearby-places h2 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.places-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.place-item {
    margin: 10px;
    text-align: center;
    width: 200px;
}

/* Responzivní styly */
@media (max-width: 768px) {
    #kudyKnam h1 {
        font-size: 2rem;
    }
    
    .mapicka {
        width: 90%;
        max-width: 350px;
    }
    
    .places-list {
        flex-direction: column;
        align-items: center;
    }
}

/* HTML struktura pro reference:
<div id="kudyKnam">
    <h1>JAK SE K NÁM DOSTANETE</h1>
    <div class="zlevaDoprava mapicka" id="map"></div>
    <div class="map-coordinates">50°36'57.471"N, 15°14'23.118"E</div>
    <div class="directions-content">
        <p>Přijeďte k nám...</p>
        <p>Cesta ze Zákopaní...</p>
    </div>
</div>
*/