#sections-container {
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.section {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    overflow: hidden;
    opacity: 0;
    filter: blur(20px);
    transition: opacity 1s ease, filter 1s ease;
    pointer-events: none;
    background-color: var(--bg);
}

.section.active {
    opacity: 1;
    filter: blur(0px);
    pointer-events: auto;
    z-index: 2;
}

.section.previous {
    opacity: 0;
    filter: blur(20px);
    z-index: 1;
}

.section-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    mix-blend-mode: screen;
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    cursor: pointer;
    z-index: 5;
    display: none;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.9;
}

.video-play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
}

.video-play-button svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.section-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 20px 20px;
    box-sizing: border-box;
    z-index: 1;
    text-align: center;
}

/* Text content in sections */
.video-text,
.gallery-text {
    max-width: 600px;
}

/* Gallery Section */
.gallery-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    mix-blend-mode: screen;
}

.gallery-slide {
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    opacity: 0;
    transition: opacity 1s ease;
    overflow: hidden;
}

.gallery-slide.active {
    opacity: 1;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-out;
    will-change: transform;
}

.gallery-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.gallery-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid var(--white);
    background-color: transparent;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.gallery-dot.active {
    background-color: var(--white);
}

.gallery-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.section-contact .cta-button {
    margin-top: 0px;
}

/* Contact Section */
.contact-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 2rem;
}

.contact-content h2 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 0px;
}

.contact-image {
    width: 330px;
    height: 330px;
    overflow: hidden;
}

.contact-image img,
.contact-image canvas {
    width: 100%;
    height: auto;
    display: block;
}

.contact-socials {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    margin-bottom: 0px;
}

.contact-social-link {
    display: block;
    height: 20px;
    width: auto;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.8;
}

.contact-social-link:hover {
    transform: scale(1.2);
    opacity: 1;
}

.contact-social-link img {
    width: auto;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Hide fixed social links when contact section is active */
.section-contact.active~.social-links-fixed {
    opacity: 0;
    pointer-events: none;
}