.balaton-szekcio {
    background-color: #0f0f0f;
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.balaton-szekcio h3 {
    font-size: 2rem;
    color: rgb(159, 126, 70);
    
}

.balaton-leiras p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 1rem auto;
    color: white;
    text-align: justify;
}

.balaton-leiras .felhivas {
    font-weight: bold;
    font-size: 1.2rem;
    margin-top: 2rem;
    color: rgb(159, 126, 70);
}

.balaton-esemenyek {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 3rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.esemeny-blokk {
    background-color: rgba(159, 126, 70, 0.1);
    border-left: 4px solid rgb(159, 126, 70);
    padding: 1rem;
    border-radius: 8px;
    text-align: left;
}

.balaton-videok {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}
#balaton-koncertek {
    padding-top: 5rem; /* vagy több, ha a navigációs sáv nagyon magas */
}


.balaton-video {
    width: 300px;
    max-width: 100%;
    border: 2px solid rgb(159, 126, 70);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(159, 126, 70, 0.3);
}

.projekt-galeria-cim {
    font-size: 1.5rem;
    color: rgb(159, 126, 70);
    margin-top: 2rem;
}

.balaton-galeria {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    max-width: 1000px;
    margin: 2rem auto 0;
}

.balaton-galeria img {
    width: 100%;
    border-radius: 8px;
    border: 2px solid rgb(159, 126, 70);
    object-fit: cover;
}

.balaton-leiras {
    max-width: 900px;
    margin: 2rem auto;
    text-align: justify;
    font-size: 1.1rem;
    color: white;
}

.balaton-leiras .felhivas {
    font-weight: bold;
    font-size: 1.2rem;
    margin-top: 2rem;
    color: rgb(159, 126, 70);
    text-align: center;
}

.video-kozep {
    display: flex;
    justify-content: center;
    align-items: flex-start; /* szintén a tetejéhez igazítja */
    
    flex: 1;
}


.youtube-container {
    width: 100%;
    max-width: 400px;   /* fix max szélesség */
    aspect-ratio: 9 / 16;
    background-color: black;
    border-radius: 1rem;
    box-shadow: 0 0 12px rgba(159, 126, 70, 0.5);
}


.youtube-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 1rem;
}



.esemeny-szekcio-wrapper {
    background-color: #0f0f0f;
    padding: 1rem;
    color: white;
    
}

.esemeny-cim {
    text-align: center;
    color: rgb(159, 126, 70);
    font-size: 2rem;
    
}

.esemeny-trioszekcio {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: flex-start; /* ez teszi egyvonalba a tetejét */
}


.esemeny-oldal {
    flex: 1;
    min-width: 250px;
}

.esemeny-lista {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.esemeny-lista li {
    padding: 1rem 1.5rem;
    border-left: 4px solid rgb(159, 126, 70);
    background-color: #1a1a1a;
    border-radius: 8px;
}

.esemeny-lista h4 {
    color: rgb(159, 126, 70);
    margin-bottom: 0.3rem;
    font-size: 1.2rem;
}

.esemeny-lista p {
    margin: 0.2rem 0;
    font-size: 1rem;
}

.esemeny-kozep {
    flex: 1;
    background-image: url('./img/IMG_5436.jpeg');
    background-size: cover;
    background-position: center;
    border-radius: 1rem;
    min-height: 400px;
}

.jobb-oldal li {
    border-left: none;
    padding: 1rem 1.5rem;
    border-right: 4px solid rgb(159, 126, 70);
    background-color: #1a1a1a;
    border-radius: 8px;
}

/* Mobilbarát elrendezés */
@media (max-width: 992px) {
    .esemeny-trioszekcio {
        flex-direction: column;
    }

    .esemeny-kozep {
        min-height: 35rem;
    }

    .esemeny-cim {
        font-size: 2rem;
    }
}

.projekt-galeria-cim {
    font-size: 1.5rem;
    color: rgb(159, 126, 70);
    margin: 2rem auto 1rem;
    text-align: center;
}

.balaton-galeria {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    max-width: 1000px;
    margin: 2rem auto 0;
    padding: 0 1rem;
}

.balaton-galeria img {
    width: 100%;
    border-radius: 8px;
    border: 2px solid rgb(159, 126, 70);
    object-fit: cover;
    transition: transform 0.3s ease;
    box-shadow: 0 0 10px rgba(159, 126, 70, 0.2);
}

.balaton-galeria img:hover {
    transform: scale(1.02);
}

.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.lightbox-kep {
    max-width: 90%;
    max-height: 90%;
    border: 3px solid rgb(159, 126, 70);
    border-radius: 12px;
}

.lightbox .close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 3rem;
    color: rgb(159, 126, 70);
    cursor: pointer;
}

.balaton-videok {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin: 2rem auto;
    max-width: 1000px;
    padding: 0 1rem;
}

.youtube-kiskeret {
    flex: 1 1 300px;
    max-width: 300px;
    aspect-ratio: 16 / 9;
    background-color: black;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(159, 126, 70, 0.4);
}

.youtube-kiskeret iframe {
    width: 100%;
    height: 100%;
    border: none;
}

body{
    background-color: #0f0f0f;
}