/* Základné nastavenia podľa videa */
body,
html {
    margin: 0;
    padding: 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #000;
    /* Čierne pozadie */
    color: #fff;
    line-height: 1.6;
    scroll-behavior: smooth;
}

a {
    color: white;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Hero sekcia - video 23:48:12 */
.hero {
    height: 100vh;
    background: url('img/bg.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-inner {
    margin-top: 30vh;
}

.enter-btn {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding-bottom: 5px;
    transition: 0.3s;
}

.enter-btn:hover {
    border-bottom-color: #fff;
}

/* Textové bloky */
.text-block {
    text-align: center;
    padding: 60px 0;
}

.text-block h2 {
    font-weight: 300;
    margin-bottom: 20px;
}

.text-block p {
    font-weight: 300;
    color: #ccc;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.lang-divider {
    height: 1px;
    background: #333;
    width: 50px;
    margin: 40px auto;
}

/* Galéria - video 23:51:39 */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4 stĺpce */
    gap: 10px;
    margin-bottom: 80px;
}

.gallery-grid img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    opacity: 0.8;
    transition: 0.3s;
}

.gallery-grid img:hover {
    opacity: 1;
}

/* Cenník podľa obrázka */
.price-box {
    padding: 20px;
    border-radius: 4px;
}

.price-hero-img {
    width: 100%;
    margin-bottom: 30px;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.price-table td {
    padding: 15px;
    border-bottom: 1px solid #333;
    font-size: 0.9rem;
}

.booking-notice {
    font-size: 0.9rem;
    color: #bbb;
    margin-top: 30px;
}

.cta-link {
    color: #fff;
    text-decoration: underline;
    display: block;
    margin-top: 15px;
}

.section-divider {
    border: 0;
    border-top: 1px dashed #444;
    margin: 40px 0;
}

.event-section h4 {
    margin-bottom: 15px;
    letter-spacing: 1px;
}

footer {
    text-align: center;
    padding: 60px 0;
    font-size: 0.8rem;
    color: #666;
}

footer a {
    color: #999;
    text-decoration: none;
}

@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
        letter-spacing: 5px;
    }

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