/* ==========================================================================
   CSS Reset & Variables
   ========================================================================== */
:root {
    --bg-cream: #FCF9F2;
    --bg-cream-dark: #F5EFE0;
    --text-dark: #3D2511;
    --text-muted: #6E533C;
    --accent-orange: #C25918;
    --accent-orange-hover: #A04710;
    --accent-gold: #C59B27;
    --accent-gold-hover: #AB831E;
    --white: #FFFFFF;
    --card-bg: #FCFAF6;
    --border-color: rgba(197, 155, 39, 0.2);
    --border-color-light: rgba(197, 155, 39, 0.1);
    
    --font-heading: 'Cinzel', serif;
    --font-serif: 'Playfair Display', serif;
    --font-body: 'Lora', serif;
    --font-sans: 'Outfit', sans-serif;
    
    --shadow-sm: 0 4px 10px rgba(61, 37, 17, 0.04);
    --shadow-md: 0 10px 25px rgba(61, 37, 17, 0.06);
    --shadow-lg: 0 15px 35px rgba(61, 37, 17, 0.1);
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-cream);
    color: var(--text-dark);
    font-family: var(--font-body);
    line-height: 1.65;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.btn-primary {
    background-color: var(--accent-orange);
    color: var(--white);
    border-radius: 5px;
    padding: 10px 22px;
}

.btn-primary:hover {
    background-color: var(--accent-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(194, 89, 24, 0.3);
}

.btn-accent {
    background-color: var(--accent-orange);
    color: var(--white);
    padding: 12px 30px;
    font-size: 0.9rem;
    box-shadow: var(--shadow-sm);
    border-radius: 5px;
}

.btn-accent:hover {
    background-color: var(--accent-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(194, 89, 24, 0.35);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background-color: var(--bg-cream);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color-light);
    box-shadow: 0 2px 12px rgba(61, 37, 17, 0.02);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--font-sans);
    font-size: 0.82rem;
    color: var(--accent-gold);
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1.1;
}

.logo-main {
    font-family: var(--font-sans);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--accent-orange);
    letter-spacing: 0px;
    margin: 2px 0 4px 0;
    line-height: 1.1;
}

.logo-subtitle {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    color: var(--text-dark);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.nav-bar ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-link {
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--text-dark);
    padding: 5px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--accent-orange);
    transition: var(--transition-smooth);
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-orange);
}

.nav-link.active::after, .nav-link:hover::after {
    width: 100%;
}

.header-action {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
}

/* Mobile Nav Drawer */
.mobile-nav {
    display: none;
    background-color: var(--bg-cream);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 5%;
    box-shadow: var(--shadow-md);
}

.mobile-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-nav-link {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    display: block;
    padding: 8px 0;
}

.mobile-nav-link.active, .mobile-nav-link:hover {
    color: var(--accent-orange);
}

.mobile-btn {
    width: 100%;
    margin-top: 10px;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    position: relative;
    padding: 0;
    background: var(--bg-cream);
    overflow: hidden;
}

/* Desktop Banner Styling */
.hero-banner-desktop {
    display: block;
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0;
    border-radius: 0;
    border: none;
    overflow: hidden;
    background-color: var(--bg-cream);
}

.hero-banner-img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-banner-btn {
    position: absolute;
    left: 13.48%;
    top: 78.84%;
    width: 15.62%;
    height: 8.46%;
    cursor: pointer;
    z-index: 10;
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    outline: none;
}

.hero-banner-btn:hover {
    background-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 15px rgba(194, 89, 24, 0.45);
}

.hero-banner-btn:focus-visible {
    outline: 2px solid var(--accent-orange);
    outline-offset: 2px;
}

.hero-mobile-content {
    display: none;
}

/* Faint Lotus Watermark Positioned in Bottom Left Corner */
.hero-watermark {
    position: absolute;
    bottom: -30px;
    left: -40px;
    pointer-events: none;
    z-index: 1;
}

