/* ==========================================
   GLOBAL STYLES & VARIABLES
   ========================================== */

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

:root {
    /* Refined Color Palette from the Photo */
    --primary-blue: #1a4d6f;
    --sky-blue: #4a90b8;
    --light-blue: #7eb5d6;
    --mountain-gray: #6b7580;
    --snow-white: #fafbfc;
    --cream: #f7f5f2;
    --warm-brown: #9b7653;
    --rust: #b5704d;
    --deep-rust: #8b5a3c;
    --spiritual-gold: #c9a961;
    --light-gold: #e8d7a8;
    --text-dark: #2a2a2a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    line-height: 1.2;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ==========================================
   NAVIGATION
   ========================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: 'Philosopher', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-blue), var(--sky-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
    position: relative;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-medium);
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-blue), var(--spiritual-gold));
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu a:hover {
    color: var(--primary-blue);
}

.nav-menu a:hover::before,
.nav-menu a.active::before {
    width: 100%;
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(180deg, #1a4d6f 0%, #2a6189 40%, #4a90b8 70%, #7eb5d6 100%);
}

/* Himalayan Mountains Background */
.hero-mountains {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background:
        linear-gradient(to top, rgba(26, 77, 111, 0.3), transparent),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 600'%3E%3Cpath fill='%23ffffff' fill-opacity='0.05' d='M0,350 L120,320 L240,280 L360,300 L480,250 L600,280 L720,240 L840,270 L960,230 L1080,260 L1200,220 L1320,250 L1440,210 L1440,600 L0,600 Z'/%3E%3Cpath fill='%23ffffff' fill-opacity='0.08' d='M0,400 L100,380 L200,340 L300,360 L400,320 L500,350 L600,310 L700,340 L800,300 L900,330 L1000,290 L1100,320 L1200,280 L1300,310 L1440,270 L1440,600 L0,600 Z'/%3E%3Cpath fill='%23ffffff' fill-opacity='0.12' d='M0,450 L80,430 L160,400 L240,420 L320,390 L400,410 L480,380 L560,400 L640,370 L720,390 L800,360 L880,380 L960,350 L1040,370 L1120,340 L1200,360 L1280,330 L1360,350 L1440,320 L1440,600 L0,600 Z'/%3E%3C/svg%3E");
    background-size: cover;
    background-position: bottom;
    opacity: 0.4;
    animation: mountainFloat 20s ease-in-out infinite;
}

@keyframes mountainFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, transparent 0%, rgba(26, 77, 111, 0.2) 100%);
    pointer-events: none;
}

/* Floating Particles */
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.particles::before,
.particles::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: particleFloat 15s infinite ease-in-out;
}

.particles::before {
    top: 20%;
    left: 30%;
    animation-delay: 0s;
}

.particles::after {
    top: 60%;
    left: 70%;
    animation-delay: 7s;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translate(50px, -100px);
        opacity: 0;
    }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem;
    animation: heroFadeIn 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-image-container {
    position: relative;
    display: inline-block;
    margin-bottom: 3rem;
    animation: imageReveal 1.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s backwards;
}

@keyframes imageReveal {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(30px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.4), transparent 70%);
    border-radius: 50%;
    filter: blur(30px);
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.9;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.hero-image {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid rgba(255, 255, 255, 0.95);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 0 15px rgba(255, 255, 255, 0.1),
        inset 0 0 20px rgba(0, 0, 0, 0.1);
    position: relative;
    animation: imageFloat 6s ease-in-out infinite;
}

@keyframes imageFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.02);
    }
}

