/* =========================================
   JINJA BIKE TOURS & SAFARIS
   PROFESSIONAL WEBSITE DESIGN
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #222;
    background: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

.container {
    width: 90%;
    max-width: 1240px;
    margin: auto;
}


/* =========================================
   TOP BAR
========================================= */

.top-bar {
    background: #123d2a;
    color: #ffffff;
    font-size: 13px;
}

.top-bar-inner {
    min-height: 38px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


/* =========================================
   MAIN HEADER
========================================= */

.main-header {
    background: #ffffff;
    position: relative;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.header-inner {
    min-height: 86px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


/* =========================================
   BRAND
========================================= */

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-icon {
    font-size: 35px;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.brand-name {
    color: #123d2a;
    font-size: 22px;
    font-weight: 800;
}

.brand-subtitle {
    color: #b58a2a;
    font-size: 14px;
    font-weight: 700;
}


/* =========================================
   NAVIGATION
========================================= */

.main-nav {
    display: flex;
    align-items: center;
    gap: 18px;
}

.nav-link,
.dropdown-button {
    color: #222;
    font-size: 13px;
    font-weight: 700;
}

.nav-link:hover,
.dropdown-button:hover {
    color: #b58a2a;
}

.dropdown-button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.dropdown-button span {
    color: #b58a2a;
}


/* =========================================
   DROPDOWNS
========================================= */

.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 25px);
    left: -15px;
    min-width: 250px;
    background: #ffffff;
    padding: 12px 0;
    border-top: 3px solid #b58a2a;
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.2s ease;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    color: #333;
    padding: 10px 20px;
    font-size: 13px;
}

.dropdown-menu a:hover {
    background: #f5f5f5;
    color: #b58a2a;
}


/* =========================================
   BOOK NOW
========================================= */

.nav-book-button {
    background: #b58a2a;
    color: #ffffff !important;
    padding: 13px 20px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 800;
    transition: 0.3s;
}

.nav-book-button:hover {
    background: #123d2a;
}


/* =========================================
   HERO
========================================= */

.hero {
    min-height: 680px;
    background-image: url("/assets/images/hero.jpg");
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(5,35,22,0.88) 0%,
        rgba(5,35,22,0.60) 45%,
        rgba(5,35,22,0.18) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
    padding: 90px 0;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #e1b84d;
    margin-bottom: 18px;
}

.hero h1 {
    max-width: 760px;
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.05;
    font-weight: 500;
    margin-bottom: 25px;
}

.hero h1 strong {
    font-weight: 800;
}

.hero-description {
    max-width: 650px;
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 15px 25px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.4px;
}

.btn-primary {
    background: #b58a2a;
    color: #ffffff;
}

.btn-primary:hover {
    background: #ffffff;
    color: #123d2a;
}

.btn-outline {
    border: 2px solid #ffffff;
    color: #ffffff;
}

.btn-outline:hover {
    background: #ffffff;
    color: #123d2a;
}

.hero-highlights {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 55px;
    font-size: 13px;
    font-weight: 700;
}


/* =========================================
   SECTION HEADINGS
========================================= */

.adventure-section {
    padding: 100px 0;
}

.section-heading {
    max-width: 720px;
    margin: 0 auto 55px;
    text-align: center;
}

.section-label {
    color: #b58a2a;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}

.section-heading h2,
.final-cta h2 {
    color: #123d2a;
    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.15;
    margin: 12px 0 18px;
}

.section-heading p {
    color: #666;
    font-size: 17px;
}


/* =========================================
   CATEGORY CARDS
========================================= */

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.category-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.09);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.16);
}

.category-image {
    width: 100%;
    height: 190px;
    overflow: hidden;
    background: #eeeeee;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.category-content {
    padding: 25px;
}

.category-number {
    color: #b58a2a;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
}

.category-content h3 {
    color: #123d2a;
    font-size: 25px;
    margin: 5px 0 12px;
}

.category-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.category-content a {
    color: #123d2a;
    font-weight: 800;
    font-size: 13px;
}

.category-content a:hover {
    color: #b58a2a;
}


/* =========================================
   FEATURED ADVENTURES
========================================= */

.featured-adventures {
    width: 100%;
    background: #f7f6f2;
    padding: 90px 0;
    overflow: hidden;
}

