/* simidiot.net - Fairycore AI Idiot Garden */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --meadow-dawn: #F0EDE0;
    --pod-sepia: #F5EDD8;
    --fern-green: #4A7A4A;
    --firefly-gold: #D4C43A;
    --berry-magenta: #A04060;
    --vine-brown: #7A6A4A;
    --forest-dark: #1A2A1A;
    --moss-gray: #6A7A6A;
}
body {
    background: var(--meadow-dawn);
    color: var(--forest-dark);
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    line-height: 1.75;
    font-weight: 400;
    overflow-x: hidden;
    position: relative;
}

/* Fireflies */
.fireflies {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.firefly {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--firefly-gold);
    animation: glow 2s ease-in-out infinite;
}
@keyframes glow {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 1; box-shadow: 0 0 6px var(--firefly-gold); }
}

/* Hero */
#hero {
    text-align: center;
    padding: 5rem 2rem 3rem;
    position: relative;
    z-index: 1;
}
.hero-title {
    font-family: 'Amatic SC', cursive;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--forest-dark);
}
.hero-subtitle {
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    color: var(--moss-gray);
    margin-top: 0.25rem;
}

/* Garden */
#garden {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem 3rem;
    position: relative;
    z-index: 1;
}

/* Pods */
.pod {
    background: var(--pod-sepia);
    border: 2px solid var(--vine-brown);
    border-radius: 50% 50% 40% 40% / 40% 40% 50% 50%;
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.pod.visible {
    opacity: 1;
    transform: translateY(0);
}
.pod-large { max-width: 420px; }
.pod-medium { max-width: 340px; }
.pod-small { max-width: 280px; padding: 2rem; }
.pod-left { margin-right: auto; margin-left: 5%; }
.pod-right { margin-left: auto; margin-right: 5%; }
.pod-center { margin: 0 auto 2.5rem; }
.pod-label {
    font-family: 'Nunito', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--fern-green);
    display: block;
    margin-bottom: 0.5rem;
    text-align: center;
}
.pod-body {
    font-size: 0.95rem;
    color: var(--forest-dark);
    text-align: center;
}
.pod-status {
    font-family: 'Amatic SC', cursive;
    font-size: 1.2rem;
    color: var(--berry-magenta);
    display: block;
    text-align: center;
    margin-top: 0.75rem;
}

/* Section animation */
.section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Footer */
#footer {
    text-align: center;
    padding: 3rem 2rem;
    position: relative;
    z-index: 1;
}
.footer-text {
    font-family: 'Amatic SC', cursive;
    font-size: 1.3rem;
    color: var(--moss-gray);
}

/* Responsive */
@media (max-width: 600px) {
    .pod { max-width: 100% !important; margin-left: auto !important; margin-right: auto !important; }
}
