/* === ALBOREA AREE DI SERVIZIO === */

.alborea-aree-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

/* CARD */
.alborea-area-card {
    background: #ffffff;
    border-radius: 12px; /* leggermente più morbido */
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

/* TITOLO */
.alborea-area-card h3 {
    margin: 16px 16px 6px;
    font-size: 1.15rem; /* leggermente ridotto */
    line-height: 1.3;
    color: #1A3853;
}
.alborea-title {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.alborea-link-scheda {
    margin-left: auto;          /* 👈 spinge il link a destra */
    font-size: 0.75rem;
    font-weight: 500;
    color: #1A3853;
    text-decoration: underline;
    white-space: nowrap;
}

.alborea-link-scheda:hover {
    color: #ff0000;
}


/* IMMAGINE */
.alborea-area-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
}

/* BADGE TOP RATED */
.alborea-badge {
    display: inline-block;
    margin: 8px 16px 6px; /* più aria dal titolo */
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 12px;
    background: #fff4e5;
    color: #ff9900;
}

/* ===== RATING GOOGLE ===== */

.alborea-rating {
    margin: 4px 16px 10px;
    color: #504e4e;
}

.rating-text {
    font-size: 0.75rem;
    color: #6b6b6b; /* più soft */
    margin-top: 2px;
}

/* Stelle */
.stars {
    position: relative;
    display: inline-block;
    font-size: 14px; /* leggermente più piccole */
    line-height: 1;
    color: #ddd;
}

.stars::before {
    content: "★★★★★";
}

.stars span {
    position: absolute;
    top: 0;
    left: 0;
    white-space: nowrap;
    overflow: hidden;
    color: #ff0000;
}

.stars span::before {
    content: "★★★★★";
}

/* RECENSIONE */
.alborea-review {
    margin: 0 16px 14px;
    padding: 12px 14px;
    background: #f7f7f7;
    border-left: 3px solid #ff0000;
    border-radius: 6px;
    font-style: italic;
    font-size: 0.82rem;
    line-height: 1.45;
}

.alborea-review cite {
    display: block;
    margin-top: 6px;
    font-size: 0.75rem;
    color: #555;
}

/* ==================================================
   SERVIZI – CERCHIO COLORATO + ICONA BIANCA
================================================== */

.alborea-services {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px; /* meno invadente */
    padding: 8px 16px 12px;
    margin: 0;
}

.alborea-service {
    width: 40px;   /* ridotto */
    height: 40px;
    border-radius: 50%;
    background: #1A3853; /* blu istituzionale */
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s ease;
}

.alborea-service svg {
    width: 26px; /* più proporzionato */
    height: 26px;
    fill: currentColor;
    stroke: none;
}

.alborea-service:hover {
    background: #ff0000; /* rosso solo in hover */
}

/* CTA */
.alborea-cta {
    display: flex;
    gap: 10px;
    padding: 14px 16px 16px;
    margin-top: auto;
}

.alborea-cta a {
    flex: 1;
    text-align: center;
    padding: 9px 10px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.78rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

/* CTA SECONDARIA */
.alborea-cta .btn-maps {
    background: #1A3853;
    color: #ffffff;
    opacity: 0.9; /* meno dominante */
}

/* CTA PRIMARIA */
.alborea-cta .btn-review {
    background: #ff0000;
    color: #ffffff;
}

.alborea-cta a:hover {
    opacity: 1;
    transform: translateY(-2px);
}

/* LEGENDA */
.alborea-legenda {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 40px 0;
}

.alborea-legenda-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #1A3853;
}

/* =========================
   LEGENDA SERVIZI
========================= */

.alborea-legenda {
    margin: 48px auto 0;
    padding-top: 24px;
    max-width: 1100px;
    border-top: 1px solid #eee;
    text-align: center;
}

.alborea-legenda h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1A3853;
    margin-bottom: 24px;
}

/* Lista */
.alborea-legenda-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 18px 32px;
    list-style: none;
    padding: 0;
    margin: 0 auto;
    justify-items: start;
    max-width: 900px;
}

/* Singola voce */
.alborea-legenda-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: #1A3853;
}

/* Icona */
.alborea-legenda-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #1A3853;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.alborea-legenda-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    stroke: none;
}

/* INDIRIZZO AREA DI SERVIZIO */

.alborea-address {
    margin: 2px 16px 8px;
    font-size: 0.8rem;
    line-height: 1.35;
    color: #6b6b6b;
}


/* MOBILE */
@media (max-width: 480px) {
    .alborea-area-image {
        height: 160px;
    }
}