.featured-adventures .container {
    width: 90%;
    max-width: 1240px;
    margin: 0 auto;
}

.featured-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    align-items: stretch;
}

.tour-card {
    width: 100%;
    min-width: 0;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tour-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 35px rgba(0,0,0,0.14);
}

.tour-image {
    width: 100%;
    height: 190px;
    position: relative;
    overflow: hidden;
    background: #eeeeee;
    flex-shrink: 0;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.tour-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #123d2a;
    color: #ffffff;
    padding: 7px 12px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
}

.tour-content {
    width: 100%;
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.tour-meta {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eeeeee;
}

.tour-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #666666;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.tour-content h3 {
    color: #123d2a;
    font-size: 21px;
    line-height: 1.25;
    margin: 0 0 10px;
}

.tour-content p {
    color: #666666;
    font-size: 14px;
    line-height: 1.65;
    margin: 0 0 20px;
    min-height: 90px;
}

.tour-bottom {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #eeeeee;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.tour-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.tour-price small {
    color: #777777;
    font-size: 9px;
    font-weight: 700;
}

.tour-price strong {
    color: #b58a2a;
    font-size: 24px;
    font-weight: 800;
}

.tour-link {
    color: #123d2a;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
}

.tour-link:hover {
    color: #b58a2a;
}

.featured-tour {
    box-shadow: 0 12px 35px rgba(18,61,42,0.16);
}

.section-action {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 45px;
}

.btn-secondary {
    background: #123d2a;
    color: #ffffff;
}

.btn-secondary:hover {
    background: #b58a2a;
}


/* =========================================
   WHY US
========================================= */

.why-us {
    background: #123d2a;
    padding: 100px 0;
}

.light-heading h2 {
    color: #ffffff;
}

.light-heading p {
    color: rgba(255,255,255,0.75);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
}

.feature {
    text-align: center;
    color: #ffffff;
}

.feature-icon {
    font-size: 42px;
    margin-bottom: 18px;
}

.feature h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.feature p {
    color: rgba(255,255,255,0.72);
    font-size: 14px;
}


/* =========================================
   FINAL CTA
========================================= */

.final-cta {
    text-align: center;
    padding: 100px 20px;
    background: #f6f4ef;
}

.final-cta p {
    max-width: 650px;
    margin: 0 auto 30px;
    color: #666;
    font-size: 17px;
}


/* =========================================
   MOBILE MENU
========================================= */

.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    font-size: 30px;
    cursor: pointer;
    color: #123d2a;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1100px) {

    .main-nav {
        gap: 12px;
    }

    .category-grid,
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .featured-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


@media (max-width: 900px) {

    .menu-toggle {
        display: block;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 86px;
        left: 0;
        right: 0;
        background: #ffffff;
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
        box-shadow: 0 12px 25px rgba(0,0,0,0.12);
    }

    .main-nav.active {
        display: flex;
    }

    .nav-dropdown {
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        display: block;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-top: 0;
        padding-left: 15px;
        min-width: auto;
    }

    .dropdown-button {
        padding: 8px 0;
    }

    .top-bar-inner {
        display: none;
    }
}


@media (max-width: 650px) {

    .hero {
        min-height: 680px;
    }

    .category-grid,
    .featured-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .featured-adventures {
        padding: 70px 0;
    }

    .tour-image {
        height: 210px;
    }

    .tour-content p {
        min-height: auto;
    }
}/* =========================================
   ADVENTURE WITH A PURPOSE
========================================= */

.purpose-section {
    background: #ffffff;
    padding: 100px 0;
}

.purpose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 75px;
    align-items: center;
}


/* IMAGE */

.purpose-image {
    position: relative;
    height: 560px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.purpose-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}


/* BADGE */