.hero-container {
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.ornament-gold {
    margin-bottom: 12px;
    animation: pulse 4s infinite ease-in-out;
}

.hero-topheading {
    color: var(--accent-gold);
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 5px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-title-first {
    color: var(--text-dark);
}

.hero-title-second {
    color: var(--accent-orange);
}

.divider-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 15px;
}

.hero-divider-svg {
    display: block;
}

.hero-subtitle-journey {
    font-family: var(--font-body);
    font-size: 1.35rem;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 30px;
    display: block;
    width: 100%;
    text-align: center;
}

.hero-quote {
    font-family: var(--font-body);
    font-size: 1.35rem;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 35px;
    position: relative;
    max-width: 520px;
    text-align: center;
}

.quote-mark {
    color: var(--accent-gold);
    font-size: 2rem;
    line-height: 0;
    position: relative;
}

.quote-mark.open {
    top: 6px;
    margin-right: 5px;
}

.quote-mark.close {
    top: 15px;
    margin-left: 5px;
}

.hero-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image {
    width: 100%;
    max-width: 560px;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    display: block;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

.hero-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(61, 37, 17, 0.14);
}

/* ==========================================================================
   Sections Common
   ========================================================================== */
.section-container {
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
    padding: 0 5%;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    color: var(--text-dark);
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.title-underline {
    width: 80px;
    height: 2px;
    background-color: var(--accent-gold);
    margin: 0 auto 50px auto;
    position: relative;
}

.title-underline::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: var(--accent-orange);
    top: -3px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
}

/* ==========================================================================
   Life Overview Section
   ========================================================================== */
.overview-section {
    padding: 85px 0;
    background-color: var(--bg-cream-dark);
    position: relative;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.overview-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 30px 18px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.overview-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-orange);
}

/* Icons are clean and placed directly, no circular backgrounds to match the image */
.card-icon-container {
    color: var(--accent-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: var(--transition-smooth);
}

.overview-card:hover .card-icon-container {
    transform: scale(1.15);
}

.card-svg-icon {
    width: 38px;
    height: 38px;
}

.card-title {
    font-size: 0.9rem;
    color: var(--text-dark);
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    font-weight: 700;
}

.card-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.55;
}

/* ==========================================================================
   Timeline Journey Section
   ========================================================================== */
.journey-section {
    padding: 85px 0;
    background-color: var(--bg-cream);
}

.timeline-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    padding-top: 20px;
}

.timeline-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 10px;
    z-index: 2;
}

.step-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--card-bg);
    border: 1.5px solid var(--accent-gold);
    color: var(--accent-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.timeline-step:hover .step-icon-wrapper {
    background-color: var(--accent-gold);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(197, 155, 39, 0.35);
}

.step-svg-icon {
    width: 32px;
    height: 32px;
}

.step-name {
    font-size: 0.85rem;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.step-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.timeline-arrow {
    display: flex;
    align-items: center;
    height: 70px; /* Match icon wrapper height */
    color: var(--accent-gold);
    opacity: 0.65;
    animation: slideRight 2.5s infinite ease-in-out;
}

/* ==========================================================================
   Three Column Details Section
   ========================================================================== */
.details-section {
    padding: 85px 0;
    background-color: var(--bg-cream-dark);
}

.grid-3-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.detail-column {
    display: flex;
    flex-direction: column;
}

.column-header {
    font-size: 1.25rem;
    color: var(--text-dark);
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    text-align: center;
    border-bottom: 1px dashed var(--border-color);
    padding-bottom: 12px;
}

.column-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 35px 30px;
    box-shadow: var(--shadow-sm);
    flex-grow: 1;
    display: flex;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.column-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--accent-gold);
}

/* Column 1: Meaning of Name (Horizontal Flex layout to match the image) */
.name-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 25px;
}

.trishul-graphic {
    flex-shrink: 0;
    color: var(--accent-gold);
}

.name-content {
    position: relative;
    display: flex;
    flex-direction: column;
}

.quote-symbol {
    font-family: var(--font-serif);
    font-size: 4rem;
    color: rgba(197, 155, 39, 0.15);
    line-height: 0.1;
    position: absolute;
    top: -10px;
    left: -5px;
}

.name-highlight {
    font-family: var(--font-serif);
    font-size: 1.45rem;
    font-style: italic;
    color: var(--accent-orange);
    margin-bottom: 10px;
    padding-left: 10px;
}

.name-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Column 2: Teachings */
.teachings-card {
    display: flex;
    flex-direction: column;
    padding-bottom: 90px; /* Make space for Buddha silhouette */
}

.teachings-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 2;
}

