
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;700&display=swap');

body {
    font-family: 'Quicksand', sans-serif;
    background-color: #F9F6F2;
    color: #333;
}

.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://picsum.photos/seed/pizza-hero/1200/400');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero h1 {
    font-weight: 700;
}

.calculator-card {
    background-color: #FFFFFF;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-top: -2rem;
    z-index: 10;
    position: relative;
}

.form-label {
    font-weight: 500;
}

.form-control {
    border-radius: 0.5rem;
}

.btn-primary {
    background-image: linear-gradient(to right, #FFD700, #FFA500);
    border: none;
    border-radius: 50rem;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    color: #333;
    transition: transform 0.2s;
}

.btn-primary:hover {
    transform: scale(1.05);
    color: #333;
}

#results {
    display: none;
    margin-top: 2rem;
}

.result-category {
    margin-bottom: 1.5rem;
}

.result-category h3 {
    font-weight: 700;
    color: #D22B2B;
}

.result-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.result-item img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 1rem;
}
