/* ===================================
   FullJatra.com - Odia Jatra Website
   Traditional Folk Theater of Odisha
   =================================== */

/* CSS Variables - Odia-Inspired Color Palette */
:root {
    /* Primary Colors - Traditional Odia */
    --vermillion: #E23D28;
    --vermillion-dark: #B82E1C;
    --vermillion-light: #FF5744;
    
    /* Gold & Saffron */
    --gold: #D4A853;
    --gold-bright: #FFD700;
    --saffron: #FF9933;
    --turmeric: #E8B923;
    
    /* Deep & Rich */
    --maroon: #6B1B1B;
    --deep-red: #8B0000;
    --burgundy: #4A0E0E;
    --black-coffee: #1A0A0A;
    
    /* Earthy Tones */
    --terracotta: #C75B39;
    --ochre: #CC7722;
    --cream: #FFF8E7;
    --ivory: #FFFEF0;
    
    /* Accent & Text */
    --text-primary: #1A0A0A;
    --text-secondary: #5A3A3A;
    --text-light: #FFF8E7;
    --text-muted: #8A6A6A;
    
    /* Gradients */
    --gradient-hero: linear-gradient(135deg, #1A0A0A 0%, #4A0E0E 50%, #6B1B1B 100%);
    --gradient-gold: linear-gradient(135deg, #D4A853 0%, #FFD700 50%, #E8B923 100%);
    --gradient-vermillion: linear-gradient(135deg, #E23D28 0%, #FF5744 100%);
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    
    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Cormorant Garamond', serif;
    --font-odia: 'Noto Sans Oriya', sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(26, 10, 10, 0.1);
    --shadow-md: 0 4px 12px rgba(26, 10, 10, 0.15);
    --shadow-lg: 0 8px 24px rgba(26, 10, 10, 0.2);
    --shadow-xl: 0 16px 48px rgba(26, 10, 10, 0.25);
    --shadow-gold: 0 4px 20px rgba(212, 168, 83, 0.3);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

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

body {
    font-family: var(--font-body);
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--cream);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
}

/* Selection */
::selection {
    background: var(--vermillion);
    color: var(--text-light);
}

/* Links */
a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-base);
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

/* ===================================
   Loading Screen
   =================================== */
.loading-screen {
    position: fixed;
    inset: 0;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 1.5s linear infinite;
}

.loader-ring:nth-child(2) {
    width: 80%;
    height: 80%;
    border-top-color: var(--vermillion);
    animation-duration: 1.2s;
    animation-direction: reverse;
}

.loader-ring:nth-child(3) {
    width: 60%;
    height: 60%;
    border-top-color: var(--saffron);
    animation-duration: 0.9s;
}

.loader-text {
    font-family: var(--font-odia);
    font-size: 1.25rem;
    color: var(--gold);
    animation: pulse 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-lg) 0;
    transition: var(--transition-base);
}

.navbar.scrolled {
    background: rgba(26, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: var(--space-md) 0;
    box-shadow: var(--shadow-lg);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-light);
}

.logo-icon {
    font-size: 2rem;
    animation: float 3s ease-in-out infinite;
}

.logo-text .highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: var(--space-xl);
    list-style: none;
}

.nav-link {
    font-family: var(--font-odia);
    font-size: 1rem;
    color: var(--text-light);
    opacity: 0.8;
    position: relative;
    padding: var(--space-sm) 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    opacity: 1;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--gold);
    transition: var(--transition-base);
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(212, 168, 83, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(226, 61, 40, 0.1) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L30 60M0 30L60 30M0 0L60 60M60 0L0 60' stroke='%23D4A853' stroke-width='0.5' opacity='0.1'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--cream), transparent);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: var(--space-4xl) var(--space-xl);
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-odia);
    font-size: 0.95rem;
    color: var(--gold);
    background: rgba(212, 168, 83, 0.15);
    border: 1px solid rgba(212, 168, 83, 0.3);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-xl);
    animation: fadeInDown 0.8s ease;
}

.hero-title {
    margin-bottom: var(--space-xl);
}

.title-line {
    display: block;
    animation: fadeInUp 0.8s ease backwards;
}

