/* ========================================
   Uttarakhand Landing Page - Real Mountain Photos
   ======================================== */

/* CSS Variables */
:root {
    /* Accent Colors */
    --accent-gold: #c9a962;
    --accent-saffron: #e8a94b;
    --accent-terracotta: #c97b5a;
    --accent-sage: #7d9a8c;
    --accent-moss: #5c7a64;
    
    /* Text Colors */
    --text-dark: #2d3436;
    --text-medium: #636e72;
    --text-light: #f5f6fa
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Montserrat', -apple-system, sans-serif;
    line-height: 1.7;
    overflow-x: hidden;
    color: var(--text-dark);
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 500;
    line-height: 1.2;
}

h1 { font-size: clamp(3rem, 8vw, 6rem); letter-spacing: 0.02em; }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); letter-spacing: 0.01em; }
h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); }
p { font-weight: 300; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* ========================================
   BACKGROUND IMAGES FROM UNSPLASH
   ======================================== */
.bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

/* Hero - Majestic Himalayan Sunrise */
.hero-bg {
    background-image: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1920&q=80');
    animation: slowZoom 30s infinite alternate;
}

@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

/* Kumbh Mela - Sunset Mountains */
.kumbh-bg {
    background-image: url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?w=1920&q=80');
}

/* About - Alpine Mountains */
.about-bg {
    background-image: url('https://images.unsplash.com/photo-1454496522488-7a8e488e8606?w=1920&q=80');
}

/* Facts - Mountain Peaks */
.facts-bg {
    background-image: url('https://images.unsplash.com/photo-1519681393797-a1e27c53c0f9?w=1920&q=80');
}

/* Quote - Dramatic Mountains */
.quote-bg {
    background-image: url('https://images.unsplash.com/photo-1486870591958-9b9d0d1dda99?w=1920&q=80');
}

/* Footer - People of Uttarakhand */
.footer-bg {
    background-image: url('https://images.unsplash.com/photo-1544735716-392fe2489ffa?w=1920&q=80');
}

/* ========================================
   OVERLAYS
   ======================================== */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(139, 69, 19, 0.4) 0%, 
        rgba(160, 82, 45, 0.3) 50%, 
        rgba(139, 90, 43, 0.5) 100%
    );
    z-index: 1;
}

.section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.dark-overlay {
    background: rgba(0, 0, 0, 0.6);
}

.content-wrapper {
    position: relative;
    z-index: 10;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 40px;
    max-width: 900px;
}

.hero-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
    margin-bottom: 20px;
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
}

.hero-title {
    color: #fff;
    text-shadow: 0 4px 30px rgba(0,0,0,0.6);
    margin-bottom: 15px;
    animation: fadeInUp 1s ease 0.2s forwards;
    opacity: 0;
}

.hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 300;
    font-style: italic;
    color: #ffd700;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.4s forwards;
    opacity: 0;
}

.hero-divider {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
    margin: 0 auto 30px;
    animation: fadeInUp 1s ease 0.6s forwards;
    opacity: 0;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.95);
    max-width: 600px;
    margin: 0 auto 50px;
    line-height: 1.8;
    text-shadow: 0 2px 15px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease 0.8s forwards;
    opacity: 0;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(135deg, #c97b5a 0%, #e8a94b 100%);
    border: none;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(201, 123, 90, 0.4);
    animation: fadeInUp 1s ease 1s forwards;
    opacity: 0;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(201, 123, 90, 0.5);
    background: linear-gradient(135deg, #e8a94b 0%, #c97b5a 100%);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    animation: fadeIn 1s ease 1.5s forwards;
    opacity: 0;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.8);
    border-radius: 13px;
    position: relative;
    background: rgba(255,255,255,0.1);
}

.wheel {
    width: 4px;
    height: 8px;
    background: #fff;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 20px; }
}

.scroll-indicator span {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    text-shadow: 0 1px 5px rgba(0,0,0,0.5);
}

/* ========================================
   SECTIONS COMMON
   ======================================== */
.kumbh-section,
.about-section,
.facts-section,
.quote-section,
.footer {
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.kumbh-section,
.about-section,
.facts-section {
    padding: 120px 0;
}

/* ========================================
   KUMBH MELA SECTION
   ======================================== */
.kumbh-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 30px;
}

.kumbh-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 80px 60px;
    text-align: center;
    position: relative;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(201, 169, 98, 0.2);
}

.kumbh-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, 
        var(--accent-gold) 0%, 
        var(--accent-saffron) 25%, 
        var(--accent-terracotta) 50%, 
        var(--accent-saffron) 75%, 
        var(--accent-gold) 100%
    );
}

.kumbh-decoration {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.decor-lamp {
    animation: lampGlow 2s ease-in-out infinite;
}

.decor-om {
    font-size: 2rem;
    animation: omPulse 3s ease-in-out infinite;
}

@keyframes lampGlow {
    0%, 100% { filter: brightness(1); transform: scale(1); }
    50% { filter: brightness(1.2); transform: scale(1.1); }
}

@keyframes omPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.85; }
}