.hero-title {
    font-size: 6rem;
    color: var(--snow-white);
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: 6px;
    text-shadow:
        0 2px 10px rgba(0, 0, 0, 0.3),
        0 5px 25px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.title-line {
    display: inline-block;
    animation: titleReveal 1s cubic-bezier(0.4, 0, 0.2, 1) backwards;
}

.title-line:nth-child(1) {
    animation-delay: 0.6s;
}

.title-line:nth-child(2) {
    animation-delay: 0.8s;
}

@keyframes titleReveal {
    from {
        opacity: 0;
        transform: translateY(30px);
        filter: blur(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.title-divider {
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--spiritual-gold), transparent);
    margin: 2rem auto;
    animation: dividerGrow 1s ease-out 1s backwards;
}

@keyframes dividerGrow {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 120px;
        opacity: 1;
    }
}

.hero-subtitle {
    font-size: 2rem;
    color: var(--light-gold);
    margin-bottom: 3rem;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 2px;
    animation: subtitleFade 1s ease-out 1.2s backwards;
}

@keyframes subtitleFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-quote {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 4rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: quoteFade 1s ease-out 1.4s backwards;
}

@keyframes quoteFade {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.quote-mark,
.quote-mark-end {
    position: absolute;
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.2);
    line-height: 1;
}

.quote-mark {
    top: 10px;
    left: 20px;
}

.quote-mark-end {
    bottom: -10px;
    right: 20px;
}

.hero-quote p {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--snow-white);
    font-style: italic;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: scrollBounce 2s infinite ease-in-out;
    cursor: pointer;
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-15px);
    }
    60% {
        transform: translateX(-50%) translateY(-8px);
    }
}

.scroll-indicator span {
    display: block;
    color: var(--snow-white);
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    opacity: 0.9;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-left: 3px solid var(--snow-white);
    border-bottom: 3px solid var(--snow-white);
    transform: rotate(-45deg);
    margin: 0 auto;
    opacity: 0.8;
}

/* ==========================================
   SECTION STYLES
   ========================================== */

section {
    padding: 120px 0;
    position: relative;
}

.section-title {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--sky-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    font-weight: 600;
    letter-spacing: 2px;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--spiritual-gold), transparent);
    margin: 2rem auto;
}

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 4rem;
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */

.about-section {
    background:
        linear-gradient(to bottom, var(--cream) 0%, var(--snow-white) 100%);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--spiritual-gold), transparent);
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-text {
    font-size: 1.2rem;
    line-height: 2.2;
    color: var(--text-medium);
}

.about-text p {
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.about-text p:nth-child(1) { animation-delay: 0.1s; }
.about-text p:nth-child(2) { animation-delay: 0.2s; }
.about-text p:nth-child(3) { animation-delay: 0.3s; }
.about-text p:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.intro-text {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--primary-blue);
    font-family: 'Playfair Display', serif;
    font-style: italic;
    padding: 2.5rem 3rem;
    background: linear-gradient(135deg, rgba(74, 144, 184, 0.08), rgba(201, 169, 97, 0.08));
    border-left: 5px solid var(--spiritual-gold);
    border-radius: 0 15px 15px 0;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.intro-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(201, 169, 97, 0.03));
    pointer-events: none;
}

/* ==========================================
   TEACHINGS SECTION
   ========================================== */

.teachings-section {
    background: var(--snow-white);
    position: relative;
}

.teachings-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.teaching-card {
    background: linear-gradient(135deg, #ffffff, #fafbfc);
    padding: 4rem 3rem;
    border-radius: 25px;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.06),
        0 0 0 1px rgba(74, 144, 184, 0.1);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.teaching-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-blue), var(--spiritual-gold));
    transform: scaleX(0);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.teaching-card:hover::before {
    transform: scaleX(1);
}

.teaching-card:hover {
    transform: translateY(-15px);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(74, 144, 184, 0.2);
}

.teaching-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    display: inline-block;
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.teaching-card:nth-child(2) .teaching-icon {
    animation-delay: 1s;
}

.teaching-card:nth-child(3) .teaching-icon {
    animation-delay: 2s;
}

.teaching-card h3 {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.teaching-card p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-medium);
}

/* ==========================================
   CAROUSEL STYLES
   ========================================== */

.carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0;
}

.videos-section .carousel-container {
    max-width: 100%;
    padding: 0 100px;
}