.title-line:first-child {
    font-family: var(--font-odia);
    font-size: clamp(3rem, 10vw, 7rem);
    color: var(--text-light);
    animation-delay: 0.2s;
}

.title-line.accent {
    font-family: var(--font-odia);
    font-size: clamp(3.5rem, 12vw, 8rem);
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation-delay: 0.4s;
    text-shadow: none;
}

.title-line.small {
    font-family: var(--font-display);
    font-size: clamp(1rem, 3vw, 1.5rem);
    font-weight: 400;
    font-style: italic;
    color: rgba(255, 248, 231, 0.7);
    margin-top: var(--space-md);
    animation-delay: 0.6s;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 248, 231, 0.8);
    max-width: 700px;
    margin: 0 auto var(--space-2xl);
    animation: fadeInUp 0.8s ease 0.8s backwards;
}

.hero-cta {
    display: flex;
    gap: var(--space-lg);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-3xl);
    animation: fadeInUp 0.8s ease 1s backwards;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition-base);
}

.btn-primary {
    background: var(--gradient-vermillion);
    color: var(--text-light);
    box-shadow: var(--shadow-md), 0 0 0 0 rgba(226, 61, 40, 0.5);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(226, 61, 40, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--gold);
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--black-coffee);
}

.btn-outline {
    background: transparent;
    color: var(--vermillion);
    border: 2px solid var(--vermillion);
}

.btn-outline:hover {
    background: var(--vermillion);
    color: var(--text-light);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-icon {
    font-size: 0.85em;
}

.btn-arrow {
    transition: transform var(--transition-base);
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: var(--space-3xl);
    animation: fadeInUp 0.8s ease 1.2s backwards;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
}

.stat-label {
    font-family: var(--font-odia);
    font-size: 1rem;
    color: rgba(255, 248, 231, 0.6);
}

/* Hero Decoration */
.hero-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.floating-element {
    position: absolute;
    font-size: 3rem;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.elem-1 { top: 15%; left: 10%; animation-delay: 0s; }
.elem-2 { top: 25%; right: 15%; animation-delay: 1.5s; }
.elem-3 { bottom: 30%; left: 15%; animation-delay: 3s; }
.elem-4 { bottom: 20%; right: 10%; animation-delay: 4.5s; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: rgba(255, 248, 231, 0.5);
    font-size: 0.85rem;
    animation: fadeInUp 1s ease 1.5s backwards;
}

.scroll-arrow {
    width: 20px;
    height: 30px;
    border: 2px solid rgba(212, 168, 83, 0.5);
    border-radius: 10px;
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    animation: scrollDown 1.5s ease-in-out infinite;
}

@keyframes scrollDown {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    100% { transform: translateX(-50%) translateY(12px); opacity: 0; }
}

/* ===================================
   Section Styles
   =================================== */
.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-tag {
    display: inline-block;
    font-family: var(--font-odia);
    font-size: 0.95rem;
    color: var(--vermillion);
    background: rgba(226, 61, 40, 0.1);
    padding: var(--space-xs) var(--space-lg);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.section-cta {
    text-align: center;
    margin-top: var(--space-3xl);
}

/* ===================================
   Jatras Section
   =================================== */
.jatras-section {
    padding: var(--space-4xl) 0;
    position: relative;
    background: var(--cream);
}

.section-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 400px;
    background: linear-gradient(180deg, var(--ivory) 0%, var(--cream) 100%);
}

/* Category Buttons */
.jatra-categories {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-bottom: var(--space-2xl);
}

.category-btn {
    font-family: var(--font-odia);
    font-size: 0.95rem;
    padding: var(--space-sm) var(--space-lg);
    border: 2px solid var(--text-muted);
    border-radius: var(--radius-full);
    background: transparent;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-base);
}

.category-btn:hover,
.category-btn.active {
    border-color: var(--vermillion);
    background: var(--vermillion);
    color: var(--text-light);
}

/* Jatra Grid */
.jatra-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--space-xl);
    position: relative;
    z-index: 1;
}

.jatra-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    cursor: pointer;
}

