/* =========================================================
   ADVENTURE LEOPARDS — RESPONSIVE HEADER
   PREMIUM / STABLE DROPDOWNS / MOBILE FRIENDLY
========================================================= */


/* =========================================================
   GLOBAL
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #000;
    color: #fff;
    overflow-x: hidden;
    font-family: "Poppins", sans-serif;
}

img {
    max-width: 100%;
    height: auto;
}


/* =========================================================
   CONTACT BAR
========================================================= */

.header-info {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    min-height: 52px;

    padding: 7px 25px;

    display: flex;
    justify-content: center;
    align-items: center;

    gap: 28px;

    background: #000;

    border-bottom: 1px solid rgba(255, 255, 255, .08);

    z-index: 2000;
}

.contact-item {
    display: flex;
    align-items: center;
}

.contact-item a {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    padding: 6px 10px;

    color: #fff;

    text-decoration: none;

    font-size: .86rem;
    font-weight: 600;

    border-radius: 999px;

    transition:
        background .2s ease,
        color .2s ease;
}

.contact-item a:hover {
    background: rgba(255, 255, 255, .08);
}


/* =========================================================
   MAIN HEADER
========================================================= */

.main-header {
    position: fixed;

    top: 52px;
    left: 0;

    width: 100%;

    min-height: 82px;

    padding: 9px 32px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    background: rgba(0, 0, 0, .96);

    border-bottom: 1px solid rgba(255, 255, 255, .08);

    z-index: 1500;

    transition:
        min-height .3s ease,
        padding .3s ease,
        background .3s ease,
        box-shadow .3s ease;
}


/* =========================================================
   SCROLLED HEADER
========================================================= */

.main-header.header-scrolled {
    min-height: 68px;

    padding: 7px 32px;

    background: #000;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
}


/* =========================================================
   LOGO
========================================================= */

.logo {
    display: flex;
    align-items: center;

    flex-shrink: 0;

    text-decoration: none;
}

.logo img {
    display: block;

    width: 180px;
    height: auto;

    object-fit: contain;

    transition:
        width .3s ease,
        transform .3s ease;
}

.logo:hover img {
    transform: scale(1.015);
}

.header-scrolled .logo img {
    width: 150px;
}


/* =========================================================
   NAVIGATION
========================================================= */

.navigation {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    flex: 1;

    min-width: 0;
}

.menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 4px;

    padding: 0;
    margin: 0;

    list-style: none;
}

.menu-items {
    position: relative;

    list-style: none;

    flex-shrink: 0;
}


/* =========================================================
   MAIN NAVIGATION LINKS
========================================================= */

.menu-items > a {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 44px;

    padding: 8px 10px;

    color: #fff;

    text-decoration: none;

    white-space: nowrap;

    font-size: clamp(.78rem, 1vw, .98rem);

    font-weight: 600;

    transition:
        color .2s ease,
        background .2s ease;
}

.menu-items > a:hover {
    color: #aaa;
}


/* =========================================================
   NAVIGATION UNDERLINE
========================================================= */

.menu-items > a::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 2px;

    width: 0;
    height: 2px;

    background: #fff;

    border-radius: 99px;

    transform: translateX(-50%);

    transition: width .25s ease;
}

.menu-items > a:hover::after {
    width: 55%;
}


/* =========================================================
   DESKTOP DROPDOWNS
========================================================= */

.sub-menu {
    position: absolute;

    /*
       IMPORTANT:
       No 5px gap here.
       The dropdown touches the navigation item.
    */
    top: 100%;
    left: 0;

    width: 250px;

    max-height: 65vh;

    overflow-y: auto;
    overflow-x: hidden;

    padding: 7px 0;

    margin: 0;

    list-style: none;

    background: #fff;

    border-radius: 13px;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, .35);

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transform: translateY(8px);

    transition:
        opacity .22s ease,
        transform .22s ease,
        visibility .22s ease;

    z-index: 3000;
}