.poems-section .carousel-container {
    padding: 0;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--sky-blue));
    border: none;
    color: var(--snow-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(26, 77, 111, 0.3);
}

.carousel-btn:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 30px rgba(26, 77, 111, 0.5);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-btn-prev {
    left: 20px;
}

.carousel-btn-next {
    right: 20px;
}

/* Poems section - buttons at top */
.poems-section .carousel-btn {
    top: -60px;
    transform: translateY(0);
}

.poems-section .carousel-btn:hover {
    transform: translateY(0) scale(1.1);
}

.poems-section .carousel-btn:active {
    transform: translateY(0) scale(0.95);
}

.poems-section .carousel-btn:disabled:hover {
    transform: translateY(0) scale(1);
}

.poems-section .carousel-btn-prev {
    left: 10px;
}

.poems-section .carousel-btn-next {
    right: 10px;
}

/* Videos section - buttons at top for mobile */
.videos-section .carousel-btn {
    top: -60px;
    transform: translateY(0);
}

.videos-section .carousel-btn:hover {
    transform: translateY(0) scale(1.1);
}

.videos-section .carousel-btn:active {
    transform: translateY(0) scale(0.95);
}

.videos-section .carousel-btn:disabled:hover {
    transform: translateY(0) scale(1);
}

.videos-section .carousel-btn-prev {
    left: 10px;
}

.videos-section .carousel-btn-next {
    right: 10px;
}

.carousel-btn svg {
    width: 28px;
    height: 28px;
    stroke-width: 3;
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.carousel-btn:disabled:hover {
    transform: translateY(-50%) scale(1);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 2rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--mountain-gray);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.3;
}

.carousel-dot.active {
    background: linear-gradient(135deg, var(--primary-blue), var(--spiritual-gold));
    opacity: 1;
    transform: scale(1.3);
}

.carousel-dot:hover {
    opacity: 0.7;
}

/* ==========================================
   POEMS SECTION
   ========================================== */

.poems-section {
    background: linear-gradient(to bottom, var(--cream), #e8e4df);
    position: relative;
    padding: 80px 0 60px 0;
}

.poems-section .section-title {
    margin-bottom: 0.5rem;
}

.poems-section .section-title::after {
    margin: 1rem auto;
}

.poems-section .section-subtitle {
    margin-bottom: 2.5rem;
}

.poems-carousel {
    overflow: hidden;
    position: relative;
}

.poems-container {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 0;
}

.poem-card {
    background: var(--snow-white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 0 0 100%;
    min-width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.poem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.poem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 144, 184, 0.02), rgba(201, 169, 97, 0.02));
    pointer-events: none;
}

.poem-content {
    position: relative;
    z-index: 1;
}

.poem-date {
    font-size: 0.9rem;
    color: var(--warm-brown);
    margin-bottom: 1.5rem;
    font-style: italic;
    font-weight: 500;
}

.poem-verse {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    border-left: 3px solid transparent;
    transition: border-color 0.3s ease;
}

.poem-card:hover .poem-verse {
    border-left-color: var(--spiritual-gold);
}

.poem-verse:last-child {
    margin-bottom: 0;
}

