/* General body styles */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #a8e6cf, #56ab2f);
    color: #1a3300;
    overflow: hidden;
}

/* Welcome card */
.welcome-card {
    background-color: rgba(255, 255, 255, 0.85);
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    text-align: center;
    max-width: 500px;
    animation: fadeIn 1.2s ease-out forwards;
}

/* Title */
.welcome-card h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

/* Subtitle */
.welcome-card p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

/* Button */
.welcome-card a {
    text-decoration: none;
    background-color: #3b7d0a;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: bold;
    transition: 0.3s;
}

.welcome-card img {
    max-width: 100%;   /* Ensures image doesn’t exceed card width */
    height: auto;      /* Maintains aspect ratio */
    border-radius: 3px; /* Optional: match card style */
    display: block;    /* Removes inline spacing issues */
    margin: 20px auto; /* Center the image with margin */
}


.welcome-card {
    position: relative;
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50px;
    max-width: 400px;
    margin: 100px auto;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.welcome-card a:hover {
    background-color: #2e5c08;
}

/* Fade-in animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Floating leaves effect */
.leaf {
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: #56ab2f;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
    100% { transform: translateY(0) rotate(360deg); }
}
