﻿/* ==========================================
   🌄 GLOBAL THEME VARIABLES
========================================== */
/*:root {
    --primary-color: #e1a74e;
    --secondary-color: #00bfa5;
    --text-light: #fff;
    --text-dark: #333;
    --text-gray: #aaa;
    --bg-dark: #0f1a24;
    --bg-AboutUs: rgb(253, 246, 234);
    --bg-SummerDeals: #504128;
    --bg-nav: #504128;
    --nav-text: #504128;
    --bg-btn : #ffd65a;
    --btn-text : #111;
}*/

/* ==========================================
   GLOBAL LAYOUT
========================================== */
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap" rel="stylesheet" >

* {
    box-sizing: border-box
}

:root {
    --bg1: #fff7f0;
    --bg2: #fff9f4;
    --accent: #ff7a00; /* orange */
    --accent-2: #ff944d;
    --dark: #1f1b18;
    --muted: #6f6b66;
    --card: #ffffff;
}
body {
    margin: 0;
    font-family: "Poppins",system-ui,Segoe UI,Roboto,Arial;
    background: linear-gradient(180deg,var(--bg1),var(--bg2));
    color: var(--dark);
    -webkit-font-smoothing: antialiased;
}

/*body {
    font-family: 'Segoe UI', sans-serif;
    background: #f8f9fa;
    margin: 0;
    overflow-x: hidden;
}
*/
/* ==========================================
   NAVBAR
========================================== */

/* Toggle Button Styling */
.navbar-toggler {
    border: none; /* Remove default border */
    background: transparent; /* Keep background clean */
    color: var(--nav-text); /* Use your custom text color */
    padding: 0.5rem 0.75rem;
    transition: all 0.3s ease;
}

/* Icon inside the toggle (hamburger lines) */
.navbar-toggler-icon {
    background-image: none; /* Remove Bootstrap default icon */
    width: 24px;
    height: 2px;
    background-color: var(--nav-text); /* Set color */
    position: relative;
    transition: all 0.3s ease;
}

    /* Create the 3-line effect */
    .navbar-toggler-icon::before,
    .navbar-toggler-icon::after {
        content: "";
        position: absolute;
        left: 0;
        width: 24px;
        height: 2px;
        background-color: var(--nav-text);
        transition: all 0.3s ease;
    }

    .navbar-toggler-icon::before {
        top: -7px;
    }

    .navbar-toggler-icon::after {
        top: 7px;
    }

/* Hover effect */
.navbar-toggler:hover .navbar-toggler-icon,
.navbar-toggler:hover .navbar-toggler-icon::before,
.navbar-toggler:hover .navbar-toggler-icon::after {
    background-color: var(--nav-text-hover); /* Optional hover tint */
    transform: scale(1.05);
}

/* When expanded (optional animation to X icon) */
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-color: transparent;
}

    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
        transform: rotate(45deg);
        top: 0;
    }

    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
        transform: rotate(-45deg);
        top: 0;
    }


/*.navbar {
    background: #fff;
    border-bottom: 1px solid #eee;
}*/

.navbar {
    /*background: rgba(17, 24, 39, 0.8) !important;*/
    /*background: rgba(255, 255, 255, 0.2) !important;*/
    background: var(--bg-nav) !important;
    opacity: 0.4;
    backdrop-filter: blur(10px);
    /*padding: 1rem;*/
    transition: all 0.3s ease;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border: none !important;
    box-shadow: none !important;
}

    /* Navbar shrink on scroll */
    .navbar.scrolled {
        /*background: rgba(15, 26, 36, 0.99) !important;*/
        /*background: rgba(255, 255, 255, 0.6) !important;*/
        background: var(--bg-nav) !important;
        opacity: 0.9;
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        padding: 1rem 1.5rem;
        box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    }

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color) !important;
    text-transform: uppercase;
}

.navbar-nav .nav-link {
    color: var(--nav-text) !important;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 10px 18px;
    transition: 0.3s;
}

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link:focus {
        color: var(--nav-text-hover) !important;
        transform: translateY(-2px);
    }

.dropdown-menu {
    border-radius: 6px;
}

.dropdown-item {
    font-weight: 500;
    transition: 0.3s;
}

    .dropdown-item:hover {
        background: var(--nav-text-hover) !important;
        color: var(--text-light);
    }

/*AboutUs*/

.header-section {
    background-color: var(--bg-AboutUs);
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
   
}