.teachings-list li {
    position: relative;
    padding-left: 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.teachings-list li::before {
    content: '•';
    color: var(--accent-orange);
    font-size: 1.6rem;
    position: absolute;
    left: 0;
    top: -7px;
}

.yogi-silhouette {
    position: absolute;
    bottom: -15px;
    right: -15px;
    opacity: 0.75;
    pointer-events: none;
}

/* Column 3: Vision */
.vision-card {
    display: flex;
    flex-direction: column;
    padding-bottom: 100px; /* Space for globe graphic */
}

.vision-paragraphs {
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 2;
}

.vision-p1, .vision-p2 {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.globe-graphic {
    position: absolute;
    bottom: -20px;
    right: -20px;
    opacity: 0.65;
    pointer-events: none;
}

/* ==========================================================================
   Mission Banner Section (Grid separating text on left and silhouette on right)
   ========================================================================== */
.mission-banner-section {
    position: relative;
    padding: 100px 8%;
    background-image: url('meditation_sunset.png');
    background-size: cover;
    background-position: right center; /* Ensure the yogi silhouette is on the right */
    background-attachment: fixed;
    color: var(--white);
    overflow: hidden;
}

.banner-background-overlay {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(61, 23, 3, 0.96) 0%, rgba(61, 23, 3, 0.85) 45%, rgba(61, 23, 3, 0.3) 75%, rgba(61, 23, 3, 0.05) 100%);
    z-index: 1;
}

.banner-container {
    position: relative;
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 40px;
    z-index: 2;
}

.banner-content-wrapper {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.banner-title {
    font-size: 2.2rem;
    color: var(--accent-gold);
    letter-spacing: 3px;
    margin-bottom: 10px;
    font-weight: 700;
}

.banner-title-separator {
    margin-bottom: 25px;
}

.banner-desc {
    font-size: 1.15rem;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 35px;
    color: rgba(252, 249, 242, 0.9);
}

.banner-quote {
    font-family: var(--font-serif);
    font-size: 1.85rem;
    font-style: italic;
    line-height: 1.55;
    color: var(--white);
    position: relative;
    padding: 15px 40px;
}

.quote-mark-large {
    color: var(--accent-gold);
    font-size: 3.5rem;
    position: absolute;
    opacity: 0.55;
    line-height: 0;
}

.quote-mark-large:first-child {
    top: 15px;
    left: 0;
}

.quote-mark-large:last-child {
    bottom: -15px;
    right: 0;
}

.banner-silhouette-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* ==========================================================================
   Footer Area (Horizontal single line structure)
   ========================================================================== */
.main-footer {
    background-color: var(--text-dark);
    color: var(--bg-cream);
    padding: 25px 5%;
    border-top: 3px solid var(--accent-gold);
}

.footer-container {
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(252, 249, 242, 0.85);
}

.footer-icon {
    color: var(--accent-gold);
    font-size: 1.1rem;
}

.footer-item a:hover {
    color: var(--accent-gold);
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 15px;
}

.follow-text {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent-gold);
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon-link {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: rgba(252, 249, 242, 0.1);
    color: var(--bg-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.social-icon-link:hover {
    background-color: var(--accent-gold);
    color: var(--text-dark);
    transform: translateY(-3px) rotate(360deg);
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.04);
        opacity: 0.85;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes slideRight {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(5px);
    }
}

/* Scroll Animation classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */

/* Large Screens & Laptops */
@media (max-width: 1200px) {
    .overview-grid {
        grid-template-columns: repeat(3, 1fr);
        justify-content: center;
    }
    .overview-card:nth-child(4), .overview-card:nth-child(5) {
        grid-column: span 1.5;
    }
}

/* Tablets and iPads */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .hero-content {
        align-items: center;
        text-align: center;
    }
    .hero-quote {
        padding-left: 0;
        border-left: none;
        border-top: 2px solid var(--accent-orange);
        border-bottom: 2px solid var(--accent-orange);
        padding: 15px 0;
    }
    .divider-container {
        justify-content: center;
    }
    .timeline-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    .timeline-arrow {
        transform: rotate(90deg);
        height: 30px;
        animation: none;
    }
    .grid-3-cols {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .name-card {
        flex-direction: column;
        text-align: center;
    }
    .quote-symbol {
        left: 50%;
        transform: translateX(-50%);
    }
    .name-highlight {
        padding-left: 0;
    }
    .overview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .overview-card:nth-child(5) {
        grid-column: span 2;
    }
    .banner-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .banner-content-wrapper {
        text-align: center;
    }
    .quote-mark-large:first-child {
        left: -10px;
    }
    .quote-mark-large:last-child {
        right: -10px;
    }
}

/* Small Screens & Mobile Phones */
@media (max-width: 768px) {
    body {
        padding-bottom: 76px;
    }
    .main-header {
        padding: 9px 4%;
        gap: 10px;
    }
    .logo-container {
        min-width: 0;
        gap: 10px;
        flex: 1;
    }
    .logo-icon {
        flex: 0 0 44px;
        width: 44px;
        height: 44px;
    }
    .logo-icon svg {
        width: 44px;
        height: 44px;
        display: block;
    }
    .logo-text {
        min-width: 0;
    }
    .logo-title {
        font-size: 0.68rem;
        letter-spacing: 2px;
    }
    .logo-main {
        font-size: clamp(1rem, 4.8vw, 1.18rem);
        line-height: 1.05;
        overflow-wrap: anywhere;
    }
    .logo-subtitle {
        font-size: 0.62rem;
        line-height: 1.25;
        overflow-wrap: anywhere;
    }
    .header-action {
        flex-shrink: 0;
    }
    .nav-bar {
        display: none;
    }
    .header-action .btn-primary {
        display: none;
    }
    .mobile-menu-toggle {
        width: 38px;
        height: 38px;
        border: 1px solid var(--border-color);
        border-radius: 6px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        background-color: var(--card-bg);
    }
    .mobile-nav {
        position: fixed;
        top: var(--mobile-header-height, 82px);
        left: 0;
        right: 0;
        z-index: 999;
        max-height: calc(100dvh - var(--mobile-header-height, 82px));
        overflow-y: auto;
        padding: 14px 5% 18px 5%;
    }
    .mobile-nav ul {
        gap: 8px;
    }
    .mobile-nav-link {
        padding: 10px 0;
    }
    .hero-title {
        font-size: clamp(2rem, 10vw, 2.35rem);
    }
    .hero-topheading {
        font-size: 0.9rem;
        letter-spacing: 4px;
    }
    .hero-subtitle-journey {
        font-size: 1.12rem;
        margin-bottom: 22px;
    }
    .divider-text {
        font-size: 1.05rem;
    }
    .hero-quote {
        font-size: 1.08rem;
        margin-bottom: 26px;
        padding: 12px 0;
    }
    .hero-image {
        max-width: 100%;
    }
    .section-title {
        font-size: 1.8rem;
        line-height: 1.25;
    }
    .overview-grid {
        grid-template-columns: 1fr !important;
        max-width: 100% !important;
        gap: 18px !important;
        padding: 0 !important;
    }
    .overview-card,
    .overview-card:nth-child(4),
    .overview-card:nth-child(5) {
        grid-column: auto !important;
        width: 100% !important;
        min-height: 0 !important;
        padding: 24px 18px;
    }
    .grid-3-cols {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }
    .column-card {
        min-height: 0 !important;
        padding: 26px 20px !important;
    }
    .name-card {
        gap: 16px;
    }
    .quote-symbol {
        position: static !important;
        transform: none !important;
        width: auto !important;
        max-width: 100% !important;
        text-align: center;
    }
    .gallery-grid,
    .media-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .gallery-img-wrapper,
    .media-thumbnail-wrapper {
        height: 210px;
    }
    .contact-form-wrapper {
        padding: 26px 18px;
    }
    .info-box {
        padding: 20px 16px;
        gap: 14px;
    }
    .subpage-banner {
        padding: 42px 5%;
        margin-bottom: 30px;
    }
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .footer-socials {
        flex-direction: column;
    }
    .hero-banner-desktop {
        display: block;
    }
    .hero-mobile-content {
        display: none;
    }
    .hero-section {
        padding: 0;
        background: var(--bg-cream);
    }
    .hero-watermark {
        width: 260px;
        bottom: -18px;
        left: -35px;
    }
    .hero-watermark svg {
        width: 260px;
        height: 260px;
    }
}

.mobile-nav .mobile-btn {
    display: inline-flex;
    margin-top: 15px;
}

/* ==========================================================================
   Subpages Specific Styles
   ========================================================================== */
.subpage-banner {
    position: relative;
    padding: 60px 5%;
    background: linear-gradient(135deg, var(--bg-cream-dark) 0%, var(--bg-cream) 100%);
    text-align: center;
    border-bottom: 1px solid var(--border-color-light);
    margin-bottom: 45px;
}

.subpage-banner .section-title {
    margin-bottom: 10px;
    display: inline-block;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto 60px auto;
}

.gallery-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color-light);
    background-color: var(--card-bg);
    transition: var(--transition-smooth);
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.gallery-img-wrapper {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-card:hover .gallery-img {
    transform: scale(1.05);
}

.gallery-info {
    padding: 15px;
}

.gallery-title {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-orange);
    margin-bottom: 5px;
}

.gallery-desc {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Media Page */
.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 60px auto;
}

.media-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color-light);
    background-color: var(--card-bg);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.media-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.media-thumbnail-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    background-color: #000;
    overflow: hidden;
}

