/* ============================================================
   LANKAQUEST
   PROVINCE ATTRACTIONS GUIDE
   COMMON CSS FOR ALL 9 PROVINCE PAGES
============================================================ */


/* ============================================================
   1. ROOT VARIABLES
============================================================ */

:root {

    --guide-primary: #123c35;

    --guide-primary-light: #1d5d50;

    --guide-accent: #d9a441;

    --guide-accent-dark: #b88724;

    --guide-bg: #f5f7f6;

    --guide-card: #ffffff;

    --guide-text: #26332f;

    --guide-muted: #68736f;

    --guide-border: #e1e7e4;

    --guide-shadow:
        0 12px 35px rgba(18, 60, 53, 0.08);

    --guide-radius: 18px;

}


/* ============================================================
   2. GLOBAL RESET
============================================================ */

* {

    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

}


body {

    margin: 0;

    padding: 0;

    font-family:
        "Segoe UI",
        Arial,
        sans-serif;

    background:
        var(--guide-bg);

    color:
        var(--guide-text);

    line-height: 1.7;

}


/* ============================================================
   3. PAGE WRAPPER
============================================================ */

.province-guide-page {

    min-height: 100vh;

}


/* ============================================================
   4. TOP NAVIGATION
============================================================ */

.province-guide-nav {

    position: sticky;

    top: 0;

    z-index: 1000;

    width: 100%;

    background:
        rgba(255, 255, 255, 0.96);

    border-bottom:
        1px solid var(--guide-border);

    backdrop-filter:
        blur(12px);

}


.province-guide-nav-inner {

    max-width: 1200px;

    margin: 0 auto;

    padding:
        14px 24px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

}


.guide-brand {

    display: flex;

    align-items: center;

    gap: 12px;

    text-decoration: none;

    color:
        var(--guide-primary);

}


.guide-brand-icon {

    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 12px;

    background:
        var(--guide-primary);

    color:
        white;

    font-size: 22px;

}


.guide-brand-text {

    display: flex;

    flex-direction: column;

}


.guide-brand-title {

    font-size: 18px;

    font-weight: 800;

    line-height: 1.2;

}


.guide-brand-subtitle {

    font-size: 11px;

    color:
        var(--guide-muted);

}


.guide-back-button {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding:
        9px 16px;

    border-radius: 999px;

    background:
        #eef4f2;

    color:
        var(--guide-primary);

    text-decoration: none;

    font-size: 14px;

    font-weight: 700;

    transition:
        0.25s ease;

}


.guide-back-button:hover {

    background:
        var(--guide-primary);

    color:
        white;

    transform:
        translateX(-3px);

}


/* ============================================================
   5. HERO SECTION
============================================================ */

