/* Base styles for small screens (<768px, implicit Mobile-First logic goes here) */
@media (max-width: 767.98px) {
    .header-hero {
        /* Make BG subtle on mobile */
        background: url('https://via.placeholder.com/800x600.png?text=Subtle+Mobile+Map') no-repeat center center/cover;
        background-color: #f8f9fa;
        background-blend-mode: overlay;
        min-height: 60vh;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .section-title {
        font-size: 2.3rem;
    }

    .body-text,
    p,
    li {
        font-size: 16px;
    }

    .accordion .btn-link {
        font-size: 18px;
    }

    .content-title {
        font-size: 20px;
    }

    .gallery-row img {
        margin-bottom: 2rem;
    }
}

/* Devices < 1200px (Navbar Collapsed State) */
@media (max-width: 1199.98px) {
    .navbar {
        background-color: #ffffff !important;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    }

    .navbar.py-3 {
        padding-top: 25px !important;
        padding-bottom: 25px !important;
    }

    .navbar-nav {
        text-align: right;
        margin-top: 50px;
    }

    .navbar-brand img {
        width: 200px;
    }

    .hero-sect {
        min-height: 50vh;
    }
}

/* Devices >= 768px (Tablets and larger) */
@media (min-width: 768px) {
    .hero-title {
        font-size: 5.5rem;
    }

    .section-title {
        font-size: 3.5rem;
    }

    .body-text,
    p,
    li {
        font-size: 1rem;
    }

    .nav-link {
        font-size: 1.2rem;
        margin: 0 0.8rem;
    }
}

@media (max-width: 575px) {
    .hero-sect {
        min-height: 40vh;
    }

    .subhero-sect {
        margin-top: -80px;
    }

    .section-title::before,
    .decorative-line {
        width: 150px;
    }
}

/* Devices >= 1200px (Extra Large Desktops) */
@media (min-width: 1200px) {
    .navbar {
        padding-left: 3rem;
        padding-right: 3rem;
        height: 100px;
    }
}


/* Devices >= 992px (Desktops) */
@media (min-width: 992px) {
    .hero-title {
        font-size: 6.5rem;
    }

    .section-title {
        font-size: 4rem;
    }

    .nav-link {
        margin: 0 1.2rem;
    }
}