.media-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(194, 89, 24, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    transition: var(--transition-smooth);
    z-index: 2;
    border: none;
    cursor: pointer;
}

.media-card:hover .media-play-btn {
    background-color: var(--accent-orange-hover);
    transform: translate(-50%, -50%) scale(1.1);
}

.media-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.media-type {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-gold);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.media-title {
    font-family: var(--font-sans);
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.media-date {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: auto;
}

/* Contact Page Form */
.contact-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto 60px auto;
}

.contact-form-wrapper {
    background-color: var(--card-bg);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid var(--border-color-light);
    box-shadow: var(--shadow-sm);
}

.form-title {
    font-family: var(--font-sans);
    font-size: 1.5rem;
    color: var(--accent-orange);
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    border: 1px solid var(--border-color);
    background-color: var(--bg-cream);
    border-radius: 4px;
    color: var(--text-dark);
    transition: var(--transition-smooth);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 3px rgba(194, 89, 24, 0.1);
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-box {
    background-color: var(--card-bg);
    padding: 25px;
    border-radius: 8px;
    border: 1px solid var(--border-color-light);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.info-icon {
    font-size: 1.5rem;
    color: var(--accent-orange);
    margin-top: 3px;
}

.info-title {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.info-text {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-muted);
}

.map-placeholder {
    width: 100%;
    height: 250px;
    border-radius: 8px;
    border: 1px solid var(--border-color-light);
    background-color: var(--bg-cream-dark);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ==========================================================================
   Home Page Teachings Cards & Mission Banner Styles Override
   ========================================================================== */

#teachings .column-card {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 35px 30px;
    min-height: 460px;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

#teachings .column-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--accent-orange);
    transform: translateY(-5px);
}

#teachings .card-header {
    text-align: center;
    width: 100%;
    margin-bottom: 25px;
    z-index: 2;
}

#teachings .card-header-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--text-dark);
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    font-weight: 700;
}