.about-section h2 {
    font-size: 2rem;
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    margin-top: 30px;
}

    .about-section h2::before,
    .about-section h2::after {
        content: "";
        display: inline-block;
        width: 40px;
        height: 2px;
        background-color: var(--primary-color);
        vertical-align: middle;
        margin: 0 5px;
    }


/* ==========================================
   BUTTONS
========================================== */
.btn-primary,
.btn-theme {
    width: 100%; /* Full width button */
    text-align: center;
    background: var(--bg-btn) !important;
    border: none;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 6px;
    transition: background-color 0.2s ease;
    color: var(--btn-text) !important;
    margin-top: auto;
}

    .btn-primary:hover,
    .btn-theme:hover {
        opacity: 0.9;
        transform: translateY(-2px);
    }


/* ==========================================
   PROMO SECTION
========================================== */


/*.treks-section {
    padding: 25px 0;
    background: var(--gray-800);
    transition: background-color 0.3s ease;
}*/

.treks-container {
    width: 90%;
    margin: auto;
}

/* Heading */
.section-title {
    font-size: 40px;
    text-align: center;
    margin-bottom: 35px;
    font-weight: 700;
    color: var(--text-light);
}

    .section-title .highlight {
        color: var(--primary-color);
    }

/* Grid */
.treks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 60px;
    margin-top:40px;
    /*padding:40px;*/
}

/* Card */
.trek-card-home {
    background: var(--gray-900);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    transition: 0.4s ease;
}

    .trek-card-home:hover {
        transform: scale(1.02);
        box-shadow: 0 10px 30px var(--primary-color);
    }
.section-title {
    color: var(--text-dark);
}
/* Image */
.trek-image {
    height: 250px;
    background-size: cover;
    background-position: center;
}

/* Content */
.trek-content {
    padding: 24px;
}

.trek-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

    .trek-header h3 {
        font-size: 22px;
        font-weight: bold;
        color: var(--text-dark);
    }

.badge {
    background: var(--primary-color);
    color: #111;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom:7px;
}

.promoslug .promoDescription {
    padding: 6px 12px;
}
/* Text */
.trek-content p {
    color: var(--text-dark);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 18px;
}

/* Footer */
.trek-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    display: flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
}

    .price i {
        width: 18px;
        margin-right: 15px;
    }

/* Link */
.trek-link {
    color: var(--primary-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    transition: 0.3s;
}

    .trek-link:hover {
        color: #ffd65a;
    }

    .trek-link i {
        width: 18px;
        margin-left: 4px;
    }

/* View All Button */
.view-all {
    text-align: center;
    margin-top: 50px;
    margin-bottom:10px;
}

/*.view-all-btn {
    padding: 12px 35px;
    border: 2px solid var(--primary-color);
    color: var(--secondary-color);
    border-radius: 50px;
    font-weight: bold;
    transition: 0.4s ease;
    text-decoration: none;
}

    .view-all-btn:hover {
        background: var(--primary-color);
        color: #111;
        transform: scale(1.08);
    }*/

.page-info-pill {
    display: inline-flex; /* Use flex to center text vertically & horizontally */
    justify-content: center; /* Horizontal centering */
    align-items: center; /* Vertical centering */
    padding: 6px 14px;
    margin: 0 10px;
    background-color: var(--primary-color);
    color: #111;
    font-weight: 600;
    border-radius: 25px;
    font-size: 14px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    transition: background 0.3s, transform 0.2s;
    text-align: center; /* fallback for older browsers */
}

    .page-info-pill:hover {
        background-color: var(--primary-color);
        transform: translateY(-2px);
    }


/* ==========================================
   FOOTER
========================================== */
.footer {
    background: var(--bg-footer);
    color: var(--footer-text);
    padding: 60px 20px 25px;
    font-family: "Poppins", sans-serif;
}

.footer__container {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
}

.footer__brand,
.footer__links,
.footer__contact {
    flex: 1 1 250px;
}

.footer__logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--footer-text);
}

.footer__title {
    color: var(--footer-text);
    font-weight: 600;
    position: relative;
    margin-bottom: 12px;
}

    .footer__title::after {
        content: "";
        display: block;
        width: 40px;
        height: 2px;
        background: var(--footer-text);
        margin-top: 6px;
    }

.footer__menu {
    list-style: none;
    padding: 0;
}

    .footer__menu a {
        color: var(--footer-text);
        font-size: 14px;
        text-decoration: none;
        transition: 0.3s;
    }

        .footer__menu a:hover {
            color: var(--footer-text-hover);
            padding-left: 5px;
        }