.poem-verse p {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

/* ==========================================
   VIDEOS SECTION
   ========================================== */

.videos-section {
    background: var(--snow-white);
    padding: 120px 0;
}

.videos-carousel {
    overflow: hidden;
    position: relative;
}

.video-categories {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-card {
    background: var(--snow-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex: 0 0 100%;
    min-width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(74, 144, 184, 0.2);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-card h4 {
    padding: 1.5rem;
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-dark);
    background: linear-gradient(to bottom, var(--snow-white), var(--cream));
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
    background: linear-gradient(135deg, var(--primary-blue), var(--sky-blue));
    color: var(--snow-white);
    padding: 5rem 0 2rem;
    text-align: center;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.footer-content {
    max-width: 900px;
    margin: 0 auto;
}

.footer-quote {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-style: italic;
    margin-bottom: 3rem;
    line-height: 1.9;
    opacity: 0.95;
}

.footer-copyright {
    font-size: 1rem;
    opacity: 0.8;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    letter-spacing: 1px;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }

    .hero-title {
        font-size: 5rem;
    }

    .section-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .carousel-container {
        padding: 0 60px;
    }

    .poems-section .carousel-container {
        padding: 0;
    }

    .videos-section .carousel-container {
        padding: 0;
    }

    .carousel-btn {
        width: 45px;
        height: 45px;
    }

    .carousel-btn svg {
        width: 22px;
        height: 22px;
    }

    .poems-section .carousel-btn {
        top: -55px;
        width: 40px;
        height: 40px;
    }

    .poems-section .carousel-btn-prev {
        left: 5px;
    }

    .poems-section .carousel-btn-next {
        right: 5px;
    }

    .poems-section {
        padding: 60px 0 40px 0;
    }

    .nav-container {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem 2rem;
    }

    .nav-menu {
        gap: 2rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero {
        padding-top: 160px;
    }

    .hero-content {
        padding: 1rem;
    }

    .hero-title {
        font-size: 3.5rem;
        letter-spacing: 3px;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .hero-image {
        width: 240px;
        height: 240px;
    }

    .hero-quote {
        padding: 2rem 2.5rem;
    }

    .hero-quote p {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2.8rem;
    }

    .teachings-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .video-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .poem-card {
        padding: 2rem 1.5rem;
    }

    .poem-verse {
        margin-bottom: 1.2rem;
        padding-left: 1rem;
    }

    .poem-verse p {
        font-size: 1rem;
        line-height: 1.5;
    }

    section {
        padding: 80px 0;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 240px;
    }

    .hero-content {
        padding: 0.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-image {
        width: 200px;
        height: 200px;
    }

    .hero-image-container {
        margin-bottom: 2rem;
    }

    .hero-quote {
        padding: 1.5rem 2rem;
    }

    .hero-quote p {
        font-size: 1.05rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .about-text {
        font-size: 1.05rem;
    }

    .intro-text {
        font-size: 1.2rem;
        padding: 2rem;
    }

    .teaching-card {
        padding: 3rem 2rem;
    }

    .poems-section {
        padding: 50px 0 30px 0;
    }

    .poems-section .section-title {
        font-size: 2rem;
    }

    .poems-section .section-subtitle {
        margin-bottom: 2rem;
        font-size: 1.1rem;
    }

    .poems-section .carousel-btn {
        top: -50px;
        width: 36px;
        height: 36px;
    }

    .poems-section .carousel-btn svg {
        width: 18px;
        height: 18px;
    }

    .poems-section .carousel-btn-prev {
        left: 5px;
    }

    .poems-section .carousel-btn-next {
        right: 5px;
    }

    .videos-section .carousel-btn {
        top: -50px;
        width: 36px;
        height: 36px;
    }

    .videos-section .carousel-btn svg {
        width: 18px;
        height: 18px;
    }

    .videos-section .carousel-btn-prev {
        left: 5px;
    }

    .videos-section .carousel-btn-next {
        right: 5px;
    }

    .video-card {
        border-radius: 15px;
    }

    .video-card h4 {
        padding: 1rem;
        font-size: 1rem;
    }

    .poem-card {
        padding: 1.5rem 1rem;
    }

    .poem-verse {
        margin-bottom: 1rem;
        padding-left: 0.8rem;
    }

    .poem-verse p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 0.2rem;
    }

    .poem-date {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .container {
        padding: 0 20px;
    }

    .carousel-container {
        padding: 0 50px;
    }
}

/* ==========================================
   SCROLL ANIMATIONS
   ========================================== */

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Smooth Scrollbar Styling */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--cream);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-blue), var(--spiritual-gold));
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--sky-blue), var(--warm-brown));
}

/* Selection Styling */
::selection {
    background: var(--spiritual-gold);
    color: var(--snow-white);
}

::-moz-selection {
    background: var(--spiritual-gold);
    color: var(--snow-white);
}
