:root {
    --sky: #b3ecff;
    --jungle: #2ecc71;
    --leaf: #27ae60;
    --beak: #f39c12;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Comic Sans MS", "Trebuchet MS", cursive;
    background: linear-gradient(var(--sky), #eafcff);
    overflow-x: hidden;
}

header {
    text-align: center;
    padding: 3rem 1rem 5rem;
    position: relative;
    z-index: 10;
}

header h1 {
    font-size: 3rem;
    color: #0b6e4f;
    margin-bottom: 0.5rem;
}

header p {
    font-size: 1.3rem;
    color: #064635;
}

.cloud {
    position: absolute;
    top: 20px;
    width: 120px;
    height: 50px;
    background: white;
    border-radius: 50px;
    opacity: 0.8;
    animation: float 30s linear infinite;
    z-index: 1;
}

.cloud::before,
.cloud::after {
    content: "";
    position: absolute;
    background: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    top: -30px;
}

.cloud::before {
    left: 15px;
}

.cloud::after {
    right: 15px;
}

.cloud-1 {
    top: 40px;
    animation-delay: 0s;
}

.cloud-2 {
    top: 100px;
    animation-delay: 10s;
}

@keyframes float {
    from {
        transform: translateX(-200px);
    }

    to {
        transform: translateX(120vw);
    }
}

section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.story {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    z-index: 5;
    position: relative;
}

.story h2 {
    color: #0b6e4f;
    font-size: 2.2rem;
    margin-top: 0;
}

.story p {
    font-size: 1.2rem;
    line-height: 1.6;
}

.parrots {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
    position: relative;
    z-index: 6;
}

.parrot {
    position: relative;
    width: 140px;
    height: 180px;
    cursor: pointer;
    animation: bob 3s ease-in-out infinite;
    z-index: 6;
}

.parrot:nth-child(2) {
    animation-delay: 1.5s;
}

@keyframes bob {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.body {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 120px;
    background: var(--jungle);
    border-radius: 60px 60px 40px 40px;
    z-index: 1;
}

.belly {
    position: absolute;
    bottom: 15px;
    left: 30px;
    width: 80px;
    height: 70px;
    background: #a3f7bf;
    border-radius: 50%;
    z-index: 2;
}

.head {
    position: absolute;
    top: 0;
    left: 25px;
    width: 90px;
    height: 90px;
    background: var(--leaf);
    border-radius: 50%;
    z-index: 3;
}

.eye {
    position: absolute;
    top: 30px;
    width: 12px;
    height: 12px;
    background: #000;
    border-radius: 50%;
    z-index: 4;
}

.eye.left {
    left: 25px;
}

.eye.right {
    right: 25px;
}

.beak {
    position: absolute;
    top: 45px;
    left: 38px;
    width: 14px;
    height: 20px;
    background: var(--beak);
    border-radius: 0 0 10px 10px;
    z-index: 5;
}

footer {
    background: linear-gradient(#2ecc71, #27ae60);
    color: white;
    text-align: center;
    padding: 2rem 1rem;
    margin-top: 4rem;
    z-index: 10;
    position: relative;
}

footer p {
    margin: 0;
    font-size: 1rem;
}