:root {
    --primary-orange: #f4a261;
    --primary-yellow: #e9c46a;
    --dark-text: #264653;
    --light-cream: #FFFDF7;
    --accent-red: #e76f51;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--light-cream);
    color: var(--dark-text);
    height: 100vh;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* --- Creative Banner Background --- */
.banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: linear-gradient(180deg, #87CEEB 0%, var(--light-cream) 60%);
}

.sun-shape {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-yellow) 20%, var(--primary-orange) 80%);
    border-radius: 50%;
    opacity: 0.8;
    box-shadow: 0 0 80px rgba(244, 162, 97, 0.4);
    animation: sunRise 2s ease-out forwards, glow 4s infinite alternate;
}

.cloud {
    position: absolute;
    background: #fff;
    border-radius: 50px;
    opacity: 0.9;
    filter: blur(2px);
}

.cloud-1 {
    width: 200px;
    height: 60px;
    top: 15%;
    left: 10%;
    animation: floatCloud 25s linear infinite;
}

.cloud-2 {
    width: 150px;
    height: 45px;
    top: 25%;
    right: 15%;
    animation: floatCloud 35s linear infinite reverse;
}

/* --- Main Content --- */
.content-wrapper {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    z-index: 1;
}

.logo-container {
    margin-bottom: 2rem;
    animation: fadeDown 1s ease-out;
}

.logo {
    max-width: 280px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1));
}

.text-content {
    background: rgba(255, 255, 255, 0.85);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    max-width: 600px;
    width: 100%;
    animation: fadeUp 1s ease-out 0.3s backwards;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

h1 {
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent-red);
    line-height: 1.2;
}

p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--dark-text);
    opacity: 0.9;
}

/* --- Newsletter --- */
.newsletter-mockup {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

input {
    padding: 12px 20px;
    border-radius: 50px;
    border: 2px solid #ddd;
    outline: none;
    font-family: inherit;
    flex-grow: 1;
    max-width: 300px;
    transition: 0.3s;
}

input:focus {
    border-color: var(--primary-orange);
}

button {
    padding: 12px 30px;
    border-radius: 50px;
    border: none;
    background: var(--accent-red);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
}

button:hover {
    background: #d65d40;
    transform: translateY(-2px);
}

/* --- Footer --- */
footer {
    text-align: center;
    padding: 1.5rem;
    font-size: 0.9rem;
    color: var(--dark-text);
    opacity: 0.7;
    z-index: 1;
}

/* --- Animations --- */
@keyframes sunRise {
    from { transform: translate(-50%, 100%); opacity: 0; }
    to { transform: translate(-50%, 0); opacity: 0.8; }
}

@keyframes glow {
    from { box-shadow: 0 0 50px rgba(244, 162, 97, 0.4); }
    to { box-shadow: 0 0 100px rgba(244, 162, 97, 0.7); }
}

@keyframes floatCloud {
    from { transform: translateX(0); }
    to { transform: translateX(50px); }
}

@keyframes fadeDown {
    from { transform: translateY(-30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes fadeUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .sun-shape {
        width: 400px;
        height: 400px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .text-content {
        padding: 1.5rem;
        margin: 0 1rem;
    }
}

@media (max-width: 480px) {
    .sun-shape {
        width: 300px;
        height: 300px;
    }

    h1 {
        font-size: 1.8rem;
    }

    .newsletter-mockup {
        flex-direction: column;
    }

    input, button {
        width: 100%;
        max-width: none;
    }
}
