/* CSS Variables - Indian Color Palette */
:root {
    /* Primary Colors - Indian Flag Inspired */
    --saffron: #FF9933;
    --white: #FFFFFF;
    --green: #138808;
    --navy-blue: #000080;
    
    /* Cultural Colors */
    --deep-saffron: #FF6B00;
    --royal-blue: #005A9C;
    --vibrant-red: #D32F2F;
    --golden: #FFD700;
    --emerald: #2E7D32;
    --peacock-blue: #0097A7;
    
    /* Neutral Colors */
    --dark: #1A1A1A;
    --gray-dark: #333333;
    --gray-medium: #666666;
    --gray-light: #E0E0E0;
    --cream: #FFF8E1;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--saffron) 0%, var(--deep-saffron) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--royal-blue) 0%, var(--peacock-blue) 100%);
    --gradient-hero: linear-gradient(135deg, #FF9933 0%, #FFFFFF 50%, #138808 100%);
    
    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    --spacing-2xl: 64px;
    --spacing-3xl: 96px;
    
    /* Typography */
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-heading: 'Georgia', serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 24px;
    font-weight: bold;
    color: var(--saffron);
}

.logo svg {
    width: 28px;
    height: 28px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

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

.nav-menu a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-3xl) var(--spacing-md) var(--spacing-2xl);
    background: linear-gradient(135deg, rgba(255, 153, 51, 0.1) 0%, rgba(255, 255, 255, 1) 50%, rgba(19, 136, 8, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 153, 51, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(19, 136, 8, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(50px, 50px) rotate(180deg); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-text {
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-title {
    font-family: var(--font-heading);
    margin-bottom: var(--spacing-md);
}

.namaste {
    display: block;
    font-size: 48px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-xs);
    animation: fadeIn 1s ease-out 0.3s both;
}

.hello {
    display: block;
    font-size: 64px;
    font-weight: bold;
    color: var(--dark);
    animation: fadeIn 1s ease-out 0.6s both;
}

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

.hero-subtitle {
    font-size: 20px;
    color: var(--gray-medium);
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
    animation: fadeIn 1s ease-out 0.9s both;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-sm);
    animation: fadeIn 1s ease-out 1.2s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm) var(--spacing-lg);
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn svg {
    width: 20px;
    height: 20px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 153, 51, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 153, 51, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--saffron);
    border: 2px solid var(--saffron);
}

.btn-secondary:hover {
    background: var(--saffron);
    color: var(--white);
    transform: translateY(-2px);
}

.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: slideInRight 1s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mandala-pattern {
    width: 400px;
    height: 400px;
    background: var(--gradient-primary);
    border-radius: 50%;
    position: relative;
    animation: rotate 30s linear infinite;
    box-shadow: 0 10px 40px rgba(255, 153, 51, 0.3);
}

.mandala-pattern::before,
.mandala-pattern::after {
    content: '';
    position: absolute;
    border-radius: 50%;
}

.mandala-pattern::before {
    top: 50px;
    left: 50px;
    right: 50px;
    bottom: 50px;
    background: var(--white);
}

.mandala-pattern::after {
    top: 100px;
    left: 100px;
    right: 100px;
    bottom: 100px;
    background: var(--gradient-secondary);
}

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

.scroll-indicator {
    position: absolute;
    bottom: var(--spacing-lg);
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator svg {
    width: 32px;
    height: 32px;
    color: var(--saffron);
}

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

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 48px;
    color: var(--dark);
    margin-bottom: var(--spacing-sm);
}

.section-header p {
    font-size: 20px;
    color: var(--gray-medium);
}

/* Culture Section */
.culture-section {
    padding: var(--spacing-3xl) var(--spacing-md);
    background: var(--white);
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.culture-card {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.culture-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.card-icon svg {
    width: 40px;
    height: 40px;
    color: var(--white);
}

.card-icon.saffron {
    background: var(--gradient-primary);
}

.card-icon.green {
    background: linear-gradient(135deg, var(--emerald) 0%, var(--green) 100%);
}

.card-icon.blue {
    background: var(--gradient-secondary);
}

.card-icon.orange {
    background: linear-gradient(135deg, var(--deep-saffron) 0%, var(--golden) 100%);
}

.culture-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.culture-card h3 {
    font-size: 24px;
    color: var(--dark);
    margin-bottom: var(--spacing-sm);
}

.culture-card p {
    color: var(--gray-medium);
    line-height: 1.8;
}

/* Heritage Section */
.heritage-section {
    padding: var(--spacing-3xl) var(--spacing-md);
    background: linear-gradient(135deg, rgba(255, 153, 51, 0.05) 0%, rgba(19, 136, 8, 0.05) 100%);
}

.heritage-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.heritage-text h2 {
    font-family: var(--font-heading);
    font-size: 48px;
    color: var(--dark);
    margin-bottom: var(--spacing-md);
}

.heritage-intro {
    font-size: 18px;
    color: var(--gray-medium);
    line-height: 1.8;
    margin-bottom: var(--spacing-xl);
}

.heritage-stats {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.stat-item svg {
    width: 40px;
    height: 40px;
    color: var(--saffron);
}

.stat-content h4 {
    font-size: 32px;
    color: var(--saffron);
    margin-bottom: 4px;
}

.stat-content p {
    color: var(--gray-medium);
    font-size: 14px;
}

.heritage-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: var(--gradient-secondary);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 10px 40px rgba(0, 90, 156, 0.3);
}

.image-placeholder svg {
    width: 80px;
    height: 80px;
    margin-bottom: var(--spacing-md);
}

.image-placeholder p {
    font-size: 24px;
    font-weight: 600;
}

/* Diversity Section */
.diversity-section {
    padding: var(--spacing-3xl) var(--spacing-md);
    background: var(--white);
}

.diversity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.diversity-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.diversity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.card-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.card-image svg {
    width: 60px;
    height: 60px;
    position: relative;
    z-index: 1;
}

.card-image.north {
    background: linear-gradient(135deg, #1976D2 0%, #64B5F6 100%);
}

.card-image.south {
    background: linear-gradient(135deg, #388E3C 0%, #81C784 100%);
}

.card-image.east {
    background: linear-gradient(135deg, #F57C00 0%, #FFB74D 100%);
}

.card-image.west {
    background: linear-gradient(135deg, #0097A7 0%, #4DD0E1 100%);
}

.diversity-card h3 {
    padding: var(--spacing-md) var(--spacing-md) var(--spacing-xs);
    font-size: 24px;
    color: var(--dark);
}

.diversity-card p {
    padding: 0 var(--spacing-md) var(--spacing-md);
    color: var(--gray-medium);
    line-height: 1.6;
}

/* Quote Section */
.quote-section {
    padding: var(--spacing-3xl) var(--spacing-md);
    background: var(--gradient-primary);
    color: var(--white);
}

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

.quote-content svg {
    width: 60px;
    height: 60px;
    margin-bottom: var(--spacing-md);
    opacity: 0.8;
}

.quote-content blockquote {
    font-family: var(--font-heading);
    font-size: 28px;
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
    font-style: italic;
}

.quote-author {
    font-size: 20px;
    font-weight: 600;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: var(--spacing-2xl) var(--spacing-md) var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-section h4 {
    font-size: 20px;
    margin-bottom: var(--spacing-md);
    color: var(--saffron);
}

.footer-section p {
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

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

.footer-section ul li {
    margin-bottom: var(--spacing-xs);
}

.footer-section ul li a {
    color: var(--gray-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--saffron);
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 153, 51, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--saffron);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--saffron);
    color: var(--white);
    transform: translateY(-3px);
}

.social-links svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray-light);
}

.footer-bottom svg {
    width: 16px;
    height: 16px;
    color: var(--vibrant-red);
    vertical-align: middle;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        gap: var(--spacing-md);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hello {
        font-size: 48px;
    }
    
    .namaste {
        font-size: 36px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .mandala-pattern {
        width: 300px;
        height: 300px;
    }
    
    .heritage-content {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 36px;
    }
    
    .culture-grid,
    .diversity-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .scroll-indicator,
    .footer {
        display: none;
    }
    
    .hero {
        min-height: auto;
        padding: var(--spacing-lg);
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

/* Focus Styles */
a:focus,
button:focus {
    outline: 2px solid var(--saffron);
    outline-offset: 2px;
}