/*********************************************
  UDZUNGWA MOUNTAINS NATIONAL PARK PAGE STYLES
**********************************************/

/* HERO SECTION */
.udzungwa-hero {
    position: relative;
    height: 80vh;
    overflow: hidden;
}
.udzungwa-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.udzungwa-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    padding: 1rem;
}
.udzungwa-hero-overlay h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}
.udzungwa-hero-overlay p {
    font-size: 1.2rem;
}

/* AT A GLANCE SECTION */
.udzungwa-glance {
    padding: 2rem 5%;
    background: var(--beige);
    text-align: center;
}
.udzungwa-glance h2 {
    margin-bottom: 1rem;
    color: var(--brown);
}
.udzungwa-glance .glance-grid {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}
.udzungwa-glance .glance-item {
    flex: 1 1 220px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 1rem;
    text-align: center;
}
.udzungwa-glance .glance-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--brown);
}

/* OVERVIEW SECTION */
.udzungwa-overview {
    padding: 2rem 5%;
    background: #fff;
    text-align: center;
}
.udzungwa-overview h2 {
    margin-bottom: 1rem;
    color: var(--brown);
}
.udzungwa-overview p {
    max-width: 900px;
    margin: 0 auto 1rem auto;
    line-height: 1.8;
    text-align: left;
}

/* ACTIVITIES SECTION */
.udzungwa-activities {
    padding: 2rem 5%;
    background: var(--beige);
    text-align: center;
}
.udzungwa-activities h2 {
    margin-bottom: 1rem;
    color: var(--brown);
}
.udzungwa-activities p {
    max-width: 900px;
    margin: 0 auto 1rem auto;
    line-height: 1.8;
    text-align: left;
}
.udzungwa-activities ul {
    max-width: 800px;
    margin: 0 auto;
    list-style: none; /* Remove default bullets */
    padding-left: 0;
}
.udzungwa-activities ul li {
    position: relative;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem; /* Space for custom bullet */
    text-align: left;
}
.udzungwa-activities ul li::before {
    content: "•"; /* Custom bullet */
    position: absolute;
    left: 0;
    color: var(--brown);
    font-size: 1.2rem;
    line-height: 1;
}

/* WILDLIFE HIGHLIGHTS SECTION */
.udzungwa-wildlife {
    padding: 2rem 5%;
    background: #fff;
    text-align: center;
}
.udzungwa-wildlife h2 {
    margin-bottom: 1rem;
    color: var(--brown);
}
.udzungwa-wildlife p {
    max-width: 900px;
    margin: 0 auto 1rem auto;
    line-height: 1.8;
    text-align: left;
}
.udzungwa-wildlife ul {
    max-width: 800px;
    margin: 0 auto;
    list-style: none; /* Remove default bullets */
    padding-left: 0;
}
.udzungwa-wildlife ul li {
    position: relative;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem; /* Space for custom bullet */
    text-align: left;
}
.udzungwa-wildlife ul li::before {
    content: "•"; /* Custom bullet */
    position: absolute;
    left: 0;
    color: var(--brown);
    font-size: 1.2rem;
    line-height: 1;
}

/* FINAL CTA SECTION */
.udzungwa-book {
    padding: 2rem 5%;
    background: var(--beige);
    text-align: center;
}
.udzungwa-book h2 {
    margin-bottom: 1rem;
    color: var(--brown);
}
.udzungwa-book p {
    max-width: 900px;
    margin: 0 auto 1.5rem auto;
    line-height: 1.8;
    text-align: left;
}
.final-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 768px) {
    .glance-grid, .serengeti-best-time-grid {
        flex-direction: column;
        align-items: center;
    }
}
