* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background-color: #ffffff;
    color: #1f3b5b;
    line-height: 1.6;
}

/* HEADER */
header {
    top: 0;
    background: linear-gradient(135deg, #1f3b5b, #3f5f8f);
    color: white;
    z-index: 1000;
}
/* Header normale */
header.hero {
    background: linear-gradient(135deg, #1f3b5b, #3f5f8f);
    color: white;
    text-align: center;
    padding: 60px 20px;
}

/* MENU sticky */
nav.menu {
    position: sticky;
    top: 0;
    background-color: #1f3b5b;
    padding: 15px 0;
    text-align: center;
    z-index: 1000;
}

/* Link menu */
nav.menu a {
    color: white;
    font-weight: bold;
    text-decoration: none;
}

nav.menu a:hover {
    text-decoration: underline;
}


.logo {
    width: 120px;
    margin-bottom: 20px;
}

header h1 {
    font-size: 3rem;
}

header p {
    font-size: 1.2rem;
    margin-top: 10px;
}

/* SEZIONI */
section {
    padding: 60px 20px;
    max-width: 900px;
    margin: auto;
}

section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

section p,
section ul {
    font-size: 1.1rem;
    text-align: center;
}

section ul {
    list-style: none;
}

section ul li {
    margin: 10px 0;
}

/* LINK */
a {
    color: #3f5f8f;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

/* SFONDO CHIARO */
.bg-light {
    background-color: #f5f7fa;
}

/* FOOTER */
footer {
    background-color: #1f3b5b;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
}

 

nav.menu a {
    margin: 0 15px;
    color: white;
    font-weight: bold;
    text-decoration: none;
}

nav.menu a:hover {
    text-decoration: underline;
}

/* Tabelle trattamenti */
table {
    width: 100%;
    max-width: 700px;
    margin: 20px auto;
    border-collapse: collapse;
}

table td {
    padding: 10px;
    border-bottom: 1px solid #ccc;
}

table td:first-child {
    text-align: left;
}

table td:last-child {
    text-align: right;
    font-weight: bold;
}

/* Galleria foto */
.gallery {
    padding: 60px 20px;
    max-width: 1000px;
    margin: auto;
}

.gallery h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
}

/* Grid immagini */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

.menu a.active {
    color: #f2d7c6;
    border-bottom: 2px solid #f2d7c6;
}


.menu a {
    text-decoration: none;
    padding: 10px 15px;
    transition: color 0.3s, border-bottom 0.3s;
}

.menu a:hover {
    color: #f2d7c6;
}

#contatti a:hover {
    color: #1f3b5b;
}

/* Pulsante prenota */
.btn-primary {
    display: inline-block;
    background-color: #f2d7c6;
    color: #1f3b5b;
    font-weight: bold;
    padding: 12px 25px;
    margin-top: 20px;
    border-radius: 25px;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
}

.btn-primary:hover {
    background-color: #e0c2ab;
    color: #122c45;
}

.chi-sono-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.chi-sono-wrapper img.chi-sono-img {
    width: 200px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

footer a {
    color: #f2d7c6; /* beige/rosa chiaro, leggibile sul blu scuro */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

footer a:hover {
    color: #ffffff; /* diventa bianco quando passi sopra */
}

/* Sezione recensioni */
#recensioni {
    padding: 60px 20px;
    text-align: center;
}

#recensioni h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.recensioni-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.recensione-card {
    display: flex; /* per centrare il testo */
    align-items: center;
    justify-content: center;
    min-width: 200px; /* larghezza minima */
    padding: 20px 30px;
    background-color: #1f3b5b;
    color: #f2d7c6;
    font-weight: bold;
    border-radius: 12px;
    text-decoration: none;
    transition: background 0.3s, transform 0.3s;
    text-align: center;
}


.recensione-card:hover {
    background-color: #3f5f8f;
    transform: translateY(-5px);
    color: #fff;
}

