/* Flower-themed beautiful stylesheet */

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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    min-height: 100vh;
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 50%, #ffecd2 100%);
    overflow-x: hidden;
    position: relative;
}

/* Animated flower background */
.flower-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.flower {
    position: absolute;
    font-size: 2rem;
    animation: float 15s ease-in-out infinite;
    opacity: 0.6;
}

.flower:nth-child(1) { left: 5%; top: 10%; animation-delay: 0s; }
.flower:nth-child(2) { left: 15%; top: 60%; animation-delay: 2s; font-size: 1.5rem; }
.flower:nth-child(3) { left: 25%; top: 30%; animation-delay: 4s; }
.flower:nth-child(4) { left: 35%; top: 80%; animation-delay: 1s; font-size: 2.5rem; }
.flower:nth-child(5) { left: 45%; top: 15%; animation-delay: 3s; }
.flower:nth-child(6) { left: 55%; top: 70%; animation-delay: 5s; font-size: 1.8rem; }
.flower:nth-child(7) { left: 65%; top: 25%; animation-delay: 2.5s; }
.flower:nth-child(8) { left: 75%; top: 55%; animation-delay: 4.5s; font-size: 2.2rem; }
.flower:nth-child(9) { left: 85%; top: 40%; animation-delay: 1.5s; }
.flower:nth-child(10) { left: 92%; top: 85%; animation-delay: 3.5s; font-size: 1.6rem; }
.flower:nth-child(11) { left: 10%; top: 90%; animation-delay: 0.5s; }
.flower:nth-child(12) { left: 50%; top: 5%; animation-delay: 2.2s; font-size: 2.3rem; }

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(5deg);
    }
    50% {
        transform: translateY(0) rotate(0deg);
    }
    75% {
        transform: translateY(20px) rotate(-5deg);
    }
}

/* Main container */
.container {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

/* Header section */
header {
    text-align: center;
    margin-bottom: 3rem;
}

.logo {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bloom 2s ease-out;
}

@keyframes bloom {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

h1 {
    font-size: 3rem;
    color: #5c3d2e;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #e75480, #ff6b6b, #ee82ee, #e75480);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient 5s ease infinite;
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.subtitle {
    font-size: 1.3rem;
    color: #7d5a50;
    font-style: italic;
}

/* Main content card */
.card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    max-width: 600px;
    width: 100%;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.1),
        0 0 40px rgba(255, 182, 193, 0.3);
    border: 2px solid rgba(255, 182, 193, 0.5);
    text-align: center;
    animation: fadeInUp 1s ease-out 0.5s backwards;
}

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

.card h2 {
    color: #5c3d2e;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.card p {
    color: #6d4c41;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

/* Feature list */
.features {
    list-style: none;
    text-align: left;
    margin: 2rem 0;
}

.features li {
    padding: 0.8rem 0;
    color: #5c3d2e;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px dashed rgba(233, 150, 160, 0.3);
}

.features li:last-child {
    border-bottom: none;
}

.features li span {
    font-size: 1.5rem;
}

/* Call to action button */
.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee82ee 50%, #ff6b6b 100%);
    background-size: 200% 200%;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    margin-top: 1.5rem;
    box-shadow: 0 10px 30px rgba(238, 130, 238, 0.4);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    animation: gradient 3s ease infinite;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(238, 130, 238, 0.5);
}

/* Decorative divider */
.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    color: #e996a0;
    font-size: 1.2rem;
}

.divider::before,
.divider::after {
    content: '';
    height: 1px;
    width: 80px;
    background: linear-gradient(90deg, transparent, #e996a0, transparent);
}

/* Footer */
footer {
    margin-top: 3rem;
    text-align: center;
    color: #7d5a50;
    font-size: 0.9rem;
}

footer p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Petal rain effect */
.petal {
    position: fixed;
    width: 15px;
    height: 15px;
    background: linear-gradient(135deg, #ffb7c5 0%, #ff69b4 100%);
    border-radius: 150% 0 150% 0;
    animation: fall linear infinite;
    opacity: 0.7;
    z-index: 0;
    pointer-events: none;
}

@keyframes fall {
    0% {
        transform: translateY(-100vh) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}

/* Responsive design */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    .logo {
        font-size: 3rem;
    }

    .card {
        padding: 2rem;
        margin: 1rem;
    }

    .features li {
        font-size: 0.95rem;
    }
}

/* Hover effects for interactive elements */
.card:hover {
    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.12),
        0 0 50px rgba(255, 182, 193, 0.4);
}

/* Garden scene at bottom */
.garden {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    pointer-events: none;
    z-index: 0;
}

.garden-flower {
    font-size: 2rem;
    animation: sway 3s ease-in-out infinite;
    transform-origin: bottom center;
}

.garden-flower:nth-child(odd) {
    animation-delay: 0.5s;
}

@keyframes sway {
    0%, 100% {
        transform: rotate(-5deg);
    }
    50% {
        transform: rotate(5deg);
    }
}
