/* ===========================
   PUBLIC WEBSITE STYLES
=========================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #198754;
    --primary-dark: #157347;
    --light: #f8f9fa;
    --text: #212529;
    --muted: #6c757d;
    --shadow: 0 10px 30px rgba(0,0,0,.08);
    --radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins',sans-serif;
    background: #fff;
    color: var(--text);
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

section {
    padding: 80px 0;
}

/* ===========================
   NAVBAR
=========================== */

.navbar {
    background: #fff;
    box-shadow: var(--shadow);
    padding: 15px 0;
    z-index: 999;
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary) !important;
    font-size: 1.4rem;
}

    .navbar-brand small {
        display: block;
        color: var(--muted);
        font-size: .75rem;
        font-weight: 400;
    }

.nav-link {
    color: var(--text) !important;
    font-weight: 500;
    margin-left: 12px;
    transition: .3s;
}

    .nav-link:hover {
        color: var(--primary) !important;
    }

    .nav-link.active {
        color: var(--primary) !important;
        font-weight: 600;
    }

.navbar-brand img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.navbar-brand {
    line-height: 1.1;
}

    .navbar-brand small {
        font-size: .75rem;
        color: #6c757d;
    }

/* ===========================
   HERO
=========================== */

.hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

    .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,.5);
    }

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    color: white;
}

    .hero-content h5 {
        letter-spacing: 5px;
        font-weight: 500;
    }

    .hero-content h1 {
        font-size: 4rem;
        font-weight: 700;
        margin: 20px 0;
    }

    .hero-content p {
        font-size: 1.1rem;
        max-width: 700px;
    }

    .hero-content .btn {
        margin-top: 30px;
        padding: 12px 35px;
        border-radius: 50px;
    }

/* ===========================
   CARDS
=========================== */

.content-card {
    border: none;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: .3s;
}

    .content-card:hover {
        transform: translateY(-8px);
    }

    .content-card img {
        height: 220px;
        object-fit: cover;
    }

    .content-card .card-body {
        padding: 20px;
    }

/* ===========================
   SECTION TITLE
=========================== */

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

    .section-title h2 {
        font-weight: 700;
        color: var(--primary);
    }

    .section-title p {
        color: var(--muted);
    }

/* ===========================
   FOOTER
=========================== */

footer {
    background: #212529;
    color: white;
    padding: 60px 0 20px;
}

    footer h5 {
        margin-bottom: 20px;
    }

    footer a {
        color: #ddd;
    }

        footer a:hover {
            color: white;
        }
/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    font-family: 'Poppins',sans-serif;
}

body {
    background: #f8f9fa;
}

/* NAVBAR */

.navbar {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,.08);
}

.navbar-brand {
    line-height: 1.1;
}

    .navbar-brand img {
        width: 50px;
        height: 50px;
        object-fit: contain;
    }

    .navbar-brand small {
        color: #777;
        font-size: .75rem;
    }

.nav-link {
    color: #444 !important;
    font-weight: 500;
    margin: 0 8px;
}

    .nav-link:hover,
    .nav-link.active {
        color: #198754 !important;
    }

/* HERO */

.hero {
    height: 85vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.45);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    color: white;
    text-align: center;
}

    .hero-content h5 {
        letter-spacing: 4px;
        margin-bottom: 15px;
    }

    .hero-content h1 {
        font-size: 4rem;
        font-weight: 700;
    }

    .hero-content p {
        font-size: 1.2rem;
        margin: 25px 0;
    }

/* SECTION */

section {
    padding: 80px 0;
}

    section h2 {
        font-weight: 700;
        margin-bottom: 30px;
    }

/* CARD */

.card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: .3s;
}

    .card:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 30px rgba(0,0,0,.12);
    }

    .card img {
        height: 220px;
        object-fit: cover;
    }

/* GALLERY */

.gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
}

/* FOOTER */

footer {
    margin-top: 0;
}

/* ==========================================
   Content Page
========================================== */

.content-body {
    font-size: 1.1rem;
    line-height: 2;
    color: #444;
}

    .content-body p {
        margin-bottom: 1.5rem;
    }

    .content-body img {
        max-width: 100%;
        height: auto;
        border-radius: 16px;
        margin: 2rem 0;
    }

    .content-body h1,
    .content-body h2,
    .content-body h3,
    .content-body h4 {
        margin-top: 2rem;
        margin-bottom: 1rem;
        font-weight: 700;
    }

    .content-body ul,
    .content-body ol {
        padding-left: 2rem;
        margin-bottom: 1.5rem;
    }

    .content-body blockquote {
        border-left: 5px solid #198754;
        padding-left: 1rem;
        color: #666;
        font-style: italic;
        margin: 2rem 0;
    }

    .content-body table {
        width: 100%;
        margin: 2rem 0;
        border-collapse: collapse;
    }

        .content-body table th,
        .content-body table td {
            border: 1px solid #dee2e6;
            padding: .75rem;
        }

    .content-body iframe {
        width: 100%;
        min-height: 450px;
        border: none;
    }

.breadcrumb a {
    text-decoration: none;
}

    .breadcrumb a:hover {
        text-decoration: underline;
    }

.gallery-card {
    transition: .3s ease;
}

    .gallery-card img {
        transition: .4s ease;
    }

    .gallery-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 1rem 2rem rgba(0,0,0,.15);
    }

        .gallery-card:hover img {
            transform: scale(1.08);
        }

.section-heading {
    margin-bottom: 2rem;
}

    .section-heading h2 {
        font-weight: 700;
    }

    .section-heading p {
        color: #6c757d;
    }

/* ==========================================
   Scroll Button
========================================== */

#scrollTop {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 55px;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 999;
}

    #scrollTop.show {
        opacity: 1;
        visibility: visible;
    }

.gallery-card {
    cursor: pointer;
}

    .gallery-card img {
        filter: brightness(.95);
    }

    .gallery-card:hover img {
        filter: brightness(1);
    }

.featured-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

@media (max-width: 991px) {
    .featured-image {
        height: 250px;
    }
}

.explore-card {
    transition: .3s;
    border-radius: 20px;
}

    .explore-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 1rem 2rem rgba(0,0,0,.15) !important;
    }
/* ==========================================================
   Tourism Theme
========================================================== */

.tourism-page .pagination .page-item.active .page-link {
    background: #0dcaf0;
    border-color: #0dcaf0;
}

.tourism-page .pagination .page-link {
    color: #0dcaf0;
}

    .tourism-page .pagination .page-link:hover {
        color: #087990;
    }
/* ==========================================================
   Gallery
========================================================== */

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    cursor: pointer;
    background: #f8f9fa;
}

    .gallery-item img {
        height: 260px;
        width: 100%;
        object-fit: cover;
        transition: .35s;
    }

.gallery-placeholder {
    height: 260px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f1f3f5;
    color: #adb5bd;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0,.45);
    color: #fff;
    opacity: 0;
    transition: .35s;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