.jatra-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.jatra-thumbnail {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.thumbnail-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--maroon), var(--burgundy));
    display: flex;
    align-items: center;
    justify-content: center;
}

.thumbnail-icon {
    font-size: 4rem;
    opacity: 0.5;
}

.play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 10, 10, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-base);
}

.jatra-card:hover .play-overlay {
    opacity: 1;
}

.play-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--vermillion);
    border: none;
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 4px;
    transition: var(--transition-bounce);
}

.play-btn:hover {
    transform: scale(1.15);
    background: var(--vermillion-light);
}

.jatra-duration {
    position: absolute;
    bottom: var(--space-sm);
    right: var(--space-sm);
    background: rgba(26, 10, 10, 0.8);
    color: white;
    font-size: 0.8rem;
    padding: 2px 8px;
    border-radius: var(--radius-sm);
}

.jatra-badge {
    position: absolute;
    top: var(--space-sm);
    left: var(--space-sm);
    background: var(--gold);
    color: var(--black-coffee);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
}

.jatra-badge.new {
    background: var(--vermillion);
    color: white;
}

.jatra-info {
    padding: var(--space-lg);
}

.jatra-title {
    font-family: var(--font-odia);
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.jatra-troupe {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: var(--space-md);
}

.jatra-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ===================================
   Artists Section
   =================================== */
.artists-section {
    padding: var(--space-4xl) 0;
    background: linear-gradient(180deg, var(--cream) 0%, var(--ivory) 50%, var(--cream) 100%);
    overflow: hidden;
}

.artists-carousel {
    overflow: hidden;
    margin: 0 calc(-1 * var(--space-xl));
    padding: var(--space-lg) var(--space-xl);
}

.artists-track {
    display: flex;
    gap: var(--space-xl);
    animation: scrollCarousel 30s linear infinite;
}

.artists-track:hover {
    animation-play-state: paused;
}

@keyframes scrollCarousel {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.artist-card {
    flex: 0 0 280px;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.artist-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.artist-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--terracotta), var(--ochre));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    opacity: 0.6;
}

.artist-badge {
    position: absolute;
    bottom: var(--space-md);
    left: var(--space-md);
    background: var(--gold);
    color: var(--black-coffee);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: var(--radius-full);
}

.artist-info {
    padding: var(--space-lg);
    text-align: center;
}

.artist-name {
    font-family: var(--font-odia);
    font-size: 1.15rem;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.artist-role {
    font-size: 0.9rem;
    color: var(--vermillion);
    margin-bottom: var(--space-md);
}

.artist-stats {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-2xl);
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--vermillion);
    color: var(--vermillion);
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition-base);
}

.carousel-btn:hover {
    background: var(--vermillion);
    color: white;
}

/* ===================================
   About Section
   =================================== */
.about-section {
    padding: var(--space-4xl) 0;
    background: var(--cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.about-content .section-tag,
.about-content .section-title {
    text-align: left;
}

.about-text {
    margin-bottom: var(--space-2xl);
}

.about-text p {
    margin-bottom: var(--space-lg);
    color: var(--text-secondary);
}

.about-text strong {
    color: var(--vermillion);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.feature {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.feature:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature h4 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.feature p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* About Visual */
.about-visual {
    position: relative;
}

.visual-frame {
    position: relative;
}

.visual-placeholder {
    aspect-ratio: 4 / 5;
    background: linear-gradient(135deg, var(--maroon), var(--burgundy), var(--black-coffee));
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.visual-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='50' cy='50' r='40' stroke='%23D4A853' stroke-width='1' fill='none' opacity='0.2'/%3E%3Ccircle cx='50' cy='50' r='30' stroke='%23D4A853' stroke-width='1' fill='none' opacity='0.15'/%3E%3Ccircle cx='50' cy='50' r='20' stroke='%23D4A853' stroke-width='1' fill='none' opacity='0.1'/%3E%3C/svg%3E");
    background-size: 100px 100px;
    animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
    from { background-position: 0 0; }
    to { background-position: 100px 100px; }
}

.placeholder-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--text-light);
}

.big-icon {
    font-size: 6rem;
    display: block;
    margin-bottom: var(--space-lg);
    animation: float 4s ease-in-out infinite;
}

.visual-text {
    display: block;
    font-family: var(--font-odia);
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: var(--space-sm);
}

.visual-subtext {
    font-size: 1rem;
    opacity: 0.7;
}

.visual-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: var(--gradient-gold);
    border-radius: 50%;
    opacity: 0.3;
    filter: blur(40px);
}

/* ===================================
   Newsletter Section
   =================================== */
.newsletter-section {
    padding: var(--space-3xl) 0;
    background: var(--cream);
}

.newsletter-box {
    background: linear-gradient(135deg, var(--maroon), var(--burgundy));
    border-radius: var(--radius-xl);
    padding: var(--space-3xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-2xl);
    flex-wrap: wrap;
}

.newsletter-content h3 {
    font-size: 1.75rem;
    color: var(--text-light);
    margin-bottom: var(--space-sm);
}

.newsletter-content p {
    color: rgba(255, 248, 231, 0.7);
}

.newsletter-form {
    display: flex;
    gap: var(--space-md);
    flex: 1;
    max-width: 500px;
}

.newsletter-form input {
    flex: 1;
    padding: var(--space-md) var(--space-lg);
    border: 2px solid rgba(212, 168, 83, 0.3);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    font-size: 1rem;
    font-family: var(--font-body);
}

.newsletter-form input::placeholder {
    color: rgba(255, 248, 231, 0.5);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--gold);
}

