:root {
    --rosa: #e8a0b4;
    --rosa-scuro: #c9718a;
    --crema: #fdf6f2;
    --testo: #3a2b2e;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: "Segoe UI", Helvetica, Arial, sans-serif;
    background: var(--crema);
    color: var(--testo);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
}

.logo { font-size: 1.3em; font-weight: 700; color: var(--rosa-scuro); }

.navbar nav a {
    margin-left: 24px;
    text-decoration: none;
    color: var(--testo);
    font-weight: 500;
}

.navbar nav a:hover { color: var(--rosa-scuro); }

.hero {
    text-align: center;
    padding: 90px 20px;
    background: linear-gradient(160deg, var(--rosa), var(--rosa-scuro));
    color: #fff;
}

.hero h1 { font-size: 2.4em; margin-bottom: 14px; }
.hero p { font-size: 1.1em; opacity: 0.95; margin-bottom: 28px; }

.bottone-hero {
    display: inline-block;
    background: #fff;
    color: var(--rosa-scuro);
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
}

.servizi, .galleria, .prenota {
    padding: 60px 40px;
    text-align: center;
}

.servizi h2, .galleria h2, .prenota h2 {
    font-size: 1.8em;
    margin-bottom: 36px;
    color: var(--rosa-scuro);
}

.servizi-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.servizio-card {
    background: #fff;
    border-radius: 14px;
    padding: 24px;
    width: 200px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.servizio-icona { font-size: 2em; }
.servizio-card h3 { margin: 10px 0 6px; font-size: 1.1em; }
.servizio-card p { font-size: 0.9em; color: #777; margin-bottom: 10px; }
.servizio-prezzo { font-weight: 700; color: var(--rosa-scuro); font-size: 0.9em; }

.galleria { background: #fff; }

.galleria-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    max-width: 500px;
    margin: 0 auto;
}

.galleria-item {
    aspect-ratio: 1;
    background: var(--rosa);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2em;
}

#form-prenota {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 360px;
    margin: 0 auto;
    text-align: left;
}

#form-prenota input, #form-prenota select {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1em;
}

.prenota-riga { display: flex; gap: 10px; }
.prenota-riga input { flex: 1; }

#form-prenota button {
    background: var(--rosa-scuro);
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
}

.prenota-successo {
    max-width: 360px;
    margin: 0 auto;
    background: #e6f7ec;
    border-radius: 10px;
    padding: 20px;
    color: #1f7a3d;
    font-weight: 600;
}

footer {
    text-align: center;
    padding: 24px;
    font-size: 0.8em;
    color: #999;
}
