/* Grow Smart - Choose Category Page */

/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

/* Body Styling */
body {
    background: linear-gradient(to bottom right, #f3faee, #e1f3d8);
    color: #2e2e2e;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* Main Container */
center {
    background-color: #ebf0ed;
    border-radius: 20px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
    padding: 40px 60px;
    text-align: center;
    max-width: 500px;
}

/* Logo Title */
h2 {
    color: #1b5e20;
    font-size: 26px;
    margin-bottom: 8px;
}

/* Page Title */
h1 {
    color: #2e7d32;
    font-size: 30px;
    margin-bottom: 30px;
}

/* Button Style */
button {
    background-color: #4caf50; /* Main green */
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 14px 40px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 200px;
}

button:hover {
    background-color: #43a047; /* Slightly darker green */
    transform: translateY(-3px);
}

/* Each option spaced */
p {
    margin: 15px 0;
}

/* Back Link */
a {
    text-decoration: none;
    color: #2e7d32;
    font-weight: 600;
    transition: color 0.3s ease;
}

a:hover {
    color: #1b5e20;
}

/* Add slight emoji bounce animation for the leaf */
h2 {
    animation: floatLeaf 3s ease-in-out infinite;
}

@keyframes floatLeaf {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

/* Responsive Design */
@media (max-width: 600px) {
    center {
        padding: 30px;
        max-width: 90%;
    }

    h1 {
        font-size: 26px;
    }

    button {
        font-size: 16px;
        width: 180px;
    }
}