/* =========================================================
   INVISIBLE HOVER BRIDGE
   Prevents dropdown from disappearing while moving
   the mouse from the menu item into the dropdown.
========================================================= */

.sub-menu::before {
    content: "";

    position: absolute;

    top: -10px;
    left: 0;

    width: 100%;
    height: 10px;

    background: transparent;
}


/* =========================================================
   DESKTOP DROPDOWN OPEN STATE
========================================================= */

@media (min-width: 901px) {

    .menu-items:hover > .sub-menu,
    .menu-items:focus-within > .sub-menu {

        opacity: 1;

        visibility: visible;

        pointer-events: auto;

        transform: translateY(0);
    }

}


/* =========================================================
   DROPDOWN ITEMS
========================================================= */

.sub-menu li {
    position: relative;

    list-style: none;
}


/* =========================================================
   DROPDOWN LINKS
========================================================= */

.sub-menu a {
    display: block;

    width: 100%;

    padding: 11px 17px;

    color: #000 !important;

    text-decoration: none !important;

    font-size: .92rem;

    font-weight: 550;

    line-height: 1.4;

    transition:
        background .2s ease,
        padding-left .2s ease,
        color .2s ease;
}

.sub-menu a:hover {
    background: #f1f1f1;

    padding-left: 22px;
}


/* =========================================================
   DROPDOWN SCROLLBAR
========================================================= */

.sub-menu::-webkit-scrollbar {
    width: 6px;
}

.sub-menu::-webkit-scrollbar-track {
    background: #f5f5f5;
}

.sub-menu::-webkit-scrollbar-thumb {
    background: #bbb;

    border-radius: 20px;
}


/* =========================================================
   RIGHT-SIDE DROPDOWN
   Prevents dropdown from leaving the screen.
========================================================= */

@media (min-width: 901px) {

    .menu-items:last-child > .sub-menu {
        left: auto;
        right: 0;
    }

}


/* =========================================================
   HIDE DONATE
   Code can remain in HTML.
========================================================= */

.donate-menu-item {
    display: none !important;
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.menu-toggle {
    display: none;

    width: 45px;
    height: 45px;

    padding: 0;

    border: 0;

    background: transparent;

    color: #fff;

    cursor: pointer;

    font-size: 1.65rem;

    line-height: 1;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;
}

.menu-toggle::before {
    content: "☰";
}

.menu-toggle.active::before {
    content: "✕";
}


/* =========================================================
   DROPDOWN ICON
========================================================= */

.dropdown-icon {
    display: none;

    margin-left: auto;

    font-size: .7rem;

    transition: transform .3s ease;
}


/* =========================================================
   HEADER IMAGE / CONTENT AFTER HEADER
========================================================= */

.header-after {
    width: 100%;

    margin-top: 154px;

    overflow: hidden;
}

.header-after img {
    display: block;

    width: 100%;

    height: auto;

    min-height: 280px;

    object-fit: cover;

    object-position: center;
}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1200px) {

    .main-header {
        padding: 8px 22px;

        gap: 18px;
    }

    .main-header.header-scrolled {
        padding: 7px 22px;
    }

    .logo img {
        width: 160px;
    }

    .header-scrolled .logo img {
        width: 145px;
    }

    .menu {
        gap: 2px;
    }

    .menu-items > a {
        padding: 8px 7px;

        font-size: .79rem;
    }

    .sub-menu {
        width: 235px;
    }

    .header-after {
        margin-top: 146px;
    }
}


/* =========================================================
   TABLET + MOBILE
========================================================= */

