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

body {
    font-family: 'Arial', sans-serif;
    overflow: hidden;
    height: 100vh;
    background: linear-gradient(135deg, #4A0E3A 0%, #6B1148 50%, #8B1A6B 100%);
}

.container {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.mountain-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.1s ease-out;
}

/* Parallax layers with different movement speeds */
.layer-5 {
    z-index: 1;
    transform-origin: center center;
}

.layer-4 {
    z-index: 2;
    transform-origin: center center;
}

.layer-3 {
    z-index: 3;
    transform-origin: center center;
}

.layer-2 {
    z-index: 4;
    transform-origin: center center;
}

.layer-1 {
    z-index: 5;
    transform-origin: center center;
}

.content {
    position: relative;
    z-index: 10;
    text-align: center;
    pointer-events: none;
}

.footer {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
    pointer-events: none;
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-style: italic;
    opacity: 0.7;
}

.main-title {
    font-family: "Edu NSW ACT Cursive", cursive;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: clamp(2.5rem, 8vw, 6rem);
    color: #FFFFFF;
}

/* Responsive design */
@media (max-width: 768px) {
    .main-title {
        font-size: clamp(1.8rem, 9vw, 3.6rem);
    }
    
    .mountain-layer {
        transition: transform 0.2s ease-out;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: clamp(1.62rem, 10.8vw, 2.7rem);
        padding: 0 1rem;
    }
    
    .footer-text {
        font-size: 0.8rem;
        padding: 0 1rem;
    }
}

/* Smooth transitions for all layers */
.parallax-wrapper * {
    will-change: transform;
}

/* Prevent text selection */
.main-title {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
