:root {
    --primary-dark: #0F172A;
    --gold: #C5A059;
    --gold-hover: #b08d4b;
    --cream: #F9F7F2;
    --text-grey: #64748B;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Raleway', sans-serif;
    scroll-behavior: smooth;
    --saffron: #FF9933;
    --gold: #D4AF37;
    --dark: #0F172A;
    --cream: #FCF8F3;
}

body {
    font-family: var(--font-body);
    color: var(--primary-dark);
    background-color: var(--cream);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    font-weight: 700;
}

/* --- Navigation --- */
/*.navbar {
    padding: 20px 0;
    transition: all 0.4s ease;
    border-bottom: 1px solid darkgoldenrod;
}

.navbar-brand {
    font-size: 1.5rem;
    color: white !important;
    letter-spacing: 2px;
}

.nav-link {
    color: rgba(255,255,255,0.8) !important;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-left: 20px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 5px;
    left: 0;
    background-color: var(--gold);
    transition: 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.navbar-scrolled {
    background-color: var(--primary-dark);
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}*/
/* =========================================
        1. Navbar Core Styles
        ========================================= */
#mainNav {
    background-color: transparent; /* Start Transparent */
    padding-top: 20px;
    padding-bottom: 20px;
    transition: all 0.4s ease-in-out; /* Smooth animation */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Subtle line in hero */
}

    /* =========================================
        2. Scrolled State (Added via JS)
        ========================================= */
    #mainNav.navbar-scrolled {
        background-color: #0c1829; /* Deep Navy Blue */
        padding-top: 10px;
        padding-bottom: 10px;
        border-bottom: none;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

/* =========================================
        3. Mobile View (Max-width 991px)
        ========================================= */
/* Ensure mobile menu is ALWAYS dark blue so links are readable */
@media (max-width: 991px) {
    #mainNav {
        background-color: #0c1829 !important;
        padding-top: 10px;
        padding-bottom: 10px;
    }
    /* Optional: Fix mobile toggler color */
    .navbar-toggler {
        border-color: rgba(255,255,255,0.5);
    }
}

/* =========================================
        4. Links & Buttons
        ========================================= */
#mainNav .nav-link {
    color: #ffffff !important;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-left: 15px;
    transition: color 0.3s;
}

    #mainNav .nav-link:hover,
    #mainNav .nav-link.active {
        color: #d4af37 !important; /* Gold Color */
    }

/* Contact Button Styling */
.btn-book {
    border: 1px solid #d4af37;
    padding: 8px 25px;
    border-radius: 0; /* Sharp corners like screenshot */
}

    .btn-book:hover {
        background-color: #d4af37;
        color: #000000 !important; /* Black text on gold background */
    }
/* Force the icon to be visible and sized correctly */
.navbar-toggler i.bi-list {
    display: inline-block !important;
    line-height: 1;
    vertical-align: middle;
}

/* Optional: Add a hover effect to the mobile menu button */
.navbar-toggler:focus {
    box-shadow: none; /* Removes the ugly blue outline on click */
}

/*.btn-book {
    border: 1px solid var(--gold);
    color: var(--gold) !important;
    border-radius: 0;
}

.btn-book:hover {
    background-color: var(--gold);
    color: white !important;
}*/

/* --- Hero Section --- */
/*.hero-section {
    position: relative;
    height: 100vh;
    background-image: url('');
    z-index: 1;
}*/
.hero-section {
    position: relative;
    height: 100vh;
    background: url('../Images/aarti.jpg') center/cover no-repeat fixed; /* Parallax fixed */
    z-index: 1;
}
.overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(15,23,42,0.3), rgba(15,23,42,0.8));
    z-index: -1;
}

.text-gold { color: var(--gold) !important; }

.btn-custom-gold {
    background-color: var(--gold);
    color: white;
    padding: 15px 40px;
    border-radius: 0; /* Sharp edges for elegance */
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.8rem;
    transition: 0.3s;
    border: none;
}

.btn-custom-gold:hover {
    background-color: var(--gold-hover);
    /*transform: translateY(-3px);*/
    color: white;
}

.btn-custom-outline {
    border: 1px solid rgba(255,255,255,0.5);
    color: white;
    padding: 14px 40px;
    border-radius: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.8rem;
    text-decoration: none;
    transition: 0.3s;
}