@media (max-width: 900px) {

    /* CONTACT BAR */

    .header-info {
        min-height: 48px;

        padding: 6px 12px;

        gap: 8px;
    }

    .contact-item a {
        font-size: .72rem;

        padding: 5px 8px;
    }


    /* MAIN HEADER */

    .main-header {
        top: 48px;

        min-height: 72px;

        padding: 8px 18px;

        gap: 15px;
    }

    .main-header.header-scrolled {
        min-height: 63px;

        padding: 6px 18px;
    }


    /* LOGO */

    .logo img {
        width: 150px;
    }

    .header-scrolled .logo img {
        width: 140px;
    }


    /* MOBILE BUTTON */

    .menu-toggle {
        display: flex;
    }


    /* MOBILE NAVIGATION */

    .navigation {
        display: none;

        position: absolute;

        top: 100%;
        left: 0;

        width: 100%;

        max-height: calc(100vh - 120px);

        overflow-y: auto;

        padding: 6px 0 15px;

        background: #fff;

        border-bottom: 2px solid #000;

        box-shadow:
            0 18px 35px rgba(0, 0, 0, .25);

        z-index: 2500;
    }

    .navigation.active {
        display: block;
    }


    /* MOBILE MENU */

    .menu {
        flex-direction: column;

        align-items: stretch;

        justify-content: flex-start;

        gap: 0;

        width: 100%;
    }


    /* MENU ITEMS */

    .menu-items {
        width: 100%;
    }


    /* MAIN MOBILE LINKS */

    .menu-items > a {
        width: 100%;

        min-height: 56px;

        justify-content: flex-start;

        padding: 14px 20px;

        color: #000;

        background: #fff;

        border-bottom: 1px solid #ededed;

        font-size: .98rem;
    }

    .menu-items > a:hover {
        color: #000;

        background: #f5f5f5;
    }


    /* REMOVE DESKTOP UNDERLINE */

    .menu-items > a::after {
        display: none;
    }


    /* =====================================================
       MOBILE DROPDOWN
    ===================================================== */

    .sub-menu {
        position: static;

        display: none;

        width: 100%;

        max-height: none;

        overflow: visible;

        padding: 0;

        margin: 0;

        border-radius: 0;

        box-shadow: none;

        background: #f6f6f6;

        opacity: 1;

        visibility: visible;

        pointer-events: auto;

        transform: none;

        transition: none;
    }


    /* MOBILE DROPDOWN OPEN */

    .sub-menu.visible {
        display: block;
    }


    /* REMOVE HOVER BRIDGE ON MOBILE */

    .sub-menu::before {
        display: none;
    }


    /* MOBILE SUB LINKS */

    .sub-menu a {
        display: flex;

        align-items: center;

        width: 100%;

        min-height: 48px;

        padding: 12px 20px 12px 38px;

        color: #000 !important;

        background: #f6f6f6;

        font-size: .91rem;

        border-bottom: 1px solid #e6e6e6;
    }

    .sub-menu a:hover {
        padding-left: 43px;

        background: #e9e9e9;
    }


    /* DROPDOWN ICON */

    .dropdown-icon {
        display: inline-block;

        margin-left: auto;

        font-size: .7rem;

        color: #000;

        transition: transform .3s ease;
    }

    .menu-items.open .dropdown-icon {
        transform: rotate(180deg);
    }


    /* HEADER IMAGE */

    .header-after {
        margin-top: 130px;
    }

    .header-after img {
        min-height: 250px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    /* CONTACT BAR */

    .header-info {
        min-height: 44px;

        padding: 4px 6px;

        gap: 3px;
    }

    .contact-item a {
        min-height: 32px;

        padding: 4px 6px;

        font-size: .61rem;

        gap: 5px;
    }


    /* MAIN HEADER */

    .main-header {
        top: 44px;

        min-height: 66px;

        padding: 7px 13px;
    }

    .main-header.header-scrolled {
        min-height: 58px;

        padding: 6px 13px;
    }


    /* LOGO */

    .logo img {
        width: 132px;
    }

    .header-scrolled .logo img {
        width: 125px;
    }


    /* MENU BUTTON */

    .menu-toggle {
        width: 42px;
        height: 42px;

        font-size: 1.55rem;
    }


    /* MENU */

    .menu-items > a {
        min-height: 54px;

        padding: 14px 17px;

        font-size: .94rem;
    }


    /* SUB MENU */

    .sub-menu a {
        min-height: 47px;

        padding: 12px 17px 12px 33px;

        font-size: .87rem;
    }

    .sub-menu a:hover {
        padding-left: 38px;
    }


    /* HEADER IMAGE */

    .header-after {
        margin-top: 112px;
    }

    .header-after img {
        min-height: 210px;
    }
}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 420px) {

    /* CONTACT BAR */

    .header-info {
        min-height: 41px;

        padding: 4px 5px;

        gap: 2px;
    }

    .contact-item a {
        font-size: .55rem;

        padding: 3px 5px;

        gap: 4px;
    }


    /* MAIN HEADER */

    .main-header {
        top: 41px;

        min-height: 62px;

        padding: 6px 10px;
    }

    .main-header.header-scrolled {
        min-height: 55px;

        padding: 5px 10px;
    }


    /* LOGO */

    .logo img {
        width: 118px;
    }

    .header-scrolled .logo img {
        width: 112px;
    }


    /* MENU BUTTON */

    .menu-toggle {
        width: 40px;
        height: 40px;

        font-size: 1.45rem;
    }


    /* MAIN LINKS */

    .menu-items > a {
        min-height: 52px;

        padding: 13px 15px;

        font-size: .9rem;
    }


    /* SUB LINKS */

    .sub-menu a {
        min-height: 47px;

        padding: 11px 15px 11px 30px;

        font-size: .84rem;
    }

    .sub-menu a:hover {
        padding-left: 35px;
    }


    /* HEADER IMAGE */

    .header-after {
        margin-top: 104px;
    }

    .header-after img {
        min-height: 180px;
    }
}


