/*
	Theme Name: Bhutan Behind The Scene
	Description: This Theme is specially designed for Bhutan Behind The Scene
	Theme URL: https://bhutanbts.com
	Author: PINE TECH
	Author URI: https://www.pine.bt/
	Version: 0.1
	Date: 07/05/2026
	Copyright: (c) 2024 Bhutan Behind The Scene
*/
:root {
    --bs-primary: #b8860b;
    --bhutan-red: #b22222;
    --bhutan-gold: #c9a227;
    --bhutan-dark: #1a1a2e;
    --bhutan-cream: #faf6ef;
}

body {
    font-family: 'Inter', sans-serif;
    color: #222;
    background: #fff;
}

span.cursive {
	font-family: "Great Vibes", cursive;
	font-weight: 600;
	font-style: normal;
	font-size: 24px;
	padding-right: 3px;
	color: #c9a227;
}

h1,
h2,
h3,
h4,
.serif {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    letter-spacing: .3px;
}

.text-gold {
    color: var(--bhutan-gold);
}

.bg-bhutan-dark {
    background: var(--bhutan-dark);
    color: #fff;
}

.bg-cream {
    background: var(--bhutan-cream);
}

/* Navbar */
.navbar-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 700;
}

.navbar-brand i {
    color: var(--bhutan-gold);
}

.navbar .nav-link {
    font-weight: 500;
    color: #fff;
    margin: 0 .4rem;
	font-size: 14px;
}

a.nav-link.active {
    color: #c9a227 !important;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, .5) !important;
    backdrop-filter: blur(8px);
}

/* Hero Carousel */
.hero-carousel,
.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
    height: 100vh;
    min-height: 600px;
}

.hero-carousel .carousel-item {
    color: #fff;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-carousel .carousel-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .45));
}


.hero-carousel .carousel-caption {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    text-align: left;
    bottom: auto;
    padding: 0 1rem;
}

.hero-carousel h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1.05;
}

.hero-carousel .lead {
    font-size: 1.2rem;
    max-width: 640px;
}

.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
    width: 6%;
    z-index: 5;
}

.hero-carousel .carousel-indicators {
    z-index: 5;
    margin-bottom: 2rem;
}

.hero-carousel .carousel-indicators [data-bs-target] {
    width: 40px;
    height: 4px;
    background-color: var(--bhutan-gold);
    opacity: .4;
}

.hero-carousel .carousel-indicators .active {
    opacity: 1;
}

.btn-gold {
    background: var(--bhutan-gold);
    color: #1a1a2e;
    font-weight: 600;
    border: none;
    padding: .85rem 1.8rem;
    border-radius: 50px;
}

.btn-gold:hover {
    background: #e0b934;
    color: #1a1a2e;
}

.btn-outline-light-rounded {
    border: 2px solid #fff;
    color: #fff;
    padding: .8rem 1.7rem;
    border-radius: 50px;
    font-weight: 500;
}

.btn-outline-light-rounded:hover {
    background: #fff;
    color: #1a1a2e;
}

/* Section */
section {
    padding: 90px 0;
}

.section-title small {
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--bhutan-gold);
    font-weight: 600;
    font-size: .8rem;
}

.section-title h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-top: .5rem;
}

/* Feature cards */
.feature-card {
    border: none;
    background: #fff;
    border-radius: 14px;
    padding: 2rem 1.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .06);
    transition: transform .35s ease, box-shadow .35s ease;
    height: 100%;
}

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

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(201, 162, 39, .12);
    color: var(--bhutan-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

/* Tour cards */
.tour-card {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: transform .4s ease;
    height: 100%;
    background: #fff;
}

.tour-card:hover {
    transform: translateY(-6px);
}

.tour-card .tour-img {
    height: 240px;
    background-size: cover;
    background-position: center;
    position: relative;
}

/*  .tour-card .price{
    position:absolute; bottom:12px; right:12px;
    background: var(--bhutan-gold); color:#1a1a2e;
    padding:.35rem .85rem; border-radius:30px; font-weight:600; font-size:.9rem;
  }*/
.tour-card .body {
    padding: 1.5rem;
}

.tour-card h4 {
    margin-bottom: .5rem;
}

/*  .tour-meta{ font-size:.85rem; color:#666; }
  .tour-meta i{ color: var(--bhutan-gold); margin-right:4px; }*/

/* Destinations */
.destination {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    height: 360px;
    cursor: pointer;
}

.destination img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.destination:hover img {
    transform: scale(1.08);
}

.destination .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, .85) 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    color: #fff;
}

.destination h4 {
    margin: 0;
    font-size: 1.5rem;
}

.destination span {
    color: var(--bhutan-gold);
    font-size: .85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Testimonials */
.testimonial {
    background: #fff;
    padding: 2rem;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .06);
    height: 100%;
}

.testimonial .stars {
    color: var(--bhutan-gold);
    margin-bottom: .5rem;
}

.testimonial .author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 1rem;
}

.testimonial .author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.cta-band {
    background: linear-gradient(135deg, var(--bs-primary), var(--bhutan-gold));
    /*background: #000;*/
    color: #fff;
    padding: 4rem 2rem;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: "\f0e7";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 5%;
    top: 50%;
    z-index: -1;
    transform: translateY(-50%);
    font-size: 14rem;
    opacity: 0.08;
}

/* Footer */
footer {
    background: rgba(0, 0, 0, .8);
    color: #cfd0d6;
    padding: 70px 0 20px;
}

footer h5 {
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

footer a {
    color: #cfd0d6;
    text-decoration: none;
}

footer a:hover {
    color: var(--bhutan-gold);
}

.social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .08);
    margin-right: 8px;
    transition: background .3s;
}

.social a:hover {
    background: var(--bhutan-gold);
    color: #1a1a2e;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    margin-top: 40px;
    padding-top: 20px;
    font-size: .9rem;
    text-align: center;
}

/* Stats */
.stat h3 {
    font-size: 2.8rem;
    color: var(--bhutan-gold);
    margin-bottom: 0;
}

.stat p {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: .85rem;
    color: #fff;
}

.page-banner {
  height: 60vh;
  position: relative;
  overflow: hidden;
}

.banner-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

/* FIXED */
.banner-overlay {
  position: absolute;   
  inset: 0;            
  z-index: 2;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.1));
}

.banner-title {
  font-size: 2.5rem;
  font-weight: 600;
}

body.admin-bar #mainNav {
  top: 32px;
}


.whatsapp {
    position: fixed;
    bottom: 108px;
    right: 15px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    transition: all 0.3s ease;
}
p.whatsapptext {
    margin: 0;
    margin-bottom: 8px;
    text-align: center;
    background-color: #e1ffe9de;
    border-radius: 15px 5px 15px 5px;
    padding: 7px 7px 5px 7px;
    font-weight: bold;
    line-height: 1.2rem;
    font-size: 1rem;
    position: relative;
    word-wrap: break-word;
    max-width: 200px;
    color: #004303;
}
.whatsappclose {
    width: 100%;
    height: 1.7rem;
}
button.whatsappclose-button {
    padding: 0;
    background-color: #ffffff00;
    font-size: 1.45rem;
    cursor: pointer;
    color: #0000006b;
    transition: all 0.3s ease;
}
button.whatsappclose-button:hover {
    color: #000000;
}   