/* ===================================
   Contact Section
   =================================== */
.contact-section {
    padding: var(--space-4xl) 0;
    background: var(--ivory);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-3xl);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.contact-item {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.contact-icon {
    font-size: 1.75rem;
    width: 50px;
    height: 50px;
    background: var(--vermillion);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item h4 {
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.contact-item a,
.contact-item p {
    color: var(--text-muted);
    font-size: 1rem;
}

.contact-item a:hover {
    color: var(--vermillion);
}

.social-links {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--maroon);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    transition: var(--transition-base);
}

.social-link:hover {
    background: var(--vermillion);
    transform: translateY(-4px);
}

/* Contact Form */
.contact-form {
    background: white;
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: var(--space-md) var(--space-lg);
    border: 2px solid #eee;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-primary);
    transition: var(--transition-base);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--vermillion);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--black-coffee);
    padding: var(--space-4xl) 0 var(--space-xl);
    position: relative;
    overflow: hidden;
}

.footer-pattern {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L30 60M0 30L60 30' stroke='%23D4A853' stroke-width='0.3' opacity='0.1'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
    position: relative;
}

.footer-brand .logo {
    margin-bottom: var(--space-lg);
}

.footer-brand p {
    color: rgba(255, 248, 231, 0.6);
    font-size: 1rem;
    margin-bottom: var(--space-md);
    max-width: 300px;
}

.footer-brand .tagline {
    font-family: var(--font-odia);
    color: var(--gold);
    font-size: 1.1rem;
}

.footer-links h4 {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: var(--space-lg);
}

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

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    color: rgba(255, 248, 231, 0.6);
    font-size: 0.95rem;
    transition: var(--transition-base);
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(212, 168, 83, 0.2);
    padding-top: var(--space-xl);
    display: flex;
    justify-content: space-between;
    position: relative;
}

.footer-bottom p {
    color: rgba(255, 248, 231, 0.4);
    font-size: 0.9rem;
}

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .about-visual {
        order: -1;
    }
    
    .visual-placeholder {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2xl);
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--black-coffee);
        flex-direction: column;
        padding: 100px var(--space-xl) var(--space-xl);
        transition: var(--transition-base);
        box-shadow: var(--shadow-xl);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-stats {
        gap: var(--space-xl);
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .jatra-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-box {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
        width: 100%;
        max-width: none;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand {
        align-items: center;
    }
    
    .footer-brand p {
        max-width: none;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-lg);
    }
    
    .hero-content {
        padding: var(--space-3xl) var(--space-md);
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn {
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: var(--space-lg);
    }
    
    .contact-form {
        padding: var(--space-lg);
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .hero-decoration,
    .scroll-indicator,
    .newsletter-section,
    .footer {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}