/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media (max-width: 340px) {

    /* CONTACT TEXT */

    .contact-item a span {
        display: none;
    }

    .contact-item a {
        width: 34px;
        height: 30px;

        padding: 0;

        justify-content: center;
    }


    /* LOGO */

    .logo img {
        width: 108px;
    }

    .header-scrolled .logo img {
        width: 104px;
    }


    /* MENU BUTTON */

    .menu-toggle {
        width: 38px;
        height: 38px;
    }
}


/* =========================================================
   ACCESSIBILITY / KEYBOARD
========================================================= */

.menu-items > a:focus-visible,
.sub-menu a:focus-visible,
.menu-toggle:focus-visible,
.contact-item a:focus-visible {
    outline: 2px solid #fff;

    outline-offset: 3px;
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto !important;
    }

    *,
    *::before,
    *::after {
        transition: none !important;
        animation: none !important;
    }
}


/* =========================================================
   ADVENTURE LEOPARDS — RESPONSIVE HEADER END
========================================================= */
/* =========================================================
   ISSAQUAH PARAGLIDING
   PREMIUM ADVENTURE SECTION
========================================================= */

.adventure-flight-section {
    width: 100%;
    background: #f5f7f5;
    color: #151715;
    box-sizing: border-box;
}

.adventure-flight-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 95px 30px 110px;
    box-sizing: border-box;
}


/* =========================================================
   HEADING
========================================================= */

.adventure-flight-heading {
    max-width: 900px;
    margin: 0 auto 55px;
    text-align: center;
}

.adventure-flight-eyebrow {
    display: inline-block;
    margin-bottom: 18px;

    color: #236044;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 2.8px;
}

.adventure-flight-title {
    margin: 0 0 25px;

    color: #111411;

    font-size: clamp(45px, 6vw, 78px);

    line-height: 1;
    letter-spacing: -3px;

    font-weight: 800;
}

.adventure-flight-intro {
    max-width: 750px;
    margin: 0 auto;

    color: #687069;

    font-size: 16px;
    line-height: 1.85;
}


/* =========================================================
   MAIN IMAGE
   HEIGHT AUTO — NO CROPPING
========================================================= */

.adventure-flight-visual {
    width: 100%;

    overflow: hidden;

    border-radius: 24px;

    background: #e5e8e5;
}

