/* Sekcie */
.scroll-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
}

/* Section One */
#section-one {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

#section-one .logo-top {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}

#section-one .logo-bottom {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

#section-one .heading-bg {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    text-align: center;
    padding: 20px 0;
}

#section-one img {
    max-width: 240px;
    width: 100%;
    height: auto;
    display: block;
}

/* Section Two a Three */
.scroll-section-bg {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('./room.png');
    background-size: cover;
    background-position: center;
}

.section-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
}

.section-title {
    background-color: rgba(0, 0, 0, 0.75);
    text-align: center;
    padding: 10px;
    margin-bottom: 20px;
}

.section-content {
    flex: 1;
    display: flex;
    align-items: center;
}

.section-logos {
    display: none;
}


/* SECTION 4: Google Meet & OBS Streaming */
.scroll-section-four {
    margin: 0;
    padding: 0;
    overflow: hidden;
}

/* Obal s fixným pomerom strán (16:9) pomocou padding-top triku */
.custom-room-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 56.25%;
    /* 16:9 pomer */
    background: #000;
}

.room-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
    z-index: 1;
}

/* Skupiny elementov – pointer-events: none, aby kontajnery neblokovali kliknutie na vnútorné odkazy */
#group-presentation,
#group-left-middle-right {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

/* Umožniť pointer-events pre odkazy vo vnútri */
#group-presentation a,
#group-left-middle-right a,
#front-camera {
    pointer-events: auto;
    z-index: 9999;
}



/* SECTION 5: Partners */
.scroll-section-five {
    background: url('./Feistu.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.partners-strip {
    background-color: rgba(128, 128, 128, 0.8);
    padding: 40px 20px;
    text-align: center;
    width: 100%;
    margin: auto;
}

.partners-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
    margin-top: 30px;
}

.partners-wrapper img {
    max-height: 60px;
}

#section-five {
    margin-bottom: 0;
}

/* SECTION 6: Virtual Teleport */
#section-six .container-fluid {
    padding: 0;
    margin: 0;
}

#section-six iframe {
    border: none;
    width: 100%;
    height: 100vh;
}

#section-six {
    margin-top: 0;
}