.btn-custom-outline:hover {
    background-color: white;
    color: var(--primary-dark);
}

/* Scroll Mouse Animation */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}
.mouse {
    width: 26px; height: 40px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 20px;
    position: relative;
}
.mouse::before {
    content: '';
    position: absolute;
    top: 5px; left: 50%;
    width: 4px; height: 4px;
    background: white;
    transform: translateX(-50%);
    border-radius: 50%;
    animation: scroll 2s infinite;
}
@keyframes scroll {
    0% { top: 5px; opacity: 1; }
    100% { top: 20px; opacity: 0; }
}

/* --- Sections General --- */
.section-padding { padding: 100px 0; }
.letter-spacing-small { letter-spacing: 2px; font-size: 0.8rem; font-weight: 600; }
.bg-cream { background-color: var(--cream); }

/* --- About Image Stack --- */
.image-stack { position: relative; padding: 20px; }
.img-back { opacity: 0.6; transform: translate(30px, -30px); position: absolute; top: 0; right: 0; width: 80%; z-index: 1; }
.img-top { position: relative; z-index: 2; width: 85%; border: 5px solid white; }
.icon-box {
    width: 50px; height: 50px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(197, 160, 89, 0.1);
    border-radius: 50%;
    font-size: 1.2rem;
}

/* --- Package Cards --- */
.package-card {
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.4s;
    cursor: pointer;
}

.package-card:hover { transform: translateY(-10px); }

.card-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.card-img-wrapper img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.package-card:hover .card-img-wrapper img { transform: scale(1.1); }

.price-tag {
    position: absolute;
    bottom: 0; right: 0;
    background: var(--primary-dark);
    color: var(--gold);
    padding: 10px 20px;
    font-family: var(--font-heading);
    font-weight: bold;
}

.card-content { padding: 30px; }
.card-content h3 { font-size: 1.4rem; margin-bottom: 5px; }

.btn-link-gold {
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.3s;
}
.btn-link-gold:hover { color: var(--gold); margin-left: 5px; }

/* --- Booking Section --- */
.bg-dark-spiritual {
    background-color: var(--primary-dark);
    position: relative;
    overflow: hidden;
}
.booking-form-wrapper {
    background: white;
    border-top: 5px solid var(--gold);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}


/* --- Vertical Timeline Design --- */
.timeline-section { 
    position: relative; 
    padding-left: 40px; 
    border-left: 2px solid #e2e8f0; /* Light grey line */
    margin-left: 10px;
}

.timeline-item { 
    position: relative; 
    margin-bottom: 50px; 
}

.timeline-dot {
    position: absolute; 
    left: -49px; /* Adjust based on padding/border */
    top: 5px;
    width: 20px; 
    height: 20px;
    background: var(--gold); 
    border-radius: 50%;
    border: 4px solid white; 
    box-shadow: 0 0 0 2px rgba(197, 160, 89, 0.3); /* Glow effect */
}

/* --- Tab Styling --- */
.nav-tabs .nav-link {
    font-family: var(--font-heading);
    letter-spacing: 1px;
    padding: 15px 25px;
    transition: 0.3s;
}

.nav-tabs .nav-link:hover {
    color: var(--gold) !important;
}

.nav-tabs .nav-link.active {
    color: var(--primary-dark) !important;
    border-bottom: 3px solid var(--gold) !important;
}

/* --- Sticky Sidebar for Booking --- */
.sticky-sidebar {
    position: sticky;
    top: 100px; /* Distance from top of screen */
    z-index: 10;
}


/*Places */

.font-cinzel {
    font-family: 'Cinzel', serif;
}
/* Hero Section */
.places-hero {
        background: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.7)), url('/Images/aarti.jpg');
/*    background-image: url('/Images/aarti.jpg');*/
    height: 60vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

/* Place Cards */
.place-card {
    background: white;
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    height: 100%;
}

    .place-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(255, 153, 51, 0.2);
    }