.kumbh-header {
    margin-bottom: 50px;
}

.kumbh-icon-wrapper {
    margin-bottom: 25px;
}

.kumbh-icon {
    font-size: 4rem;
    display: inline-block;
    animation: iconBounce 3s infinite ease-in-out;
}

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

.kumbh-title {
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 2.8rem;
}

.kumbh-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--accent-terracotta);
    font-style: italic;
}

.kumbh-content {
    max-width: 700px;
    margin: 0 auto;
}

.kumbh-description {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.9;
    margin-bottom: 50px;
}

.kumbh-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.feature-box {
    background: rgba(255, 255, 255, 0.8);
    padding: 30px 25px;
    border-radius: 6px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(201, 169, 98, 0.15);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-gold);
    background: #fff;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.feature-box h4 {
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.feature-box p {
    font-size: 0.85rem;
    color: var(--text-medium);
}

.kumbh-quote {
    background: linear-gradient(135deg, #1a3a2e 0%, #2d5a4a 100%);
    padding: 35px 45px;
    border-radius: 6px;
    margin-bottom: 40px;
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 10px;
    left: 25px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    color: var(--accent-gold);
    opacity: 0.3;
    line-height: 1;
}

.kumbh-quote p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-style: italic;
    color: #fff;
    line-height: 1.7;
}

.kumbh-footer {
    padding-top: 30px;
    border-top: 1px solid #e8e2d8;
}

.kumbh-sanskrit {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: var(--accent-terracotta);
    font-style: italic;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-number {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem;
    color: var(--accent-gold);
    letter-spacing: 0.3em;
    margin-bottom: 20px;
}

.section-title {
    color: #fff;
    margin-bottom: 15px;
    text-shadow: 0 2px 30px rgba(0,0,0,0.6);
}

.section-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    font-style: italic;
    text-shadow: 0 2px 15px rgba(0,0,0,0.5);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text {
    max-width: 500px;
}

.about-lead {
    font-size: 1.2rem;
    color: #fff;
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 400;
    text-shadow: 0 2px 15px rgba(0,0,0,0.5);
}

.about-text p:last-of-type {
    color: rgba(255,255,255,0.85);
    line-height: 1.9;
    text-shadow: 0 1px 10px rgba(0,0,0,0.4);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.about-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    padding: 35px 30px;
    border-radius: 6px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(201, 169, 98, 0.15);
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    border-color: var(--accent-gold);
}

.about-card-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    display: block;
}

.about-card h4 {
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.about-card p {
    font-size: 0.85rem;
    color: var(--text-medium);
}

/* ========================================
   FACTS SECTION
   ======================================== */
.facts-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

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

.fact-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    padding: 45px 35px;
    border-radius: 8px;
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid rgba(201, 169, 98, 0.1);
    overflow: hidden;
}

.fact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--accent-gold), var(--accent-saffron));
    transition: height 0.4s ease;
}

.fact-card:hover::before {
    height: 100%;
}

.fact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.fact-peak {
    font-size: 2rem;
    margin-bottom: 15px;
    display: block;
}

.fact-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: #e8e2d8;
    position: absolute;
    top: 25px;
    right: 25px;
    line-height: 1;
    transition: color 0.3s ease;
}

.fact-card:hover .fact-number {
    color: var(--accent-gold);
}

.fact-card h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.fact-card:hover h3 {
    color: #1a3a2e;
}

.fact-card p {
    font-size: 0.9rem;
    color: var(--text-medium);
    line-height: 1.7;
}

/* ========================================
   QUOTE SECTION
   ======================================== */
.quote-section {
    padding: 120px 30px;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.quote-mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 6rem;
    color: var(--accent-gold);
    line-height: 1;
    opacity: 0.6;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.quote-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-style: italic;
    color: #fff;
    margin-bottom: 25px;
    line-height: 1.6;
    text-shadow: 0 2px 30px rgba(0,0,0,0.7);
}

.quote-author {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-gold);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    padding: 80px 30px 40px;
    min-height: auto;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 10px;
    font-family: 'Cormorant Garamond', serif;
    text-shadow: 0 2px 20px rgba(0,0,0,0.6);
}

.footer-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--accent-sage);
    font-style: italic;
}

.footer-links h4,
.footer-contact h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 25px;
    text-shadow: 0 2px 15px rgba(0,0,0,0.5);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.footer-contact p {
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    margin-bottom: 8px;
    text-shadow: 0 1px 10px rgba(0,0,0,0.4);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

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

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
    .facts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-main {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        max-width: none;
        text-align: center;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .kumbh-card {
        padding: 50px 30px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-text {
        max-width: none;
    }
    
    .facts-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .kumbh-features {
        grid-template-columns: 1fr;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-divider {
        width: 60px;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 1.8rem; }
    .kumbh-title { font-size: 2rem; }
    
    .fact-card {
        padding: 35px 25px;
    }
    
    .about-card {
        padding: 25px 20px;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