.adventure-flight-image {
    display: block;

    width: 100%;
    height: auto;

    max-width: 100%;

    object-fit: contain;

    transition: transform .7s ease;
}

.adventure-flight-visual:hover
.adventure-flight-image {
    transform: scale(1.015);
}


/* =========================================================
   CONTENT
========================================================= */

.adventure-flight-content {
    max-width: 1080px;

    margin: 85px auto 0;
}

.adventure-flight-copy {
    display: grid;

    grid-template-columns: 75px minmax(0, 1fr);

    gap: 45px;

    padding-bottom: 75px;

    border-bottom: 1px solid #dfe3df;
}

.adventure-flight-number {
    padding-top: 7px;

    color: #236044;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;
}

.adventure-flight-label {
    display: inline-block;

    margin-bottom: 15px;

    color: #236044;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2.3px;
}

.adventure-flight-copy h2 {
    margin: 0 0 23px;

    color: #151715;

    font-size: clamp(32px, 4vw, 49px);

    line-height: 1.1;

    letter-spacing: -1.7px;

    font-weight: 800;
}

.adventure-flight-copy p {
    max-width: 780px;

    margin: 0 0 18px;

    color: #656c66;

    font-size: 15px;

    line-height: 1.9;
}

.adventure-flight-copy p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   HIGHLIGHTS
========================================================= */

.adventure-flight-highlights {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 18px;

    padding-top: 40px;
}

.adventure-flight-highlight {
    padding: 30px;

    background: #fff;

    border: 1px solid #e0e5e0;

    border-radius: 16px;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.adventure-flight-highlight:hover {
    transform: translateY(-4px);

    border-color: #cad7ce;

    box-shadow:
        0 18px 38px rgba(0, 0, 0, .06);
}

.adventure-flight-highlight span {
    display: block;

    margin-bottom: 32px;

    color: #236044;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;
}

.adventure-flight-highlight strong {
    display: block;

    margin-bottom: 10px;

    color: #171917;

    font-size: 21px;

    font-weight: 800;
}

.adventure-flight-highlight p {
    margin: 0;

    color: #6b726c;

    font-size: 13px;

    line-height: 1.75;
}


/* =========================================================
   GALLERY
========================================================= */

.pnw-gallery-section {
    width: 100%;

    background: #fff;

    color: #151715;
}

.pnw-gallery-container {
    max-width: 1240px;

    margin: 0 auto;

    padding: 105px 30px 120px;

    box-sizing: border-box;
}


/* =========================================================
   GALLERY HEADING
========================================================= */

.pnw-gallery-heading {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 50px;

    margin-bottom: 48px;
}

.pnw-gallery-eyebrow {
    display: block;

    margin-bottom: 15px;

    color: #236044;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2.5px;
}

.pnw-gallery-title {
    margin: 0;

    color: #151715;

    font-size: clamp(36px, 5vw, 58px);

    line-height: 1;

    font-weight: 800;

    letter-spacing: -2px;
}

.pnw-gallery-intro {
    max-width: 420px;

    margin: 0;

    color: #687069;

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   GALLERY GRID
========================================================= */

.pnw-gallery-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 22px;
}


/* =========================================================
   GALLERY CARD
========================================================= */

.pnw-gallery-card {
    overflow: hidden;

    background: #f5f7f5;

    border: 1px solid #e0e4e0;

    border-radius: 19px;

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}

.pnw-gallery-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 22px 45px rgba(0, 0, 0, .08);
}


/* =========================================================
   GALLERY IMAGE
   HEIGHT AUTO
========================================================= */

.pnw-gallery-image-wrap {
    width: 100%;

    overflow: hidden;

    background: #e6e9e6;
}

.pnw-gallery-image {
    display: block;

    width: 100%;
    height: auto;

    max-width: 100%;

    object-fit: contain;

    transition: transform .65s ease;
}

.pnw-gallery-card:hover
.pnw-gallery-image {
    transform: scale(1.025);
}


/* =========================================================
   CARD TEXT
========================================================= */

