/* Reset & base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
    color: #fff;
}

/* Parallax sections */
.parallax-section {
    height: 100vh;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Overlay text */
.overlay-text {
    font-size: 3rem;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 1rem 2rem;
    border-radius: 8px;
}

/* Backgrounds */
.bg-1 {
    background-image: url('your-image-1.jpg');
}

.bg-2 {
    background-image: url('your-image-2.jpg');
}

.bg-3 {
    background-image: url('your-image-3.jpg');
}

/* Content panels */
.content-section {
    padding: 4rem 2rem;
    background-color: #111;
    text-align: center;
}
