* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base styles for all wrappers and content */
.wrapper,
.wrapper-story,
.wrapper-third,
.wrapper-fourth {
    position: relative;
    width: 100%;
    height: 100vh;
    z-index: 1;
    overflow: hidden;
    transition: opacity 0.5s ease;
}

.social-buttons {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    gap: 10px;
    align-items: center;
    color: #fff;
    a {
        color: #fff;
    }
}

.content,
.content-story,
.content-third,
.content-fourth {
    position: relative;
    width: 100%;
    z-index: 1;
    overflow-x: hidden;
}

/* Section styles */
.content .section,
.content-story .section,
.content-third .section,
.content-fourth .section {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

/* Video styles for all sections */
.hero-video,
.story-video,
.third-video,
.fourth-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Image container styles for all sections */
.image-container,
.image-container-story,
.image-container-third,
.image-container-fourth {
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
    perspective: 500px;
    overflow: hidden;
    pointer-events: none;
}

/* Image styles for all sections */
.image-container img,
.image-container-story img,
.image-container-third img,
.image-container-fourth img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: opacity 0.5s ease;
}

/* Hero and slide backgrounds */
.content .section.hero,
.content .section.second-slide {
    background-image: url(./images/bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Story section styles */
.content-story .section.story {
    position: relative;
    overflow: hidden;
}

.content-story .section.story-second-slide {
    background-image: url(./images/bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.image-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

/* Remove the previous transition styles we added */
.image-container img,
.image-container-story img,
.image-container-third img,
.image-container-fourth img,
.hero-video,
.story-video,
.third-video,
.fourth-video {
    transition: opacity 0.5s ease;
}

.social-buttons img {
    width: 24px;
    height: 24px;
    fill: #fff; /* or any color you want */
    transition: fill 0.3s ease;
}

.social-buttons img:hover {
    fill: #e4405f; /* Instagram brand color */
}

.scroll-instruction {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    z-index: 1000;
    font-family: Arial, sans-serif;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.scroll-instruction.hidden {
    opacity: 0;
    pointer-events: none;
}

.scroll-instruction p {
    margin-bottom: 5px;
    font-size: 18px;
}

.scroll-arrow {
    font-size: 24px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(10px);
    }
    60% {
        transform: translateY(5px);
    }
} 