.pnw-gallery-card-content {
    padding: 27px 30px 31px;
}

.pnw-gallery-card-content > span {
    display: block;

    margin-bottom: 17px;

    color: #236044;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;
}

.pnw-gallery-card-content h3 {
    margin: 0 0 10px;

    color: #171917;

    font-size: 24px;

    font-weight: 800;

    letter-spacing: -.5px;
}

.pnw-gallery-card-content p {
    max-width: 500px;

    margin: 0;

    color: #6b726c;

    font-size: 13px;

    line-height: 1.75;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 850px) {

    .adventure-flight-container {
        padding-left: 22px;
        padding-right: 22px;
    }

    .adventure-flight-copy {
        grid-template-columns: 1fr;

        gap: 15px;
    }

    .adventure-flight-highlights {
        grid-template-columns: 1fr;
    }

    .pnw-gallery-container {
        padding-left: 22px;
        padding-right: 22px;
    }

    .pnw-gallery-heading {
        align-items: flex-start;

        flex-direction: column;

        gap: 20px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .adventure-flight-container {
        padding: 65px 16px 75px;
    }

    .adventure-flight-heading {
        margin-bottom: 38px;
    }

    .adventure-flight-eyebrow {
        font-size: 9px;

        letter-spacing: 2px;
    }

    .adventure-flight-title {
        margin-bottom: 18px;

        font-size: clamp(42px, 12vw, 60px);

        letter-spacing: -2px;
    }

    .adventure-flight-intro {
        font-size: 14px;

        line-height: 1.75;
    }

    .adventure-flight-visual {
        border-radius: 16px;
    }

    .adventure-flight-content {
        margin-top: 60px;
    }

    .adventure-flight-copy {
        padding-bottom: 55px;
    }

    .adventure-flight-copy h2 {
        font-size: 31px;

        letter-spacing: -1px;
    }

    .adventure-flight-copy p {
        font-size: 14px;

        line-height: 1.8;
    }

    .adventure-flight-highlight {
        padding: 25px;
    }

    .pnw-gallery-container {
        padding: 70px 16px 80px;
    }

    .pnw-gallery-title {
        font-size: 36px;

        letter-spacing: -1.3px;
    }

    .pnw-gallery-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .pnw-gallery-card-content {
        padding: 24px;
    }

}
/* ===========================
   CLICK PANEL SECTION — Modern BW
=========================== */

.container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 6em auto;
    padding: 20px;
    gap: 30px;
    font-family: 'Poppins', sans-serif;
}

.sidebar {
    flex: 1 1 250px; 
    padding: 25px;
    border-radius: 16px; 
}

.sidebar a {
    display: block;
    padding: 14px 18px;
    margin-bottom: 12px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    border-radius: 10px;
    background: #1a1a1a;
    transition: 0.3s ease;
    border: 2px solid transparent;
}

.sidebar a:hover {
    background: #fff;
    color: #000;
}

.sidebar a.active {
    background: #fff;
    color: #000;
    border: 2px solid #fff;
}