#teachings .card-title-separator {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 8px;
}

#teachings .card-body-split {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 22px;
    z-index: 2;
    width: 100%;
}

#teachings .trishul-graphic {
    flex-shrink: 0;
    color: var(--accent-gold);
}

#teachings .name-content {
    display: flex;
    flex-direction: column;
}

#teachings .name-highlight {
    font-family: var(--font-serif);
    font-size: 1.45rem;
    font-style: italic;
    color: var(--accent-orange);
    margin-bottom: 12px;
    font-weight: 700;
    display: block;
}

#teachings .name-desc {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

#teachings .card-bg-mountains {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    pointer-events: none;
    z-index: 1;
}

#teachings .teachings-card {
    padding-bottom: 90px;
}

#teachings .teachings-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 2;
    text-align: left;
}

#teachings .teachings-list li {
    position: relative;
    padding-left: 20px;
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.5;
}

#teachings .teachings-list li::before {
    content: '•';
    color: var(--accent-orange);
    font-size: 1.6rem;
    position: absolute;
    left: 0;
    top: -7px;
}

#teachings .yogi-silhouette {
    position: absolute;
    bottom: -10px;
    right: -10px;
    opacity: 0.75;
    pointer-events: none;
    z-index: 1;
}

#teachings .vision-card {
    padding-bottom: 100px;
}

#teachings .vision-paragraphs {
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 2;
    text-align: left;
}

#teachings .vision-p1 {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

#teachings .vision-p2 {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

#teachings .globe-graphic {
    position: absolute;
    bottom: -15px;
    right: -15px;
    opacity: 0.75;
    pointer-events: none;
    z-index: 1;
}