.place-img-container {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.place-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.place-card:hover img {
    transform: scale(1.1);
}

.tagline {
    color: var(--saffron);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.btn-view {
    background: var(--dark);
    color: white;
    border-radius: 50px;
    padding: 8px 25px;
    border: 2px solid transparent;
    transition: 0.3s;
    text-decoration: none;
    display: inline-block;
}

    .btn-view:hover {
        background: var(--saffron);
        color: white;
        border-color: var(--saffron);
    }

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--saffron);
    margin: 15px auto;
}


/*Place details*/


.page-hero {
    /*    background-image: url('/Images/aarti.jpg');*/
    background-image: url('../images/about.jpg');
    height: 60vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}


.font-cinzel {
    font-family: 'Cinzel', serif;
}

.detail-hero {
    height: 70vh;
    background-image: url('../images/about.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    color: white;
    padding-bottom: 50px;
}

.back-btn {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

    .back-btn:hover {
        background: var(--saffron);
        color: white;
    }

.info-card {
    border-left: 4px solid var(--saffron);
    background: var(--cream);
    padding: 25px;
    border-radius: 0 15px 15px 0;
    margin-bottom: 30px;
}

.icon-box {
    font-size: 1.5rem;
    color: var(--saffron);
    margin-right: 15px;
}

.gallery-img {
    height: 200px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: 0.3s;
    cursor: pointer;
}

    .gallery-img:hover {
        transform: scale(1.05);
    }

.sticky-sidebar {
    position: sticky;
    top: 30px;
}

/* =========================================
       Scoped CSS for Spiritual Journeys Section
       Wrapper class ensures no conflicts
       ========================================= */
.spiritual-tour-section {
    font-family: 'Poppins', sans-serif;
    background-color: #fcfcfc; /* Very light subtle background */
    padding: 60px 0;
}

    /* --- Section Headings --- */
    .spiritual-tour-section .section-title {
        color: #0d1b3e; /* Dark Navy */
        font-weight: 700;
        font-size: 2.5rem;
        margin-bottom: 10px;
    }

    .spiritual-tour-section .section-subtitle {
        color: #6c757d;
        font-weight: 400;
        font-size: 1rem;
        margin-bottom: 50px;
    }

    /* --- Card Styling --- */
    .spiritual-tour-section .tour-card {
        border: none;
        border-radius: 16px;
        background: #fff;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); /* Soft shadow */
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        overflow: hidden;
        height: 100%; /* Equal height cards */
    }

        .spiritual-tour-section .tour-card:hover {
            transform: translateY(-5px); /* Lift effect */
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }

    /* --- Image Area --- */
    .spiritual-tour-section .card-img-wrapper {
        position: relative;
        height: 220px;
        overflow: hidden;
    }

    .spiritual-tour-section .card-img-top {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .spiritual-tour-section .tour-card:hover .card-img-top {
        transform: scale(1.05); /* Subtle zoom on hover */
    }

    /* --- Category Badge --- */
    .spiritual-tour-section .category-badge {
        position: absolute;
        top: 20px;
        left: 20px;
        background-color: #fff; /* White bg like image */
        color: #ea580c; /* Orange text */
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        padding: 6px 12px;
        border-radius: 50px; /* Pill shape */
        box-shadow: 0 2px 8px rgba(0,0,0,0.15);
        letter-spacing: 0.5px;
    }

    /* --- Card Body --- */
    .spiritual-tour-section .card-body {
        padding: 25px;
        display: flex;
        flex-direction: column;
    }

    .spiritual-tour-section .card-title {
        font-size: 1.25rem;
        font-weight: 700;
        color: #0d1b3e;
        margin-bottom: 12px;
    }

    .spiritual-tour-section .card-text {
        color: #6c757d;
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 20px;
        flex-grow: 1; /* Pushes footer down */
    }

    /* --- Duration Icon --- */
    .spiritual-tour-section .duration-text {
        color: #555;
        font-size: 0.9rem;
        font-weight: 500;
        margin-bottom: 25px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .spiritual-tour-section .duration-text i {
            color: #ea580c; /* Orange icon */
        }

    /* --- Price Footer --- */
    .spiritual-tour-section .card-footer-custom {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        margin-top: auto;
        padding-top: 15px;
        border-top: 1px solid #f0f0f0;
    }

    .spiritual-tour-section .price-label {
        font-size: 0.75rem;
        text-transform: uppercase;
        color: #888;
        margin-bottom: 2px;
        display: block;
        font-weight: 600;
    }

    .spiritual-tour-section .price-value {
        font-size: 1.35rem;
        font-weight: 700;
        color: #0d1b3e;
        line-height: 1;
    }

    /* --- Action Button --- */
    .spiritual-tour-section .btn-custom {
        background-color: #ea580c; /* Brand Orange */
        color: #fff;
        border: none;
        padding: 10px 24px;
        font-weight: 500;
        border-radius: 8px;
        font-size: 0.95rem;
        transition: background-color 0.2s;
    }

        .spiritual-tour-section .btn-custom:hover {
            background-color: #c2410c; /* Darker orange on hover */
            color: #fff;
        }
/* --- Footer --- */



:root {
    --luxury-dark: #06090f;
    --luxury-gold: #C5A059;
    --gold-bright: #F3E0B5;
    --text-silver: #B0B3B8;
    --glass: rgba(255, 255, 255, 0.03);
}

.luxury-footer {
    background-color: var(--primary-dark);
    color: #fff;
    padding: 100px 0 40px;
    font-family: 'Jost', sans-serif;
    position: relative;
    overflow: hidden;
}

/* Sublte Background Pattern */
.footer-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background-image: url('https://www.transparenttextures.com/patterns/black-paper.png');*/ /* Adds texture */
    opacity: 0.3;
    pointer-events: none;
}

/* Brand Section */
.brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.2rem;
    font-weight: 600;
    margin-bottom: 0;
    letter-spacing: -1px;
}

.brand-motto {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.2rem;
    color: var(--luxury-gold);
    letter-spacing: 2px;
}

/* Gold Shimmer Animation */
.gold-shimmer {
    background: linear-gradient(to right, var(--luxury-gold) 20%, var(--gold-bright) 40%, var(--gold-bright) 60%, var(--luxury-gold) 80%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 4s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

/* Premium Top Row */
.footer-top-row {
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
    padding-bottom: 50px;
    margin-bottom: 60px;
}

/* Luxury Newsletter */
.newsletter-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.luxury-input-group {
    display: flex;
    background: var(--glass);
    border: 1px solid rgba(197, 160, 89, 0.3);
    padding: 5px;
    border-radius: 0;
}

    .luxury-input-group input {
        background: transparent;
        border: none;
        color: #fff;
        padding: 12px 20px;
        flex-grow: 1;
        outline: none;
    }

    .luxury-input-group button {
        background: var(--luxury-gold);
        color: var(--luxury-dark);
        border: none;
        padding: 0 25px;
        text-transform: uppercase;
        font-weight: 600;
        font-size: 0.8rem;
        letter-spacing: 1px;
        transition: 0.3s;
    }

        .luxury-input-group button:hover {
            background: var(--gold-bright);
        }

/* Sidebar Titles */
.luxury-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: var(--luxury-gold);
    margin-bottom: 25px;
    position: relative;
}

.luxury-text {
    color: var(--text-silver);
    line-height: 1.8;
    font-weight: 300;
}

/* Nav Links */
.luxury-nav {
    list-style: none;
    padding: 0;
}

    .luxury-nav li {
        margin-bottom: 15px;
    }

    .luxury-nav a {
        color: var(--text-silver);
        text-decoration: none;
        transition: 0.3s;
        font-weight: 400;
        font-size: 1rem;
    }

        .luxury-nav a:hover {
            color: #fff;
            padding-left: 8px;
        }

/* Social Icons */
.social-circle-wrap {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-link {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(197, 160, 89, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--luxury-gold);
    text-decoration: none;
    transition: 0.4s;
}

    .social-link:hover {
        background: var(--luxury-gold);
        color: var(--luxury-dark);
        transform: rotate(360deg);
    }

/* Contact Info */
.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    align-items: flex-start;
}

.icon-gold {
    color: var(--luxury-gold);
    font-size: 1rem;
}

.contact-item p {
    color: var(--text-silver);
    margin: 0;
    font-size: 0.95rem;
}

/* Legal Bottom */
.footer-legal {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
    color: #666;
}

.designer-credit {
    color: var(--luxury-gold);
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .brand-name {
        font-size: 2.5rem;
    }

    .luxury-footer {
        padding: 60px 0 30px;
    }
}