/* ================================
   TRASTEVERE PAGE
================================ */

.trastevere-page {
    font-family: 'AvenirLight', sans-serif;
    background-color: #ffffff;
    color: #333;
}

.trastevere-page a {
    text-decoration: none;
    color: inherit;
}

.trastevere-page h1,
.trastevere-page h2,
.trastevere-page h3,
.trastevere-page h4 {
    font-family: 'CinzelCustom', serif;
    color: #B09E80;
}

/* HERO */

.trastevere-hero {
    width: 100%;
    overflow: hidden;
}

.trastevere-hero-content {
    width: 100%;
    height: 320px; /* altezza del ritaglio */
    overflow: hidden;
}

.trastevere-hero-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center -560px;
    filter: brightness(1.08) contrast(0.95);
}

/* DESCRIPTION */

.trastevere-description {
    padding: 40px 15px;
    text-align: center;
}

.trastevere-description h2 {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 20px;
}

.trastevere-description p {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* AMENITIES */

.trastevere-amenities {
    background-color: #f4f4f4;
    padding: 40px 15px;
}

.trastevere-amenities h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.trastevere-amenities ul {
    list-style: none;
    padding: 0;
    font-size: 1.1rem;
}

.trastevere-amenities li {
    margin: 10px 0;
}

/* GALLERY */

.trastevere-gallery {
    padding: 40px 15px;
}

.trastevere-gallery h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.gallery-item img {
    width: 100%;
    border-radius: 8px;
}

/* ================================
   AMENITIES GRID
================================ */

.trastevere-amenities {
    background-color: #f4f4f4;
    padding: 50px 15px;
}

.trastevere-amenities-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.trastevere-amenities h2 {
    margin-bottom: 30px;
}

/* due colonne */
.amenities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 40px;
    list-style: none;
    padding: 0;
    text-align: left;
}

/* bullet elegante */
.amenities-grid li::before {
    content: "•";
    color: #B09E80;
    margin-right: 8px;
}

/* mobile */
@media (max-width: 600px) {
    .amenities-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* MAP */

.trastevere-map {
    padding: 40px 15px;
}

.trastevere-map h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.google-map iframe {
    width: 100%;
    height: 450px;
    border-radius: 8px;
}

/* DISTANCES */

.trastevere-distances {
    background-color: #f4f4f4;
    padding: 40px 15px;
}

.trastevere-distances h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.trastevere-distances ul {
    list-style: none;
    padding: 0;
    font-size: 1.1rem;
}

.trastevere-distances li {
    margin: 10px 0;
}

/* RESPONSIVE */

@media (max-width: 768px) {
    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .gallery {
        grid-template-columns: 1fr;
    }

    .check-action button {
        width: 100%;
    }
}