.content {
    flex: 3 1 700px;
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

.content-panel {
    display: none;
}

.content-panel.active {
    display: block;
}

.content-panel img {
    width: 100%;
    border-radius: 14px;
    margin-bottom: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.content-panel h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}

.content-panel p {
    font-size: 1.2rem;
    color: #444;
    line-height: 1.85;
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 900px) {
    .container {
        flex-direction: column;
    }

    .sidebar {
        flex-direction: row;
        display: flex;
        gap: 10px;
        overflow-x: auto;
        white-space: nowrap;
    }

    .sidebar a {
        flex: 1;
        text-align: center;
        margin-bottom: 0;
    }
}

@media (max-width: 600px) {
    .content {
        padding: 25px;
    }

    .content-panel h2 {
        font-size: 1.6rem;
    }

    .content-panel p {
        font-size: 1.05rem;
    }
}

/* =========================================
   ADVENTURE LEOPARDS — PREMIUM BLACK FOOTER
========================================= */

.premium-footer {
    position: relative;
    width: 100%;
    background: #000;
    color: #fff;
    overflow: hidden;
    border-top: 1px solid rgba(209, 209, 209, 0.7);
}

.footer-container {
    width: 90%;
    max-width: 1250px;
    margin: auto;
    padding-top: 75px;
}

/* =========================================
   MAIN FOOTER
========================================= */

.footer-main {
    display: grid;
    grid-template-columns: 1.8fr 0.8fr 1fr;
    gap: 80px;
    padding-bottom: 65px;
}

/* =========================================
   BRAND
========================================= */

.footer-brand {
    max-width: 500px;
}

.footer-logo {
    width: 110px;
    height: auto;
    display: block;
    margin-bottom: 20px;
}

.footer-brand h2 {
    margin: 0 0 15px;
    color: #fff;
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.footer-description {
    max-width: 480px;
    margin: 0 0 22px;
    color: #aaa;
    font-size: 14px;
    line-height: 1.8;
}

/* =========================================
   DISCOVER LINK
========================================= */

.footer-explore {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: 0.3s ease;
}

.footer-explore span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 1px solid #555;
    border-radius: 50%;
    transition: 0.3s ease;
}

.footer-explore:hover {
    color: #ccc;
}

.footer-explore:hover span {
    transform: translateX(4px);
    border-color: #fff;
}

/* =========================================
   FOOTER COLUMNS
========================================= */

.footer-column h3 {
    position: relative;
    margin: 5px 0 25px;
    padding-bottom: 12px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.footer-column h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 32px;
    height: 2px;
    background: #fff;
}

/* =========================================
   MENU LINKS
========================================= */

.footer-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-column li {
    margin-bottom: 13px;
}

.footer-column li a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s ease;
}

.footer-column li a:hover {
    color: #fff;
    padding-left: 5px;
}

/* =========================================
   CONTACT
========================================= */

.footer-contact > p {
    max-width: 280px;
    margin: 0 0 20px;
    color: #999;
    font-size: 14px;
    line-height: 1.7;
}

.footer-email,
.footer-website {
    display: block;
    width: fit-content;
    margin-bottom: 11px;
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s ease;
}

.footer-email:hover,
.footer-website:hover {
    color: #fff;
}

/* =========================================
   BOTTOM BAR
========================================= */

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    min-height: 85px;
    border-top: 1px solid #222;
}

.footer-bottom p {
    margin: 0;
    color: #666;
    font-size: 12px;
}

/* =========================================
   SOCIAL ICONS
========================================= */

.footer-socials {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 37px;
    height: 37px;
    background: #000;
    border: 1px solid #333;
    border-radius: 50%;
    color: #aaa;
    text-decoration: none;
    font-size: 13px;
    transition: 0.3s ease;
}

.footer-socials a:hover {
    transform: translateY(-3px);
    background: #fff;
    border-color: #fff;
    color: #000;
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 950px) {

    .footer-main {
        grid-template-columns: 1.5fr 1fr;
        gap: 50px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 650px;
    }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

    .footer-container {
        width: 88%;
        padding-top: 55px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-bottom: 45px;
    }

    .footer-brand {
        grid-column: auto;
        max-width: 100%;
    }

    .footer-logo {
        width: 95px;
    }

    .footer-brand h2 {
        font-size: 30px;
    }

    .footer-description {
        font-size: 13px;
    }

    .footer-bottom {
        flex-direction: column;
        justify-content: center;
        gap: 20px;
        padding: 25px 0;
        text-align: center;
    }

    .footer-socials {
        gap: 7px;
    }

    .footer-socials a {
        width: 35px;
        height: 35px;
    }
}

/* =========================================
   SMALL PHONES
========================================= */

@media (max-width: 400px) {

    .footer-container {
        width: 86%;
    }

    .footer-brand h2 {
        font-size: 27px;
    }

    .footer-description {
        font-size: 12.5px;
    }
}