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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    overflow-x: hidden;
    background: #000;
    color: #fff;
}

.hero {
    position: relative;
    height: 1100vh;
    width: 100%;
    background: #000;
}

#hero-canvas {
    position: sticky;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
}

.hero-content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    pointer-events: none;
    width: 90%;
    max-width: 600px;
    transition: opacity 0.3s ease;
}

.hero-text {
    font-size: clamp(2rem, 8vw, 4rem);
    font-weight: 400;
    font-family: 'Playfair Display', serif;
    color: #fff;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.8);
    margin: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.hero-text.active {
    opacity: 1;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.scroll-indicator {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    opacity: 0.5;
    animation: bounce 2s ease-in-out infinite, fadeIn 1s ease-in 1s forwards;
    transition: opacity 0.3s ease;
}

.scroll-indicator svg {
    width: 20px;
    height: 20px;
    color: #fff;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-8px);
    }
}

/* Second Hero Section */
.hero-2 {
    height: 700vh;
}

#hero-canvas-2 {
    position: sticky;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
}

.hero-text-2 {
    font-size: clamp(2rem, 8vw, 4rem);
    font-weight: 400;
    font-family: 'Playfair Display', serif;
    color: #fff;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.8);
    margin: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.hero-text-2 a {
    color: #fff;
    text-decoration: none;
    pointer-events: auto;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.hero-text-2 a:hover {
    color: #ff69b4;
    text-shadow: 2px 2px 30px rgba(255, 105, 180, 0.6);
}

.pink-link {
    color: #ff69b4 !important;
}

.pink-link:hover {
    text-shadow: 2px 2px 30px rgba(255, 105, 180, 0.6);
}

.pink-text {
    color: #ff69b4;
}

.rainbow-text {
    background: linear-gradient(
        90deg,
        #ff0000,
        #ff7f00,
        #ffff00,
        #00ff00,
        #0000ff,
        #4b0082,
        #9400d3,
        #ff0000
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: rainbow-slide 3s linear infinite;
}

@keyframes rainbow-slide {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

/* Third Hero Section */
.hero-3 {
    height: 700vh;
}

#hero-canvas-3 {
    position: sticky;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
}

.hero-text-3 {
    font-size: clamp(2rem, 8vw, 4rem);
    font-weight: 400;
    font-family: 'Playfair Display', serif;
    color: #fff;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.8);
    margin: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.hero-text-3 a {
    color: #fff;
    text-decoration: none;
    pointer-events: auto;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.hero-text-3 a:hover {
    color: #ff69b4;
    text-shadow: 2px 2px 30px rgba(255, 105, 180, 0.6);
}

/* Fourth Hero Section */
.hero-4 {
    height: 700vh;
}

#hero-canvas-4 {
    position: sticky;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
}

.hero-text-4 {
    font-size: clamp(2rem, 8vw, 4rem);
    font-weight: 400;
    font-family: 'Playfair Display', serif;
    color: #fff;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.8);
    margin: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.hero-text-4 a {
    color: #fff;
    text-decoration: none;
    pointer-events: auto;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.hero-text-4 a:hover {
    color: #ff69b4;
    text-shadow: 2px 2px 30px rgba(255, 105, 180, 0.6);
}

.content {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.content-inner {
    position: relative;
    max-width: 800px;
    text-align: center;
    z-index: 1;
}

.content-inner h2 {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    margin-bottom: 1rem;
    color: #fff;
}

.content-inner p {
    font-size: clamp(1rem, 3vw, 1.25rem);
    line-height: 1.6;
    color: #ccc;
}

.contact-buttons {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.contact-btn:hover {
    background: rgba(255, 105, 180, 0.2);
    border-color: #ff69b4;
    color: #ff69b4;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255, 105, 180, 0.3);
}

.contact-btn svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .hero {
        height: 900vh;
    }

    .hero-2,
    .hero-3,
    .hero-4 {
        height: 600vh;
    }

    .hero-content {
        width: 85%;
    }

    .content {
        padding: 1.5rem;
    }
}
