/* PARALLAX AND OBJECT PREP */

body, html {
    margin: 0;
    padding: 0;
    background: linear-gradient(to bottom, #87CEEB, #4682B4) fixed;
    font-family: 'Courier New', monospace;
    overflow-x: hidden;
    width: 100%;
}

.main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.atmosphere {
    width: 100%;
    position: relative;
    overflow: hidden; 
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sky-buffer {
    height: 350vh; 
    width: 100%;
    position: relative;
}

.cloud {
    position: absolute;
    color: white;
    font-weight: bold;
    font-size: 20rem; 
    opacity: 0.5; 
    letter-spacing: 20px;
    white-space: nowrap;
    pointer-events: none;
    z-index: 1;
}

.cake-tier {
    font-size: 12rem;
    color: #f0f0f0;
    text-shadow: none !important; 
    line-height: 0.6;
    z-index: 3;
}

/* TEXT SETTINGS */

.pink-text {
    color: #ff006a;
    font-size: 4rem;
    margin: 40px 0;
    text-shadow: 2px 2px #030303;
    z-index: 4;
    text-align: center;
}

.message-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 5; /* Higher than the grass (20) */
    margin-bottom: -100px; /* Pulls the grass up to meet the text */
    padding: 0 20px;
}

.message-body-text {
    color: #E0E0E0;
    font-size: 1.5rem;
    text-align: center;
    max-width: 850px;
    line-height: 1.5;
    margin: 10px 0;
}

.signature {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ff006a; /* Matches the pink text color */
}

/* ZONE SETTINGS */

#grass {
    width: 100%;
    /* Let the height grow based on the text inside */
    min-height: 40vh; 
    background: #2e7d32;
    border-top: 15px solid #1b5e20;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
}

#cake-zone {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    height: 100vh;
    width: 100%;
    z-index: 2;
    padding-bottom: 20px;
}

#scroll-hint {
    position: absolute; 
    top: 20vh; 
    width: 100%; 
    text-align: center; 
    color: white; 
    font-size: 2rem;
    text-shadow: 1px 1px 10px rgba(0,0,0,0.8);
    z-index: 10;
}