/*
Theme Name: Buddha Signature Journeys
Description: This Theme is specially designed for Buddha Signature Journeys
Theme URL: 
Author: Bhutan Web Solutions
Author URI: 
Version: 0.1
Date: 28/07/2026
Copyright: (c) 2026 Buddha Signature Journeys
*/

:root {
    --gold: #f7d073;
    --gold-dark: #a5842f;
    --ink: #1a1a1a;
    --cream: #f8f4ec;
    --muted: #6b6b6b;
}

* {
    scroll-behavior: smooth
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--ink);
    background: #fff
}

h1,
h2,
h3,
h4,
h5,
.serif {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    letter-spacing: .5px
}

.eyebrow {
    letter-spacing: .35em;
    text-transform: uppercase;
    font-size: .75rem;
    color: var(--gold-dark);
    font-weight: 500
}

.btn-gold {
    background: var(--gold);
    color: #fff;
    border: none;
    padding: .8rem 1.8rem;
    border-radius: 0;
    letter-spacing: .15em;
    text-transform: uppercase;
    font-size: .8rem;
    transition: .3s
}

.btn-gold:hover {
    background: var(--gold-dark);
    color: #fff
}

.btn-outline-gold {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
    padding: .8rem 1.8rem;
    border-radius: 0;
    letter-spacing: .15em;
    text-transform: uppercase;
    font-size: .8rem;
    transition: .3s
}

.btn-outline-gold:hover {
    background: #fff;
    color: var(--ink)
}

/* Nav */
.navbar {
    padding: 1rem 2rem;
    transition: .4s;
    background: #213150;
}

.navbar.scrolled {
    background: #213150;
    backdrop-filter: blur(10px)
}

.navbar-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: #fff;
    font-weight: 600
}

.navbar-brand span {
    color: var(--gold)
}

.navbar .nav-link {
    color: #fff;
    letter-spacing: .15em;
    text-transform: uppercase;
    font-size: .78rem;
    margin: 0 .8rem
}

.navbar .nav-link:hover {
    color: var(--gold)
}
.navbar-nav .nav-link.active, .navbar-nav .nav-link.show{
    color: var(--gold);
}

/* Hero */
.hero-slide{
    min-height:100vh;
    background-size:cover;
    background-position:center;
    color:#fff;
    display:flex;
    align-items:center;
}

.hero-slide h1{
    font-size:clamp(2.5rem,6vw,5.5rem);
    line-height:1.05;
    margin:1rem 0 1.5rem;
}

.hero-slide h1 em{
    color:var(--gold);
    font-style:italic;
}

.hero-slide .lead{
    max-width:640px;
    font-size:1.1rem;
    font-weight:300;
    opacity:.9;
}

#heroCarousel{
    position:relative;
}

.carousel-item{
    transition:transform 1.2s ease-in-out, opacity 1.2s ease-in-out;
}

.carousel-indicators button{
    width:12px;
    height:12px;
    border-radius:50%;
}

.carousel-control-prev,
.carousel-control-next{
    width:6%;
}

.scroll-cue{
    position:absolute;
    bottom:25px;
    left:50%;
    transform:translateX(-50%);
    z-index:10;
    color:#fff;
    text-transform:uppercase;
    letter-spacing:.3em;
    font-size:.75rem;
}


/* Section base */
section {
    padding: 6rem 0
}

.section-head {
    text-align: center;
    margin-bottom: 4rem
}

.section-head h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin: .5rem 0
}

.divider {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 1.5rem auto;
    position: relative
}

.divider::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%
}

/* Tour cards */
.tour-card {
    position: relative;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .06);
    transition: .4s
}

.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .12)
}

.tour-img {
    height: 280px;
    overflow: hidden
}

.tour-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s
}

.tour-card:hover .tour-img img {
    transform: scale(1.08)
}

.tour-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--gold);
    color: #fff;
    padding: .3rem .8rem;
    font-size: .7rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    z-index: 2
}

.tour-body {
    padding: 1.8rem
}

.tour-body h4 {
    font-size: 1.6rem;
    margin-bottom: .5rem
}

.tour-meta {
    color: var(--muted);
    font-size: .85rem;
    margin-bottom: 1rem
}

.tour-price {
    color: var(--gold-dark);
    font-weight: 600;
    font-size: 1.1rem
}

.tour-body a {
    color: var(--ink);
    text-decoration: none;
    /*text-transform: uppercase;*/
    font-size: .75rem;
    letter-spacing: .2em;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 2px
}

/* Trust */
.trust {
    background: var(--ink);
    color: #fff
}

.trust h5 {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: .2em;
    font-size: .85rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500
}

.trust i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem
}

/* Reviews */
.review-card {
    background: var(--cream);
    padding: 2.5rem;
    border-left: 3px solid var(--gold);
    height: 100%
}

.review-card .stars {
    color: var(--gold);
    margin-bottom: 1rem
}

.review-card p {
    font-style: italic;
    color: #444
}

.review-card .name {
    margin-top: 1.5rem;
    font-weight: 600
}

.review-card .loc {
    font-size: .8rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .2em
}

/* CTA */
.cta {
    background: linear-gradient(rgba(26, 26, 26, .75), rgba(26, 26, 26, .85)), url('assets/images/bg.jpg') center/cover fixed;
    color: #fff;
    text-align: center
}

.cta h2 {
    font-size: clamp(2rem, 4vw, 3.5rem)
}

