/* Homepage Specific Styles */

/* Header Section */
header {
    padding: 120px 20px 40px;
    text-align: center;
}

header h1 {
    font-size: 36px;
    font-weight: 600;
    color: #1e1e1e;
}

header p {
    font-size: 18px;
    color: #555;
    margin-top: 10px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Calculator Form */
#calculator {
    max-width: 600px;
    margin: auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

#calorieForm {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

#calorieForm label {
    font-size: 16px;
    font-weight: 500;
    width: 100%;
    max-width: 400px;
    text-align: center;
    display: block;
    margin: 0 auto;
}


#calorieForm input, #calorieForm select {
    width: 100%;
    max-width: 400px;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    text-align: center;
}

#calorieForm button {
    width: 33%;
    max-width: 400px;
    padding: 12px;
    background: black;
    color: white;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 20px;
    font-size: 16px;
}

#calorieForm button:hover {
    background: #333333;
}

/* Results Section */
#results {
    max-width: 600px;
    margin: 30px auto;
    padding: 20px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

#results p {
    font-size: 18px;
    font-weight: 500;
    margin: 10px 0;
}

/* Responsive */
@media (max-width: 768px) {
    #calculator, #results {
        width: 90%;
    }
}
