@import url('https://fonts.googleapis.com/css2?family=SF+Pro+Display:wght@400;600&display=swap');

body {
    background: linear-gradient(135deg, #d1e7dd, #fefae0);
    color: #1f2937;
    font-family: 'SF Pro Display', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100vh;
    animation: fadeIn 1s ease-in-out;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideDown {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

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

/* Title */
h1 {
    font-weight: 600;
    font-size: 3rem;
    margin: 20px 0;
    text-align: center;
    color: #0f5132;
}

/* Inputs */
.input-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 80%;
    max-width: 400px;
}

input {
    padding: 12px 16px;
    font-size: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #ffffff;
    color: #1f2937;
}

/* Button */
button {
    padding: 12px 24px;
    background: #0f5132;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

button:hover {
    background-color: #14532d;
    transform: translateY(-2px);
}

/* Results */
#results {
    margin-top: 20px;
    padding: 20px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    overflow-y: auto;
    max-height: 300px;
    color: #0f5132;
}

#results div {
    margin-bottom: 10px;
    padding: 10px;
    background: #e5e7eb;
    color: #1f2937;
    border-radius: 8px;
}

/* Logo */
#Logo {
    margin-bottom: 20px;
}

#LogoImg {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 20px;
    animation: slideDown 1s ease-in-out;
    border: 4px solid #0f5132;
}

/* Dropdown Menu */
#dropdown-menu {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 20;
}

#menu-icon {
    width: 50px;
    height: 50px;
    background: #0f5132;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

#menu-icon:hover {
    background-color: #14532d;
    transform: scale(1.1);
}

#menu-icon .line {
    width: 20px;
    height: 2px;
    background-color: #ffffff;
    margin: 3px 0;
}

#menu-options {
    display: none;
    position: absolute;
    top: 50px;
    left: 0;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    width: 180px;
}

#menu-options.show {
    display: block;
}

#menu-options a {
    display: block;
    padding: 12px 18px;
    text-decoration: none;
    color: #1f2937;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

#menu-options a:hover {
    background-color: #e9ecef;
}

/* Mobile */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    h1 {
        font-size: 2.5rem;
    }

    input {
        width: 90%;
    }

    button {
        width: 90%;
    }

    #results {
        width: 90%;
    }

    #menu-icon {
        width: 42px;
        height: 42px;
    }

    #menu-icon .line {
        width: 20px;
        height: 2px;
    }

    #menu-options {
        top: 52px;
        width: 150px;
    }

    #LogoImg {
        width: 100px;
    }
}