/* Footer */
footer {
    background: #0e0e0e;
    color: #aaa;
    padding: 4rem 0 2rem;
    font-size: .9rem
}

footer h6 {
    color: #fff;
    letter-spacing: .2em;
    text-transform: uppercase;
    font-size: .8rem;
    margin-bottom: 1.2rem;
    font-family: 'Inter', sans-serif
}

footer a {
    color: #aaa;
    text-decoration: none;
    display: block;
    padding: .3rem 0
}

footer a:hover {
    color: var(--gold)
}

.socials a {
    display: inline-block;
    width: 38px;
    height: 38px;
    line-height: 28px;
    text-align: center;
    border: 1px solid #333;
    margin-right: .4rem;
    border-radius: 50%;
    transition: .3s
}

.socials a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff
}

.copyright {
    border-top: 1px solid #222;
    margin-top: 3rem;
    padding-top: 1.5rem;
    text-align: center;
    font-size: .8rem
}

.page-banner{
    position:relative;
    height:420px;
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:flex-end;   /* Bottom */
    color:#fff;
    padding-bottom:60px;    /* Distance from bottom */
}

.page-banner::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.35);
}

.page-banner-content{
    position:relative;
    z-index:2;
    max-width:700px;
}

.page-banner-content h1{
    font-size:clamp(2.5rem,5vw,4.5rem);
    font-weight:700;
    color:#fff;
    margin:0;
}

@media (max-width:768px){
    .page-banner{
        height:280px;
        padding-bottom:35px;
    }

    .page-banner-content h1{
        font-size:2.2rem;
    }
}

/* Sidebar Booking Card Styling */
.sidebar-booking-card {
    position: sticky;
    top: 90px;
    z-index: 10;
}

/* Contact Form 7 - Reset Default Paragraph Spacing */
.cf7-tour-form p {
    margin-bottom: 0;
}

/* Styling Readonly Tour Title Input */
.cf7-tour-form input[readonly] {
    background-color: #f8f9fa;
    border-color: #dee2e6;
    color: #495057;
    font-weight: 600;
    cursor: not-allowed;
}

/* Response Message Customization (Success/Error Alerts) */
.wpcf7-response-output {
    margin: 1rem 0 0 0 !important;
    padding: 0.75rem 1rem !important;
    border-radius: 0.375rem !important;
    font-size: 0.9rem;
}

.wpcf7-not-valid-tip {
    font-size: 0.8rem;
    color: #dc3545;
    margin-top: 0.25rem;
}

/* Style CF7 status response containers matching Bootstrap */
.wpcf7 form.sent .wpcf7-response-output {
    background-color: #d1e7dd;
    border-color: #badbcc !important;
    color: #0f5132;
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output {
    background-color: #f8d7da;
    border-color: #f5c2c7 !important;
    color: #842029;
}
/* Contact Page Custom Styles */
.contact-info-card .contact-icon {
    width: 42px;
    height: 42px;
    background-color: var(--cream);
    color: var(--gold-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-info-card a:hover {
    color: var(--gold-dark) !important;
}

/* Contact Form Container Adjustments */
.contact-form-wrapper .wpcf7-form {
    margin-top: 1rem;
}

/* Override divider alignment for contact box */
.contact-info-card .divider {
    margin-left: 0;
}

.contact-info-card .divider::before {
    left: 0;
    transform: translateY(-50%);
}


/* Custom Pills / Tabs */
.custom-faq-tabs .nav-link {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--gold);
    border-radius: 0;
    padding: .6rem 1.6rem;
    font-size: .8rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    transition: all .3s ease;
    margin: 0 .25rem;
}

.custom-faq-tabs .nav-link.active, 
.custom-faq-tabs .nav-link:hover {
    background: var(--gold-dark) !important;
    color: #fff !important;
    border-color: var(--gold-dark) !important;
}

/* Custom Accordion */
.custom-accordion .accordion-item {
    overflow: hidden;
    border-left: 3px solid var(--gold) !important;
}

.custom-accordion .accordion-button {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--ink);
    background-color: #fff;
    padding: 1.25rem 1.5rem;
    box-shadow: none;
}

.custom-accordion .accordion-button:not(.collapsed) {
    color: var(--gold-dark);
    background-color: var(--cream);
}

.custom-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,.125);
}

.custom-accordion .accordion-button::after {
    background-size: 1rem;
    transition: transform .3s;
}

.custom-accordion .accordion-body {
    padding: 1.25rem 1.5rem;
    line-height: 1.7;
    font-size: .95rem;
    background-color: #fff;
}

/* FAQ Contact Card */
.faq-contact-card {
    border-top: 3px solid var(--gold) !important;
}

/* WhatsApp Button Flex Alignment */
.btn-whatsapp-custom {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 11px 0;
    gap: 8px;
    letter-spacing: .15em;
    font-size: .8rem;
    border-radius: 0;
    transition: all .3s ease;
}

.btn-whatsapp-custom i {
    font-size: 1.1rem;
    line-height: 1;
    margin: 0 !important;
}

/* Custom Pills / Tabs Fixes */
.custom-faq-tabs .nav-link {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--gold);
    border-radius: 0;
    padding: .6rem 1.6rem;
    font-size: .8rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    transition: all .3s ease;
    margin: 0 .25rem;
}

.custom-faq-tabs .nav-link.active, 
.custom-faq-tabs .nav-link:hover {
    background: var(--gold-dark) !important;
    color: #fff !important;
    border-color: var(--gold-dark) !important;
}