/* Responsive Overrides */
@media (max-width: 992px) {
    #teachings .card-body-split {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    #teachings .name-desc, 
    #teachings .vision-paragraphs {
        text-align: center;
    }
}

/* Centered Banner layout */
.banner-container-centered {
    position: relative;
    max-width: 950px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 2;
}

@media (min-width: 992px) {
    .banner-container-centered {
        max-width: 65%;
        margin-left: 0; /* Float to left side to make room for background silhouette */
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 991px) {
    .banner-background-overlay {
        background: rgba(61, 23, 3, 0.88) !important; /* Force darker solid overlay on smaller screens */
    }
    .mission-banner-section {
        background-position: center !important;
        background-attachment: scroll !important;
        padding: 80px 5% !important;
    }
}

.banner-middle-separator {
    margin: 15px 0 30px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-quote-centered {
    font-family: var(--font-serif);
    font-size: 1.85rem;
    font-style: italic;
    line-height: 1.55;
    color: var(--white);
    position: relative;
    padding: 0 45px;
    margin: 0;
}

.quote-symbol-gold {
    color: var(--accent-gold);
    font-size: 3.5rem;
    position: absolute;
    opacity: 0.65;
    line-height: 0;
}

.quote-symbol-gold:first-child {
    top: 15px;
    left: 0;
}

.quote-symbol-gold:last-child {
    bottom: -15px;
    right: 0;
}

/* ==========================================================================
   Google Translate Floating Widget Styling
   ========================================================================== */
#google_translate_element {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 99999;
    background-color: var(--card-bg);
    border: 1.5px solid var(--accent-gold);
    border-radius: 30px;
    padding: 8px 18px;
    box-shadow: 0 4px 15px rgba(61, 37, 17, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
}

#google_translate_element:hover {
    transform: translateY(-3px);
    border-color: var(--accent-orange);
    box-shadow: 0 8px 25px rgba(194, 89, 24, 0.25);
}

/* Add Language Icon inside widget */
#google_translate_element::before {
    content: '\f1ab'; /* FontAwesome translation icon code */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--accent-orange);
    font-size: 1.1rem;
    margin-right: 6px;
    display: inline-block;
}

/* Add Custom Label Text */
#google_translate_element::after {
    content: 'Translate';
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Hide Default Google powered-by text & branding, make container cover button */
.goog-te-gadget {
    font-family: var(--font-sans) !important;
    font-size: 0 !important;
    color: transparent !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.goog-logo-link,
.goog-te-gadget span,
.goog-te-gadget img {
    display: none !important;
}

/* Make Google's select box cover the entire button transparently */
.goog-te-gadget .goog-te-combo {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    opacity: 0 !important; /* Completely transparent */
    cursor: pointer !important;
    z-index: 10 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Hide translation banner and top margins after selection */
body {
    top: 0 !important;
}
body > .skiptranslate {
    display: none !important;
}
.goog-te-banner-frame {
    display: none !important;
}
iframe.goog-te-banner-frame {
    display: none !important;
}

/* ==========================================================================
   Floating Music Control Button Styling
   ========================================================================== */
.floating-music-btn {
    position: fixed;
    bottom: 25px;
    left: 25px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--card-bg);
    border: 1.5px solid var(--accent-gold);
    color: var(--accent-orange);
    box-shadow: 0 4px 15px rgba(61, 37, 17, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    cursor: pointer;
    z-index: 99999;
    transition: all 0.3s ease;
}

.floating-music-btn:hover {
    transform: translateY(-3px) scale(1.05);
    border-color: var(--accent-orange);
    box-shadow: 0 8px 25px rgba(194, 89, 24, 0.25);
}

.floating-music-btn.playing {
    background-color: var(--accent-orange);
    color: var(--white);
    border-color: var(--accent-orange);
    animation: musicPulse 2s infinite ease-in-out;
}

@media (max-width: 768px) {
    #google_translate_element {
        right: 14px;
        bottom: 14px;
        width: 46px;
        height: 46px;
        padding: 0;
        border-radius: 50%;
    }

    #google_translate_element::before {
        margin-right: 0;
        font-size: 1rem;
    }

    #google_translate_element::after {
        content: '';
    }

    .floating-music-btn {
        left: 14px;
        bottom: 14px;
        width: 46px;
        height: 46px;
    }
}

@keyframes musicPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(194, 89, 24, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(194, 89, 24, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(194, 89, 24, 0);
    }
}
