
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #f4faff;
    color: #222;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #d0e8ff;
    padding: 1rem 2rem;
}

.logo {
    font-weight: bold;
    font-size: 1.8rem;
    color: #0066cc;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1rem;
}

nav a {
    text-decoration: none;
    color: #003366;
}

.hero {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(to bottom right, #d8efff, #ffffff);
}

.btn {
    background: #007bff;
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
}

.produse, .despre, .comanda {
    padding: 2rem;
}

.grid {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.produs {
    background: #ffffff;
    border: 1px solid #ccc;
    padding: 1rem;
    flex: 1;
    min-width: 200px;
    text-align: center;
}

form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
}

input, textarea, button {
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    background-color: #007bff;
    color: white;
    border: none;
}

footer {
    text-align: center;
    padding: 1rem;
    background: #d0e8ff;
    margin-top: 2rem;
}
