/*
  Theme Name: Varjayana Tours & Travels
  Description: This Theme is specially designed for Varjayana Tours & Travels
  Theme URL: https://www.bhutanbyexperts.com
  Author: PINE TECH
  Author URI: https://www.pine.bt
  Version: 0.1
  Date: 30/05/2026
  Copyright: (c) 2024 Varjayana Tours & Travels
*/
:root {
    --maroon: #7a1e2b;
    --gold: #c9a44c;
    --saffron: #e89b3c;
    --ink: #1a1a1a;
    --cream: #faf6ee;
    --muted: #6b6b6b;
}

* {
    scroll-behavior: smooth
}

html,
body {
    overflow-x: hidden
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--ink);
    background: var(--cream);
}

body.admin-bar .fixed-top {
    top: 32px;
}

h1,
h2,
h3,
h4,
.serif {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    letter-spacing: .3px
}

.text-gold {
    color: var(--gold)
}

.text-maroon {
    color: var(--maroon)
}

.bg-maroon {
    background: var(--maroon)
}

.bg-cream {
    background: var(--cream)
}

.btn-gold {
    background: var(--gold);
    color: #fff;
    border-radius: 999px;
    padding: .7rem 1.6rem;
    font-weight: 600;
    border: none;
    transition: .3s
}

.btn-gold:hover {
    background: var(--maroon);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(122, 30, 43, .3)
}

.btn-outline-light-gold {
    border: 1px solid rgba(255, 255, 255, .6);
    color: #fff;
    border-radius: 999px;
    padding: .7rem 1.6rem;
    font-weight: 600;
    background: transparent;
    transition: .3s
}

.btn-outline-light-gold:hover {
    background: #fff;
    color: var(--maroon)
}

/* Navbar */
.navbar {
    transition: .4s;
    padding: 1rem 0
}

.navbar.scrolled {
    background: rgba(255, 255, 255, .97) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, .08);
    padding: .5rem 0
}

.navbar .nav-link {
    color: #fff;
    font-weight: 500;
    margin: 0 .6rem;
    position: relative
}

.navbar.scrolled .nav-link {
    color: var(--ink)
}

.navbar .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    height: 2px;
    width: 0;
    background: var(--gold);
    transition: .3s
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
    width: 100%
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    color: var(--gold);
}

.brand-mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff
}

.navbar.scrolled .brand-mark {
    color: var(--maroon)
}

#mainNav {
    top: 42px;
    transition: all .3s ease;
}

#mainNav.scrolled {
    top: 0;
}

.brand-mark span {
    color: var(--gold)
}

/* Brand Logo */
.brand-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 50%;
}

.brand-mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.45rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    transition: .3s;
}

.navbar.scrolled .brand-mark {
    color: var(--maroon);
}

.brand-mark .text-gold {
    color: var(--gold);
}

/* Hero */
.hero {
    min-height: 100vh;
    position: relative;
    color: #fff;
    display: flex;
    align-items: center;
    /*background:  url('https://images.unsplash.com/photo-1626621341517-bbf3d9990a23?auto=format&fit=crop&w=1920&q=80') center/cover fixed;*/
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    line-height: 1.05
}

.hero .eyebrow {
    letter-spacing: .5em;
    font-size: .8rem;
    color: var(--gold);
    text-transform: uppercase
}

.scroll-cue {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    animation: bounce 2s infinite;
    cursor: pointer
}

@keyframes bounce {

    0%,
    100% {
        transform: translate(-50%, 0)
    }

    50% {
        transform: translate(-50%, 10px)
    }
}

/* Stats counter */
.stat {
    padding: 1.5rem;
    text-align: center
}

.stat .num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: var(--maroon);
    font-weight: 700;
    line-height: 1
}

.stat .lbl {
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .2em;
    font-size: .75rem;
    margin-top: .5rem
}

/* Section */
section {
    padding: 100px 0
}

.section-eyebrow {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: .4em;
    font-size: .75rem;
    font-weight: 600
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--maroon);
    margin-top: .5rem
}

/* Tour cards */
.tour-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    height: 420px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: .5s
}

.tour-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s
}

.tour-card:hover img {
    transform: scale(1.1)
}

.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(122, 30, 43, .25)
}

.tour-card .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .85) 0%, rgba(0, 0, 0, .2) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.8rem;
    color: #fff
}

.tour-card .badge-days {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gold);
    color: #fff;
    border-radius: 999px;
    padding: .35rem .9rem;
    font-size: .75rem;
    font-weight: 600
}

.tour-card .meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: .8rem;
    font-size: .85rem;
    opacity: .9
}

.tour-card h4 {
    margin: 0;
    font-size: 1.6rem
}

/* Experience grid */
.exp-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: .4s;
    border: 1px solid transparent
}

.exp-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .07)
}

.exp-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--maroon), var(--saffron));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.6rem;
    margin: 0 auto 1rem
}