.footer__bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 13px;
    border-top: 1px solid #222;
    padding-top: 15px;
}

/* ==========================================
   RESPONSIVE
========================================== */
@media (max-width: 576px) {
    .promo-card {
        flex: 0 0 85%;
    }
}

@media (max-width: 992px) {
    .footer__container

{
    justify-content: center;
    text-align: center;
}

.footer__brand,
.footer__links,
.footer__contact {
    flex: 1 1 45%;
    text-align:center;
}

.footer__title::after {
    margin: 6px auto 0;
}

}

@media (max-width: 600px) {
    .footer__container

{
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

    .footer__brand,
    .footer__links,
    .footer__contact {
        flex: 1 1 100%;
        min-width: unset;
        text-align: center;
    }

.footer__menu a:hover {
    padding-left: 0;
}
}




/*TrekDetails*/

/* Custom animations and transitions */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
/*::-webkit-scrollbar {
    width: 8px;
}*/

/*::-webkit-scrollbar-track {
    background: #1a202c;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #e1a74e, #d18f2b);
    border-radius: 4px;
}*/
/* Hero section styles */
#vanta-bg {
    position: relative;
}

    #vanta-bg::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to bottom, rgba(17,24,39,0.8) 0%, rgba(17,24,39,0.4) 100%);
        z-index: 1;
    }

/* Section transitions */
section {
    transition: background-color 0.5s ease;
}

/* Card hover effects */
.card-hover {
    transition: all 0.3s ease;
}

    .card-hover:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 25px -5px rgba(225, 167, 78, 0.2);
    }

/* Input focus effects */
input:focus, textarea:focus {
    box-shadow: 0 0 0 3px rgba(225, 167, 78, 0.3);
}

/* Golden theme colors */
.bg-golden {
    background-color: #e1a74e;
}

.text-golden {
    color: #e1a74e;
}

.border-golden {
    border-color: #e1a74e;
}

.hover\:bg-golden:hover {
    background-color: #e1a74e;
}

.hover\:text-golden:hover {
    color: #e1a74e;
}






/*styles*/

.itinerary-day {
    border-left: 4px solid var(--primary-color);
}




.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

    .hero-slide.active {
        opacity: 1;
        z-index: 1;
    }

.trek-hero-slideshow {
    position: relative;
    height: 60vh; /* or desired height */
    overflow: hidden;
}


.hero-slide.active {
    opacity: 1;
}

.trek-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}

.trek-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.trek-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.4));
    z-index: -1;
}


.trek-info-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    padding: 2rem;
    margin: -80px auto 3rem;
    position: relative;
    z-index: 10;
    max-width: 1000px;
}

.trek-info-item {
    text-align: center;
    padding: 1rem;
}

    .trek-info-item small {
        display: block;
        color: #6c757d;
        font-weight: 500;
        margin-bottom: 0.5rem;
    }

    .trek-info-item div {
        font-size: 1.1rem;
        font-weight: 600;
        color: #333;
    }

    .trek-info-item i {
        color: var(--primary-color);
        margin-right: 0.5rem;
    }

.trek-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    margin-bottom: 2rem;
}



.tab-nav {
    display: flex;
    border-bottom: 1px solid #dee2e6;
    background: white;
    border-radius: 8px 8px 0 0;
    overflow-x: auto;
}

.tab-button {
    padding: 1rem 2rem;
    border: none;
    background: none;
    cursor: pointer;
    font-weight: 500;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
    white-space: nowrap;
}

    .tab-button.active {
        color: var(--primary-color);
        border-bottom-color: var(--primary-color);
        background: #f8f9fa;
    }

.bottomCard {
    color: var(--text-light);
    background: var(--secondary-color);
}


.inclusion-exclusion {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.packing-category {
    margin-bottom: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.gallery-image {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

    .gallery-image img {
        width: 100%;
        height: 250px;
        object-fit: cover;
    }

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 1rem;
    font-size: 14px;
}

.highlight-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.5rem;
    background: #e8f5e8;
    border-radius: 6px;
}



media (max-width: 768px) {
    .inclusion-exclusion

{
    grid-template-columns: 1fr;
}

.trek-info-card {
    margin: -40px 1rem 2rem;
    padding: 1.5rem;
}

    .trek-info-card .row > div {
        margin-bottom: 1rem;
    }

.tab-nav {
    flex-wrap: wrap;
}

}

.trek-info-item {
    text-align: left;
}


.container-div {
    margin-top: 8rem;
}