@charset "utf-8";
/* REGIONAL INDEX */

/* SITE HEADER */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    background: rgba(255,255,255,0.65);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(0,0,0,0.08);
    padding: 0.25rem 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.10);

    /* NEW: make the header behave like your town pages */
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.site-header .nav-links a {
    color: #000;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links a {
    color: #000;
}
.nav-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.hamburger span {
    background: white;
}

.mobile-nav {
    display: none;
}

.mobile-nav.open {
    display: flex;
}

/* GLOBAL */
body {
    margin: 0;
    padding: 90px 0 0 0;
    font-family: 'Inter', sans-serif;
    background: #f7f7f7;
    color: #222;
    line-height: 1.6;
}

.region-index {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 1.5rem;
}

.region-title {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: -0.5px;
}

/* REGIONAL HERO */
.region-hero {
    position: relative;
    width: 100%;
    height: 55vh;
    overflow: hidden;
}
.region-hero {
    margin-top: -70px; /* adjust between -50px and -90px */
}

.region-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* HERO OVERLAY */
.region-hero-overlay {
    position: absolute;
    bottom: 2.5rem;
    left: 2.5rem;
    right: 2.5rem;
    z-index: 10;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.55) 0%,
        rgba(0,0,0,0.35) 40%,
        rgba(0,0,0,0) 100%
    );
    padding: 1.5rem 2rem;
    border-radius: 4px;
}

/* HERO TYPOGRAPHY */
.region-hero-title {
    font-size: 2.25rem; /* was 3rem */
    font-weight: 700;
    margin: 0;
    color: white;
    text-shadow: 0 6px 24px rgba(0,0,0,0.55);
}

.region-hero-subtitle {
    font-size: 1.2rem;   /* was 1.4rem */
    font-weight: 300;
    margin-top: 0.3rem;
    color: white;
    text-shadow: 0 4px 18px rgba(0,0,0,0.5);
}

/* MOBILE HERO */
@media (max-width: 768px) {
    .region-hero {
        height: 45vh;
    }

    .region-hero-title {
        font-size: 2rem;
    }

    .region-hero-subtitle {
        font-size: 1.1rem;
    }

    .region-hero-overlay {
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
        padding: 1rem 1.2rem;
    }
}

/* GRID LAYOUT */
.region-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

/* CARD */
.region-card {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    background: #000;
    opacity: 0;
    transform: translateY(30px) scale(0.97);
    transition:
        opacity 1s ease-out,
        transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.region-card.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.region-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.25);
}

/* CARD IMAGE */
.region-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* CARD OVERLAY */
.region-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 1.2rem;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.75) 0%,
        rgba(0,0,0,0.45) 50%,
        rgba(0,0,0,0) 100%
    );
}

.region-card-overlay h3 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: -0.3px;
}

/* CARD LINK COLOR */
.region-card-overlay a,
.region-card-overlay a:visited {
    color: white;
    text-decoration: none;
}

.region-card-overlay a:hover {
    color: #f0f0f0;
}

/* BREADCRUMBS */
.breadcrumbs {
    font-size: 0.95rem;
    margin: 1.5rem 0;
    color: #666;
}

.breadcrumbs a {
    color: #444;
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.breadcrumbs span {
    margin: 0 0.4rem;
}

.breadcrumbs .current {
    color: #999;
}
.breadcrumbs {
    padding: 0.5rem 2rem;
}

/* FOOTER */
.site-footer {
    background: #111;
    color: #ccc;
    padding: 2rem 0;
    margin-top: 4rem;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links a {
    color: #ccc;
    margin-left: 1.5rem;
    text-decoration: none;
}

.footer-links a:hover {
    color: white;
}
/* added to go with the float upward hero image */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    background: rgba(255,255,255,0.65);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(0,0,0,0.08);
    padding: 1rem 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.10);
}
.region-hero {
    margin-top: -70px; /* adjust between -50px and -90px depending on your hero image */
}
.region-grid {
    padding-top: 2rem;
}
