/* Base Styles */
body {
    margin: 0;
    overflow-x: hidden;
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
    background: #E8DDCE;
}

.scroll-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}

.scroll-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Backgrounds */
.stars-bg {
    background: url('images/tall-milky-way-photo-l.jpg') center/cover fixed;
    color: white;
}

.cafe-bg {
    background: url('images/brad-pitt-caffe.jpg') center/cover fixed;
    color: white;
}

.night-bg {
    background: url('images/e001490.jpg') center/cover fixed;
    color: white;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    z-index: 2;
}
