/* Základní nastavení */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #ffffff;
    color: #000000;
    padding-bottom: 40px;
}

header {
    text-align: center;
    padding: 20px 10px;
    border-bottom: 2px solid #fff000;
}

header h1 {
    font-size: 1.5rem;
    font-weight: bold;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px 15px;
}

.hidden {
    display: none !important;
}

/* Mřížka číselných tlačítek */
.grid-view {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 10px;
}

@media (min-width: 400px) {
    .grid-view {
        grid-template-columns: repeat(3, 1fr);
    }
}

.station-btn {
    background-color: #ffffff;
    color: #000000;
    border: 5px solid #ffd700; /* Žlutý kroužek */
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.station-btn:active {
    background-color: #ffd700;
}

/* Detail stanoviště */
.back-btn {
    background-color: #ffd700;
    color: #000000;
    border: none;
    padding: 10px 18px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 20px;
    cursor: pointer;
    margin-bottom: 20px;
}

.detail-view h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    border-left: 4px solid #ffd700;
    padding-left: 10px;
}

.detail-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Galerijní fotky */
.photos-heading {
    font-weight: bold;
    margin-top: 25px;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.gallery img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #ffd700;
    cursor: pointer;
}

/* Celoobrazovkový modal pro fotky */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-img {
    max-width: 95%;
    max-height: 90vh;
    object-fit: contain;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 25px;
    color: #ffffff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}
/* Styly pro stránku s podmínkami */
.terms-container {
    margin-top: 15px;
}

.terms-container h2 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    border-left: 4px solid #ffd700;
    padding-left: 10px;
    line-height: 1.3;
}

.terms-section {
    margin-bottom: 25px;
}

.terms-section h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #000000;
}

.terms-section p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

.terms-section ul {
    margin-left: 20px;
    margin-bottom: 10px;
}

.terms-section li {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 5px;
}

/* Footer a odkaz na podmínky */
footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eeeeee;
}

.footer-link {
    color: #000000;
    font-size: 0.85rem;
    text-decoration: underline;
    font-weight: bold;
}

.footer-link:hover {
    color: #888888;
}