.province-hero {

    position: relative;

    min-height: 430px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background:
        linear-gradient(135deg,
            #123c35,
            #1e6658);

}


.province-hero::before {

    content: "";

    position: absolute;

    inset: 0;

    background:
        radial-gradient(circle at 85% 20%,
            rgba(217, 164, 65, 0.22),
            transparent 30%);

    pointer-events: none;

}


.province-hero-content {

    position: relative;

    z-index: 2;

    width: 100%;

    max-width: 1200px;

    margin: 0 auto;

    padding:
        80px 24px;

}


.province-breadcrumb {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 8px;

    margin-bottom: 22px;

    color:
        rgba(255, 255, 255, 0.75);

    font-size: 14px;

}


.province-breadcrumb a {

    color:
        rgba(255, 255, 255, 0.85);

    text-decoration: none;

}


.province-breadcrumb a:hover {

    color:
        white;

}


.province-hero h1 {

    max-width: 850px;

    margin:
        0 0 18px;

    color:
        white;

    font-size:
        clamp(38px, 6vw, 68px);

    line-height: 1.08;

    letter-spacing:
        -1.5px;

}


.province-hero-description {

    max-width: 760px;

    margin: 0;

    color:
        rgba(255, 255, 255, 0.88);

    font-size: 18px;

}


.province-hero-meta {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 28px;

}


.province-meta-item {

    padding:
        9px 15px;

    border:
        1px solid rgba(255, 255, 255, 0.2);

    border-radius: 999px;

    background:
        rgba(255, 255, 255, 0.1);

    color:
        white;

    font-size: 13px;

}


/* ============================================================
   6. MAIN CONTENT
============================================================ */

.province-content {

    max-width: 1200px;

    margin: 0 auto;

    padding:
        65px 24px 90px;

}


/* ============================================================
   7. INTRODUCTION
============================================================ */

.province-introduction {

    max-width: 850px;

    margin:
        0 auto 60px;

    text-align: center;

}


.province-introduction-label {

    display: inline-block;

    margin-bottom: 12px;

    color:
        var(--guide-accent-dark);

    font-size: 13px;

    font-weight: 800;

    text-transform:
        uppercase;

    letter-spacing:
        1.5px;

}


.province-introduction h2 {

    margin:
        0 0 16px;

    color:
        var(--guide-primary);

    font-size:
        clamp(28px, 4vw, 42px);

    line-height: 1.2;

}


.province-introduction p {

    margin: 0;

    color:
        var(--guide-muted);

    font-size: 16px;

}


/* ============================================================
   8. DISTRICT SECTION
============================================================ */

.district-section {

    margin-bottom: 75px;

}


.district-header {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 20px;

    margin-bottom: 28px;

    padding-bottom: 18px;

    border-bottom:
        1px solid var(--guide-border);

}


.district-title-group h2 {

    margin:
        0 0 5px;

    color:
        var(--guide-primary);

    font-size:
        clamp(25px, 3vw, 34px);

}


.district-title-group p {

    margin: 0;

    color:
        var(--guide-muted);

    font-size: 15px;

}


.district-number {

    display: flex;

    align-items: center;

    justify-content: center;

    min-width: 48px;

    height: 48px;

    border-radius: 14px;

    background:
        var(--guide-primary);

    color:
        white;

    font-size: 18px;

    font-weight: 800;

}


/* ============================================================
   9. ATTRACTIONS GRID
============================================================ */

.attractions-grid {

    display: grid;

    grid-template-columns:
        repeat(auto-fit,
            minmax(280px, 1fr));

    gap: 24px;

}


/* ============================================================
   10. ATTRACTION CARD
============================================================ */

.attraction-card {

    overflow: hidden;

    background:
        var(--guide-card);

    border:
        1px solid var(--guide-border);

    border-radius:
        var(--guide-radius);

    box-shadow:
        var(--guide-shadow);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;

}


.attraction-card:hover {

    transform:
        translateY(-6px);

    box-shadow:
        0 18px 45px rgba(18, 60, 53, 0.13);

}


.attraction-card-content {

    padding:
        25px;

}


.attraction-category {

    display: inline-flex;

    align-items: center;

    gap: 6px;

    margin-bottom: 12px;

    padding:
        5px 10px;

    border-radius: 999px;

    background:
        #edf5f2;

    color:
        var(--guide-primary-light);

    font-size: 11px;

    font-weight: 800;

    text-transform:
        uppercase;

    letter-spacing:
        0.5px;

}


.attraction-card h3 {

    margin:
        0 0 10px;

    color:
        var(--guide-primary);

    font-size: 21px;

    line-height: 1.3;

}


.attraction-description {

    margin:
        0 0 18px;

    color:
        var(--guide-muted);

    font-size: 14px;

}


/* ============================================================
   11. LOCATION INFORMATION
============================================================ */

.attraction-location {

    display: flex;

    align-items: center;

    gap: 7px;

    margin-bottom: 18px;

    color:
        #52605b;

    font-size: 13px;

}


/* ============================================================
   12. ACTIONS
============================================================ */

.attraction-actions {

    display: flex;

    flex-wrap: wrap;

    gap: 10px;

}


.attraction-button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

    min-height: 42px;

    padding:
        9px 14px;

    border-radius: 10px;

    text-decoration: none;

    font-size: 13px;

    font-weight: 700;

    transition:
        0.25s ease;

}


.attraction-map-button {

    flex: 1;

    background:
        var(--guide-primary);

    color:
        white;

}


.attraction-map-button:hover {

    background:
        var(--guide-primary-light);

}


.attraction-trip-button {

    background:
        #f5f1e6;

    color:
        #8b681f;

    border:
        1px solid #eadcb8;

    cursor: pointer;

}


.attraction-trip-button:hover {

    background:
        var(--guide-accent);

    color:
        white;

}


/* ============================================================
   13. MAP SECTION
============================================================ */

.attraction-map-wrapper {

    overflow: hidden;

    border-top:
        1px solid var(--guide-border);

}


.attraction-map {

    width: 100%;

    height: 250px;

    border: 0;

    display: block;

}


/* ============================================================
   14. FOOTER
============================================================ */

.province-guide-footer {

    padding:
        35px 24px;

    background:
        var(--guide-primary);

    color:
        rgba(255, 255, 255, 0.75);

    text-align: center;

}


.province-guide-footer strong {

    color:
        white;

}


.province-guide-footer p {

    margin:
        5px 0;

    font-size: 13px;

}


/* ============================================================
   15. RESPONSIVE
============================================================ */

@media (max-width: 768px) {

    .province-guide-nav-inner {

        padding:
            12px 16px;

    }


    .guide-brand-subtitle {

        display: none;

    }


    .guide-back-button {

        padding:
            8px 12px;

        font-size: 12px;

    }


    .province-hero {

        min-height:
            390px;

    }


    .province-hero-content {

        padding:
            60px 20px;

    }


    .province-hero h1 {

        font-size:
            42px;

    }


    .province-hero-description {

        font-size:
            16px;

    }


    .province-content {

        padding:
            50px 16px 70px;

    }


    .district-header {

        align-items:
            flex-start;

    }


    .district-number {

        min-width:
            42px;

        height:
            42px;

    }


    .attractions-grid {

        grid-template-columns:
            1fr;

    }

}


@media (max-width: 480px) {

    .guide-brand-title {

        font-size:
            16px;

    }


    .guide-back-button span {

        display:
            none;

    }


    .province-hero h1 {

        font-size:
            36px;

    }


    .province-hero-meta {

        gap:
            8px;

    }


    .province-meta-item {

        font-size:
            12px;

    }


    .attraction-actions {

        flex-direction:
            column;

    }


    .attraction-map-button {

        width:
            100%;

    }

}

