@import url('https://fonts.googleapis.com/css2?family=Hind:wght@300;400;500;600;700&family=Teko:wght@300;400;500;600;700&display=swap');

:root {
    --premium-gold: #FFC107;
    --premium-gold-light: #FFD54F;
    --premium-gold-dark: #FFA000;
    --premium-purple: #4A148C;
    --premium-purple-rgb: 74, 20, 140;
    --premium-dark: #0F0C29;
    --premium-glass: rgba(255, 255, 255, 0.1);
    --premium-blur: blur(15px);
    --premium-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    --premium-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Premium Typography Updates */
h1, h2, h3, h4, .logo-text, .section-title {
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
}

/* Hindi Font Specifics */
[lang="hi"], .hindi-text {
    font-family: 'Hind', sans-serif !important;
    line-height: 1.6;
}

/* Global Smoothness */
body {
    background-color: #fdfdfd;
}

/* Glassmorphism Header */
.header {
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: var(--premium-blur);
    -webkit-backdrop-filter: var(--premium-blur);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.header--scrolled {
    background: rgba(255, 255, 255, 0.95) !important;
    padding: 10px 0;
}

/* Premium Navigation */
.nav__link {
    position: relative;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--premium-gold);
    transform: scaleX(0);
    transition: var(--premium-transition);
    transform-origin: right;
}

.nav__link:hover::after,
.nav__link--active::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Hero Section Enhancements */
.hero {
    background: var(--premium-dark);
}

.hero__overlay {
    background: linear-gradient(135deg, 
        rgba(var(--premium-purple-rgb), 0.8) 0%, 
        rgba(15, 12, 41, 0.6) 100%) !important;
}

.hero__title {
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
    font-weight: 800;
}

.hero__tag {
    background: rgba(255, 193, 7, 0.2) !important;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 193, 7, 0.3) !important;
}

/* Section Transitions */
.section {
    position: relative;
    overflow: hidden;
}

/* Reveal on Scroll */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--premium-transition);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Glass Cards */
.program-card, .objective-card, .member-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05) !important;
}

.program-card:hover {
    box-shadow: 0 20px 40px rgba(var(--premium-purple-rgb), 0.1) !important;
}

/* Premium Buttons */
.btn-primary {
    background: linear-gradient(90deg, var(--premium-gold-dark), var(--premium-gold)) !important;
    color: var(--premium-purple) !important;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3) !important;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4) !important;
}

.btn-join {
    background: var(--premium-purple) !important;
    box-shadow: 0 4px 15px rgba(74, 20, 140, 0.2) !important;
}

/* Bottom Bar / Footer Premium */
.footer {
    background: linear-gradient(180deg, #1A1A2E 0%, #0F0C29 100%) !important;
}

/* Utility: Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--premium-purple);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--premium-gold);
}