.purpose-badge {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background: #b58a2a;
    color: #ffffff;
    padding: 18px 22px;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.purpose-badge strong {
    font-size: 20px;
}

.purpose-badge span {
    font-size: 13px;
    margin-top: 4px;
}


/* CONTENT */

.purpose-content h2 {
    color: #123d2a;
    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.15;
    margin: 12px 0 20px;
}

.purpose-content > p {
    color: #666666;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.purpose-content .purpose-lead {
    font-size: 17px;
    color: #555555;
}


/* POINTS */

.purpose-points {
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.purpose-point {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.purpose-icon {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    background: #f5f0e4;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
}

.purpose-point h3 {
    color: #123d2a;
    font-size: 17px;
    margin-bottom: 3px;
}

.purpose-point p {
    color: #777777;
    font-size: 13px;
    line-height: 1.5;
}


/* MOBILE */

@media (max-width: 850px) {

    .purpose-section {
        padding: 70px 0;
    }

    .purpose-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .purpose-image {
        height: 450px;
    }

}/* =========================================
   PREMIUM PHOTO GALLERY
========================================= */

.gallery-section {
    background: #ffffff;
    padding: 100px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 220px;
    gap: 14px;
}

.gallery-item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 6px;
    background: #eeeeee;
    cursor: pointer;
}

.gallery-item.gallery-large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}


/* =========================================
   GALLERY OVERLAY
========================================= */

.gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 22px;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.78),
        rgba(0,0,0,0.05) 70%
    );
    color: #ffffff;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-category {
    color: #e1b84d;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.gallery-overlay h3 {
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 8px;
}

.gallery-view {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}


/* =========================================
   LIGHTBOX
========================================= */

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.94);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.gallery-lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 1100px;
    max-height: 90vh;
    text-align: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 78vh;
    display: block;
    margin: auto;
    border-radius: 5px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lightbox-caption {
    color: #ffffff;
    margin-top: 15px;
    font-size: 15px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    border: none;
    background: rgba(255,255,255,0.12);
    color: #ffffff;
    cursor: pointer;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: #b58a2a;
}

.lightbox-close {
    top: 25px;
    right: 25px;
}

.lightbox-prev {
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
}


/* =========================================
   GALLERY RESPONSIVE
========================================= */

@media (max-width: 900px) {

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 210px;
    }

}

@media (max-width: 600px) {

    .gallery-section {
        padding: 70px 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 240px;
    }

    .gallery-item.gallery-large {
        grid-column: span 1;
        grid-row: span 1;
    }

    .gallery-overlay {
        opacity: 1;
        padding: 18px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .gallery-lightbox {
        padding: 20px;
    }
}

.gallery-section {
    background: #ffffff;
    padding: 100px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 210px;
    gap: 15px;
}

.gallery-item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 6px;
    background: #eeeeee;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item::after {
    content: "View";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(18,61,42,0.55);
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-large {
    grid-column: span 2;
    grid-row: span 2;
}


/* TABLET */

@media (max-width: 900px) {

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 200px;
    }

}


/* MOBILE */

@media (max-width: 600px) {

    .gallery-section {
        padding: 70px 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 240px;
    }

    .gallery-large {
        grid-column: span 1;
        grid-row: span 1;
    }

}
/* =========================================
   FINAL BOOKING CTA
========================================= */

.final-booking {
    background:
        linear-gradient(
            rgba(18,61,42,0.94),
            rgba(18,61,42,0.94)
        );
    padding: 100px 20px;
    text-align: center;
}

.booking-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.booking-cta-content .section-label {
    color: #e1b84d;
}

.booking-cta-content h2 {
    color: #ffffff;
    font-size: clamp(35px, 5vw, 52px);
    line-height: 1.15;
    margin: 12px 0 20px;
}

.booking-cta-content p {
    color: rgba(255,255,255,0.82);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 35px;
}

.booking-cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.cta-book-button,
.cta-whatsapp-button {
    display: inline-block;
    padding: 16px 28px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 800;
    transition: 0.3s ease;
}

.cta-book-button {
    background: #b58a2a;
    color: #ffffff;
}

.cta-book-button:hover {
    background: #ffffff;
    color: #123d2a;
}

.cta-whatsapp-button {
    border: 2px solid #ffffff;
    color: #ffffff;
}

.cta-whatsapp-button:hover {
    background: #ffffff;
    color: #123d2a;
}


/* MOBILE */

@media (max-width: 600px) {

    .final-booking {
        padding: 75px 20px;
    }

    .booking-cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-book-button,
    .cta-whatsapp-button {
        width: 100%;
        max-width: 320px;
    }

}