/* PAGE HERO */
.anopoli-hero-bg {
    background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.65)), url("img/out2.jpg");
    background-size: cover;
    background-position: center;
}

/* reuse the .page-hero block from style_gallery.css */
.page-hero {
    min-height: 55vh;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 5rem;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-hero-content .hero-eyebrow {
    margin-bottom: 1rem;
}

.page-hero-content h1 {
    font-family: 'Cormorant Garamond', 'EB Garamond', serif;
    font-weight: 300;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--warm-white);
    line-height: 1.1;
}

.page-hero-content h1 em {
    color: var(--gold-bright);
    font-style: italic;
}

/* INTRO */
.anopoli-intro {
    padding: 6rem 4rem;
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.anopoli-intro .section-tag {
    margin-bottom: 0.8rem;
}

.anopoli-intro .section-title {
    margin-bottom: 2.5rem;
}

.anopoli-intro-body p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--muted);
    margin-bottom: 1.4rem;
    text-align: left;
}

.anopoli-intro-body p:last-child {
    margin-bottom: 0;
}

/* DESTINATIONS */
.destinations-section {
    padding: 6rem 4rem 8rem;
    max-width: 1300px;
    margin: 0 auto;
}

.destinations-header {
    text-align: center;
    margin-bottom: 4rem;
}

.destinations-header .section-tag {
    margin-bottom: 0.8rem;
}

/* PLACES LIST */
.places-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 1.1rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.place-pill {
    font-family: 'Cinzel', 'Alegreya SC', serif;
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold-bright);
    background: var(--dark-3);
    border: 1px solid rgba(201, 168, 76, 0.2);
    padding: 0.9rem 1.6rem;
    border-radius: 999px;
    transition: border-color 0.3s, transform 0.3s, background 0.3s;
    cursor: default;
}

.place-pill:hover {
    border-color: rgba(201, 168, 76, 0.55);
    background: var(--dark-4);
    transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .destinations-section {
        padding: 4rem 2rem 6rem;
    }

    .anopoli-intro {
        padding: 4rem 2rem;
    }
}

@media (max-width: 560px) {
    .places-list {
        gap: 0.7rem;
    }

    .place-pill {
        font-size: 0.74rem;
        padding: 0.75rem 1.2rem;
    }
}