/* Why us */
.why {
    background: url('https://images.unsplash.com/photo-1543439037-0e3a07b96239?auto=format&fit=crop&w=1920&q=80') center/cover fixed;
    position: relative;
    color: #fff
}

.why::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(122, 30, 43, .92), rgba(20, 10, 5, .85))
}

.why .container {
    position: relative;
    z-index: 1
}

.feature {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.8rem
}

.feature i {
    color: var(--gold);
    font-size: 1.4rem;
    margin-top: .3rem
}

/* Testimonials */
.testi-card {
    background: #fff;
    border-radius: 18px;
    padding: 2.2rem;
    height: 100%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .06);
    position: relative
}

.testi-card .quote {
    position: absolute;
    top: -18px;
    left: 24px;
    width: 40px;
    height: 40px;
    background: var(--gold);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center
}

.stars {
    color: var(--gold)
}

/* Gallery */
.gallery-item {
    overflow: hidden;
    border-radius: 14px;
    height: 260px;
    position: relative
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .6s
}

.gallery-item:hover img {
    transform: scale(1.12)
}

.gallery-item::after {
    content: "\f00e";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    inset: 0;
    background: rgba(122, 30, 43, .7);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    opacity: 0;
    transition: .4s
}

.gallery-item:hover::after {
    opacity: 1
}

/* Attractions */
.attraction-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    height: 420px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: .5s;
    cursor: pointer;
}

.attraction-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s;
}

.attraction-card:hover img {
    transform: scale(1.1);
}

.attraction-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(122, 30, 43, .25);
}

.attraction-overlay {
    position: absolute;
    inset: 0;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(to top,
        rgba(0, 0, 0, .88) 0%,
        rgba(0, 0, 0, .35) 55%,
        transparent 100%);
    color: #fff;
}

.attraction-overlay h3 {
    font-size: 2rem;
    margin-bottom: .6rem;
}

.attraction-overlay p {
    margin: 0;
    color: rgba(255, 255, 255, .88);
    line-height: 1.7;
}

.location-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, .14);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .2);
    color: #fff;
    padding: .45rem .9rem;
    border-radius: 999px;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .05em;
}

.location-tag i {
    color: var(--gold);
    margin-right: .35rem;
}

/* Contact */
.contact-form .form-control {
    border: none;
    border-bottom: 1.5px solid #ddd;
    border-radius: 0;
    padding: .9rem 0;
    background: transparent;
    box-shadow: none !important
}

.contact-form .form-control:focus {
    border-color: var(--gold)
}

.info-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .05);
    margin-bottom: 1rem
}

.info-card i {
    color: var(--gold);
    font-size: 1.4rem;
    margin-top: .2rem
}

/* Footer */
footer {
    background: #15080a;
    color: #bfb6ad;
    padding: 80px 0 30px
}

footer h5 {
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    margin-bottom: 1.2rem
}

footer a {
    color: #bfb6ad;
    text-decoration: none;
    transition: .2s
}

footer a:hover {
    color: var(--gold)
}

.social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #3a2a2c;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: .5rem;
    transition: .3s
}

.social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff
}

/* Floating WhatsApp */
.float-wa {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, .45);
    z-index: 999;
    animation: pulseWA 2s infinite
}

@keyframes pulseWA {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, .6)
    }

    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0)
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0)
    }
}

/* Back to top */
#toTop {
    position: fixed;
    bottom: 25px;
    left: 25px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--maroon);
    color: #fff;
    display: none;
    align-items: center;
    justify-content: center;
    border: none;
    z-index: 999
}

#toTop.show {
    display: flex
}

/* Marquee */
.marquee {
    overflow: hidden;
    background: var(--maroon);
    color: #fff;
    padding: .8rem 0;
    font-size: .9rem;
    letter-spacing: .2em;
    text-transform: uppercase
}

.marquee-track {
    display: inline-block;
    white-space: nowrap;
    animation: scroll 30s linear infinite
}

.marquee-track span {
    margin: 0 2rem
}

.marquee-track span i {
    color: var(--gold);
    margin-right: .5rem
}

@keyframes scroll {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}


/* Newsletter */
.news-wrap {
    background: linear-gradient(135deg, var(--maroon), #4a1219);
    border-radius: 24px;
    padding: 3rem;
    color: #fff
}

.page-banner {
    position: relative;
    height: 60vh;
    min-height: 420px;
    overflow: hidden;
}

/* Background image */
.banner-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
}

/* Dark overlay */
.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(20, 10, 5, 0.55),
        rgba(20, 10, 5, 0.75));
    z-index: 1;
}

/* Center content */
.banner-overlay .container {
    position: relative;
    z-index: 2;
    padding-bottom: 80px;
}

/* TITLE STYLE (main fix) */
.banner-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.5px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    margin-bottom: 0;
}

/* optional subtitle (excerpt) */
.page-banner .text-gold {
    font-size: 0.75rem;
    letter-spacing: 0.35em;
    display: inline-block;
    margin-top: 10px;
}