/* =============================================
   MIRCHI RAIPUR 18TH ANNIVERSARY - STYLES
   Premium Landing Page | Image-First Design
   Author: Brand Experience Designer
   ============================================= */

/* =============================================
   SCROLL PROGRESS BAR
   ============================================= */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, #FF1E1E 0%, #ff6b6b 50%, #FF1E1E 100%);
    z-index: 10000;
    transition: width 0.1s ease-out;
    box-shadow: 0 0 10px rgba(255, 30, 30, 0.8), 0 0 20px rgba(255, 30, 30, 0.4);
}

/* =============================================
   SCROLL TO TOP BUTTON
   ============================================= */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #FF1E1E 0%, #CC1818 100%);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(255, 30, 30, 0.4), 0 0 40px rgba(255, 30, 30, 0.2);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.scroll-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 30px rgba(255, 30, 30, 0.6), 0 0 60px rgba(255, 30, 30, 0.3);
}

.scroll-to-top:active {
    transform: scale(0.95);
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
    color: #ffffff;
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 48px;
        height: 48px;
    }

    .scroll-to-top svg {
        width: 20px;
        height: 20px;
    }
}

/* =============================================
   SPLASH SCREEN STYLES
   Premium animated entry experience
   ============================================= */
.splash {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: linear-gradient(135deg, #000000 0%, #1a0a0a 50%, #0a0000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        visibility 0.8s;
}

.splash.hidden {
    opacity: 0;
    transform: scale(1.1);
    visibility: hidden;
    pointer-events: none;
}

.splash__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.splash__logo {
    width: 200px;
    height: auto;
    margin-bottom: 2rem;
    animation: splashLogoFloat 3s ease-in-out infinite, splashLogoGlow 2s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 40px rgba(255, 30, 30, 0.6));
}

@keyframes splashLogoFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes splashLogoGlow {
    0% {
        filter: drop-shadow(0 0 30px rgba(255, 30, 30, 0.5));
    }

    100% {
        filter: drop-shadow(0 0 60px rgba(255, 30, 30, 0.9));
    }
}

.splash__text {
    margin-bottom: 3rem;
}

.splash__anniversary {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #FF1E1E;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.splash__title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -0.02em;
    line-height: 1.1;
    text-shadow: 0 0 60px rgba(255, 30, 30, 0.4);
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.splash__title span {
    color: #FF1E1E;
    display: block;
    text-shadow: 0 0 40px rgba(255, 30, 30, 0.6);
}

.splash__button {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 3rem;
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #ffffff;
    background: linear-gradient(135deg, #FF1E1E 0%, #CC1818 100%);
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    box-shadow: 0 0 40px rgba(255, 30, 30, 0.5),
        0 10px 40px rgba(255, 30, 30, 0.3);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    animation: fadeInUp 0.8s ease 0.6s backwards, buttonPulse 2s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.splash__button::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #FF1E1E, #ff6b6b, #FF1E1E);
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s;
}

.splash__button:hover {
    transform: scale(1.08) translateY(-3px);
    box-shadow: 0 0 60px rgba(255, 30, 30, 0.7),
        0 20px 60px rgba(255, 30, 30, 0.4);
}

.splash__button:hover::before {
    opacity: 1;
}

.splash__button:active {
    transform: scale(1.02);
}

@keyframes buttonPulse {

    0%,
    100% {
        box-shadow: 0 0 40px rgba(255, 30, 30, 0.5), 0 10px 40px rgba(255, 30, 30, 0.3);
    }

    50% {
        box-shadow: 0 0 60px rgba(255, 30, 30, 0.7), 0 15px 50px rgba(255, 30, 30, 0.4);
    }
}

.splash__button-text {
    position: relative;
    z-index: 1;
}

.splash__button-fire {
    font-size: 1.5rem;
    animation: fireFlicker 0.5s ease-in-out infinite alternate;
}

@keyframes fireFlicker {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.2);
    }
}

.splash__hint {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
    letter-spacing: 0.05em;
    animation: fadeInUp 0.8s ease 0.8s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* Splash screen click effect - DRAMATIC VERSION */
.splash.exiting {
    animation: splashExit 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.splash.exiting::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 30, 30, 0.9) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: burstExpand 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    z-index: 1;
}

.splash.exiting::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, #000 100%);
    animation: vignettePulse 1.2s ease-out forwards;
    z-index: 2;
}

.splash.exiting .splash__content {
    animation: contentDramaticZoom 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    position: relative;
    z-index: 3;
}

.splash.exiting .splash__logo {
    animation: logoExplode 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

.splash.exiting .splash__button {
    animation: buttonFlash 0.5s ease-out forwards;
}

@keyframes splashExit {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    40% {
        opacity: 1;
        transform: scale(1.02);
    }

    100% {
        opacity: 0;
        transform: scale(1.15);
        visibility: hidden;
    }
}

@keyframes burstExpand {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }

    100% {
        width: 400vmax;
        height: 400vmax;
        opacity: 0;
    }
}

@keyframes vignettePulse {
    0% {
        opacity: 0;
    }

    30% {
        opacity: 0.5;
    }

    100% {
        opacity: 0;
    }
}

@keyframes contentDramaticZoom {
    0% {
        transform: scale(1) translateY(0);
        opacity: 1;
        filter: blur(0);
    }

    30% {
        transform: scale(1.1) translateY(-10px);
        opacity: 1;
        filter: blur(0);
    }

    100% {
        transform: scale(2) translateY(-50px);
        opacity: 0;
        filter: blur(10px);
    }
}

@keyframes logoExplode {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 40px rgba(255, 30, 30, 0.6));
    }

    30% {
        transform: scale(1.3);
        filter: drop-shadow(0 0 80px rgba(255, 30, 30, 1));
    }

    100% {
        transform: scale(2.5);
        filter: drop-shadow(0 0 120px rgba(255, 30, 30, 0.8));
        opacity: 0;
    }
}

@keyframes buttonFlash {
    0% {
        box-shadow: 0 0 40px rgba(255, 30, 30, 0.5), 0 10px 40px rgba(255, 30, 30, 0.3);
    }

    50% {
        box-shadow: 0 0 100px rgba(255, 30, 30, 1), 0 0 200px rgba(255, 30, 30, 0.8);
        transform: scale(1.2);
    }

    100% {
        box-shadow: 0 0 150px rgba(255, 30, 30, 0.5);
        transform: scale(0.8);
        opacity: 0;
    }
}

/* =============================================
   1. CSS CUSTOM PROPERTIES (Design Tokens)
   ============================================= */
:root {
    /* Brand Colors */
    --mirchi-red: #FF1E1E;
    --mirchi-red-dark: #CC1818;
    --mirchi-red-light: rgba(255, 30, 30, 0.15);
    --black: #000000;
    --white: #FFFFFF;

    /* Accent Colors (LIMITED USE) */
    --chilli-green: #0FA958;
    /* < 5% usage */
    --warm-yellow: #FFC400;
    /* Subtle accents only */

    /* Neutral Palette */
    --gray-dark: #1A1A1A;
    --gray-medium: #333333;
    --gray-light: #666666;
    --gray-lighter: #999999;
    --off-white: #F5F5F5;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-black: 900;

    /* Font Sizes */
    --text-xs: 0.75rem;
    /* 12px */
    --text-sm: 0.875rem;
    /* 14px */
    --text-base: 1rem;
    /* 16px */
    --text-lg: 1.125rem;
    /* 18px */
    --text-xl: 1.25rem;
    /* 20px */
    --text-2xl: 1.5rem;
    /* 24px */
    --text-3xl: 2rem;
    /* 32px */
    --text-4xl: 2.5rem;
    /* 40px */
    --text-5xl: 3rem;
    /* 48px */
    --text-6xl: 4rem;
    /* 64px */
    --text-7xl: 5rem;
    /* 80px */

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    --space-4xl: 8rem;

    /* Layout */
    --container-max: 1400px;
    --section-padding: clamp(4rem, 10vh, 8rem);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
    --transition-slower: 800ms ease;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.25);

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
}

/* =============================================
   2. RESET & BASE STYLES
   ============================================= */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

body.loading {
    overflow: hidden;
}

body.loading .main-content {
    opacity: 0;
    transform: scale(1.05);
    pointer-events: none;
}

.main-content {
    opacity: 1;
    transform: scale(1);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
        transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul,
ol {
    list-style: none;
}

/* =============================================
   3. TYPOGRAPHY
   ============================================= */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: var(--font-weight-bold);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.heading-hero {
    font-size: clamp(var(--text-4xl), 8vw, var(--text-7xl));
    font-weight: var(--font-weight-black);
    text-transform: uppercase;
    letter-spacing: -0.03em;
    text-shadow: 0 0 60px rgba(255, 30, 30, 0.4);
}

.heading-section {
    font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl));
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--space-lg);
}

.heading-subsection {
    font-size: clamp(var(--text-xl), 3vw, var(--text-3xl));
    font-weight: var(--font-weight-semibold);
}

.text-large {
    font-size: clamp(var(--text-lg), 2vw, var(--text-xl));
    line-height: 1.7;
}

.text-body {
    font-size: var(--text-base);
    line-height: 1.8;
    color: var(--gray-lighter);
}

.text-small {
    font-size: var(--text-sm);
    color: var(--gray-light);
}

/* =============================================
   4. UTILITY CLASSES
   ============================================= */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-mirchi {
    color: var(--mirchi-red);
}

.text-white {
    color: var(--white);
}

.text-muted {
    color: var(--gray-lighter);
}

.bg-black {
    background-color: var(--black);
}

.bg-dark {
    background-color: var(--gray-dark);
}

.bg-mirchi {
    background-color: var(--mirchi-red);
}

/* Flex utilities */
.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-sm {
    gap: var(--space-sm);
}

.gap-md {
    gap: var(--space-md);
}

.gap-lg {
    gap: var(--space-lg);
}

.gap-xl {
    gap: var(--space-xl);
}

/* Grid utilities */
.grid {
    display: grid;
}

/* =============================================
   5. SECTION BASE STYLES
   ============================================= */
.section {
    position: relative;
    padding: var(--section-padding) 0;
    overflow: hidden;
}

.section--dark {
    background-color: var(--black);
}

.section--darker {
    background-color: var(--gray-dark);
}

.section--gradient {
    background: linear-gradient(180deg, var(--black) 0%, var(--gray-dark) 100%);
}

.section__header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-3xl);
}

.section__label {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: var(--font-weight-semibold);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--mirchi-red);
    margin-bottom: var(--space-sm);
    position: relative;
}

.section__label::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    width: 12px;
    height: 1px;
    background-color: var(--mirchi-red);
}

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

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

.hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 0, 0, 0.7) 40%,
            rgba(255, 30, 30, 0.3) 100%);
}

.hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: var(--space-lg);
    max-width: 1000px;
}

.hero__logo {
    width: 240px;
    height: auto;
    margin: 0 auto var(--space-xl);
    filter: drop-shadow(0 0 30px rgba(255, 30, 30, 0.5));
    animation: logoPulse 3s ease-in-out infinite;
}

@keyframes logoPulse {

    0%,
    100% {
        filter: drop-shadow(0 0 30px rgba(255, 30, 30, 0.5));
    }

    50% {
        filter: drop-shadow(0 0 50px rgba(255, 30, 30, 0.8));
    }
}

.hero__anniversary {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--text-lg);
    font-weight: var(--font-weight-semibold);
    color: var(--mirchi-red);
    margin-bottom: var(--space-md);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero__anniversary::before,
.hero__anniversary::after {
    content: '';
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--mirchi-red));
}

.hero__anniversary::after {
    background: linear-gradient(90deg, var(--mirchi-red), transparent);
}

.hero__title {
    margin-bottom: var(--space-md);
}

.hero__tagline {
    font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
    font-weight: var(--font-weight-semibold);
    font-style: normal;
    color: var(--mirchi-red);
    margin-bottom: var(--space-lg);
    text-shadow: 0 0 40px rgba(255, 30, 30, 0.6);
    letter-spacing: 0.05em;
}

.hero__subtitle {
    font-size: clamp(var(--text-lg), 2.5vw, var(--text-2xl));
    color: var(--white);
    max-width: 700px;
    margin: 0 auto var(--space-2xl);
    line-height: 1.7;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    font-weight: var(--font-weight-medium);
}

.hero__cta {
    display: inline-block;
    font-size: var(--text-sm);
    font-weight: var(--font-weight-medium);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
    padding: var(--space-md) var(--space-xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    transition: var(--transition-base);
}

.hero__cta:hover {
    border-color: var(--mirchi-red);
    background: rgba(255, 30, 30, 0.1);
}

.hero__scroll {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: var(--gray-lighter);
    font-size: var(--text-xs);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: float 2s ease-in-out infinite;
}

.hero__scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, var(--mirchi-red), transparent);
}

@keyframes float {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* =============================================
   7. ABOUT SECTION (Split Layout)
   ============================================= */
.about {
    background-color: var(--black);
}

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

@media (min-width: 768px) {
    .about__grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-3xl);
    }
}

.about__content {
    order: 2;
}

@media (min-width: 768px) {
    .about__content {
        order: 1;
    }
}

.about__image-wrapper {
    order: 1;
    position: relative;
}

@media (min-width: 768px) {
    .about__image-wrapper {
        order: 2;
    }
}

.about__image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

@media (min-width: 768px) {
    .about__image {
        height: 500px;
    }
}

.about__image-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    border: 2px solid var(--mirchi-red);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.about__list {
    margin-top: var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.about__list-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    font-size: var(--text-lg);
    color: var(--gray-lighter);
}

.about__list-item::before {
    content: '';
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    margin-top: 10px;
    background-color: var(--mirchi-red);
    border-radius: 50%;
}

/* =============================================
   8. OBJECTIVE SECTION (Card Layout)
   ============================================= */
.objective {
    background: linear-gradient(180deg, var(--gray-dark) 0%, var(--black) 100%);
}

.objective__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

@media (min-width: 640px) {
    .objective__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .objective__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.objective__card {
    position: relative;
    padding: var(--space-xl);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
    overflow: hidden;
}

.objective__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--mirchi-red);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-base);
}

.objective__card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 30, 30, 0.3);
    transform: translateY(-5px);
}

.objective__card:hover::before {
    transform: scaleX(1);
}

.objective__icon {
    width: 48px;
    height: 48px;
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 30, 30, 0.1);
    border-radius: var(--radius-md);
    color: var(--mirchi-red);
}

.objective__icon svg {
    width: 24px;
    height: 24px;
}

.objective__card-title {
    font-size: var(--text-xl);
    font-weight: var(--font-weight-semibold);
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.objective__card-text {
    font-size: var(--text-base);
    color: var(--gray-lighter);
    line-height: 1.7;
}

/* =============================================
   9. CORE ACTIVITIES SECTION (Image Grid)
   ============================================= */
.activities {
    background-color: var(--black);
}

.activities__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

@media (min-width: 640px) {
    .activities__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .activities__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.activity-card {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: default;
}

.activity-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.activity-card:hover .activity-card__image {
    transform: scale(1.05);
}

.activity-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg,
            rgba(0, 0, 0, 0.9) 0%,
            rgba(0, 0, 0, 0.3) 50%,
            rgba(0, 0, 0, 0.1) 100%);
    transition: var(--transition-base);
}

.activity-card:hover .activity-card__overlay {
    background: linear-gradient(0deg,
            rgba(255, 30, 30, 0.8) 0%,
            rgba(0, 0, 0, 0.4) 50%,
            rgba(0, 0, 0, 0.2) 100%);
}

.activity-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-lg);
    transform: translateY(10px);
    opacity: 0.9;
    transition: var(--transition-base);
}

.activity-card:hover .activity-card__content {
    transform: translateY(0);
    opacity: 1;
}

.activity-card__title {
    font-size: var(--text-lg);
    font-weight: var(--font-weight-semibold);
    color: var(--white);
    margin-bottom: var(--space-xs);
}

.activity-card__subtitle {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
}

/* =============================================
   10. LIVE RADIO SECTION (Full Width Feature)
   ============================================= */
.live-radio {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.live-radio__background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.live-radio__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.live-radio__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, 0.95) 0%,
            rgba(0, 0, 0, 0.7) 50%,
            rgba(255, 30, 30, 0.2) 100%);
}

.live-radio__content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    padding: var(--space-2xl);
}

.live-radio__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: var(--text-xs);
    font-weight: var(--font-weight-semibold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--mirchi-red);
    margin-bottom: var(--space-lg);
}

.live-radio__badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background-color: var(--mirchi-red);
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.live-radio__title {
    font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl));
    font-weight: var(--font-weight-bold);
    color: var(--white);
    margin-bottom: var(--space-lg);
    line-height: 1.2;
}

.live-radio__features {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.live-radio__feature {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-size: var(--text-lg);
    color: var(--gray-lighter);
}

.live-radio__feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 30, 30, 0.15);
    border-radius: 50%;
    color: var(--mirchi-red);
    flex-shrink: 0;
}

/* =============================================
   11. CITY PARTICIPATION SECTION
   ============================================= */
.city-participation {
    background-color: var(--gray-dark);
}

.city-participation__images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
    margin-bottom: var(--space-2xl);
}

@media (min-width: 768px) {
    .city-participation__images {
        grid-template-columns: repeat(4, 1fr);
    }
}

.city-participation__image {
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

.city-participation__image:hover {
    transform: scale(1.02);
}

.city-participation__points {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .city-participation__points {
        grid-template-columns: repeat(2, 1fr);
    }
}

.city-participation__point {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--mirchi-red);
}

.city-participation__point-text {
    font-size: var(--text-lg);
    color: var(--gray-lighter);
    line-height: 1.6;
}

/* =============================================
   12. LISTENER PARTICIPATION SECTION
   ============================================= */
.listeners {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

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

.listeners__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.listeners__overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center,
            rgba(0, 0, 0, 0.6) 0%,
            rgba(0, 0, 0, 0.9) 100%);
}

.listeners__content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: var(--space-2xl);
}

.listeners__title {
    font-size: clamp(var(--text-3xl), 6vw, var(--text-6xl));
    font-weight: var(--font-weight-bold);
    color: var(--white);
    margin-bottom: var(--space-lg);
}

.listeners__title span {
    color: var(--mirchi-red);
}

.listeners__text {
    font-size: clamp(var(--text-lg), 2vw, var(--text-xl));
    color: var(--gray-lighter);
    line-height: 1.8;
}

/* =============================================
   13. KEY HIGHLIGHTS SECTION
   ============================================= */
.highlights {
    background-color: var(--black);
}

.highlights__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

@media (min-width: 640px) {
    .highlights__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .highlights__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-xl);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
}

.highlight-item:hover {
    background: rgba(255, 30, 30, 0.05);
    border-color: rgba(255, 30, 30, 0.2);
    transform: translateY(-3px);
}

.highlight-item__icon {
    width: 64px;
    height: 64px;
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--mirchi-red) 0%, var(--mirchi-red-dark) 100%);
    border-radius: var(--radius-md);
    color: var(--white);
}

.highlight-item__icon svg {
    width: 28px;
    height: 28px;
}

.highlight-item__text {
    font-size: var(--text-base);
    font-weight: var(--font-weight-medium);
    color: var(--white);
    line-height: 1.5;
}

/* =============================================
   14. WHO WILL BE PART SECTION
   ============================================= */
.participants {
    background: linear-gradient(180deg, var(--gray-dark) 0%, var(--black) 100%);
}

.participants__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

@media (min-width: 768px) {
    .participants__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .participants__grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.participant-card {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(180deg, var(--gray-medium) 0%, var(--gray-dark) 100%);
}

.participant-card__silhouette {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.participant-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            transparent 0%,
            rgba(0, 0, 0, 0.9) 100%);
}

.participant-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-lg);
    text-align: center;
}

.participant-card__title {
    font-size: var(--text-lg);
    font-weight: var(--font-weight-semibold);
    color: var(--white);
    margin-bottom: var(--space-xs);
}

.participant-card__desc {
    font-size: var(--text-sm);
    color: var(--gray-lighter);
    line-height: 1.5;
    margin-bottom: var(--space-sm);
}

.participant-card__line {
    width: 40px;
    height: 2px;
    background-color: var(--mirchi-red);
    margin: 0 auto;
    transition: width 0.3s ease;
}

/* =============================================
   15. MIRCHI RJs SECTION
   ============================================= */
.rj-section {
    position: relative;
    padding: var(--space-4xl) 0;
    overflow: hidden;
}

.rj-section__background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.rj-section__gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            #0a0000 0%,
            #1a0505 25%,
            #200808 50%,
            #1a0505 75%,
            #0a0000 100%);
}

.rj-section__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rj-section__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.9) 0%,
            rgba(255, 30, 30, 0.3) 50%,
            rgba(0, 0, 0, 0.9) 100%);
}

.rj-section__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: var(--space-2xl);
}

.rj-section__title {
    font-size: clamp(var(--text-3xl), 6vw, var(--text-6xl));
    font-weight: var(--font-weight-black);
    color: var(--white);
    margin-bottom: var(--space-lg);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.rj-section__title span {
    color: var(--mirchi-red);
}

.rj-section__features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
}

.rj-section__feature {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--text-lg);
    color: var(--gray-lighter);
    padding: var(--space-md) var(--space-lg);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
}

.rj-section__feature-dot {
    width: 6px;
    height: 6px;
    background-color: var(--mirchi-red);
    border-radius: 50%;
}

/* RJ Profile Cards */
.rj-profiles {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    margin: var(--space-2xl) 0;
    flex-wrap: wrap;
}

.rj-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
    min-width: 200px;
}

.rj-card:hover {
    background: rgba(255, 30, 30, 0.1);
    border-color: var(--mirchi-red);
    transform: translateY(-5px);
}

.rj-card__image-wrapper {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--mirchi-red);
    margin-bottom: var(--space-md);
    box-shadow: 0 8px 32px rgba(255, 30, 30, 0.3);
    transition: var(--transition-base);
    background: #ffffff;
}

.rj-card:hover .rj-card__image-wrapper {
    border-color: var(--white);
    box-shadow: 0 12px 48px rgba(255, 30, 30, 0.5);
}

.rj-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: var(--transition-slow);
    transform: scale(1.5);
}

.rj-card:hover .rj-card__image {
    transform: scale(1.6);
}

/* Fix for RJ Harshal's image - position lower to hide white top */
.rj-card:nth-child(3) .rj-card__image {
    object-position: 55% 28%;
    transform: scale(1.8);
}

.rj-card:nth-child(3):hover .rj-card__image {
    transform: scale(1.8);
}

.rj-card__name {
    font-size: var(--text-xl);
    font-weight: var(--font-weight-bold);
    color: var(--white);
    margin-bottom: var(--space-xs);
}

.rj-card__handle {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: var(--text-sm);
    color: var(--gray-lighter);
    padding: var(--space-xs) var(--space-md);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-full);
    transition: var(--transition-base);
}

.rj-card__handle:hover {
    color: var(--mirchi-red);
    background: rgba(255, 30, 30, 0.1);
}

.rj-card__handle::before {
    content: '';
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23999'%3E%3Cpath d='M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zm0-2.163c-3.259 0-3.667.014-4.947.072-4.358.2-6.78 2.618-6.98 6.98-.059 1.281-.073 1.689-.073 4.948 0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98 1.281.058 1.689.072 4.948.072 3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98-1.281-.059-1.69-.073-4.949-.073zm0 5.838c-3.403 0-6.162 2.759-6.162 6.162s2.759 6.163 6.162 6.163 6.162-2.759 6.162-6.163c0-3.403-2.759-6.162-6.162-6.162zm0 10.162c-2.209 0-4-1.79-4-4 0-2.209 1.791-4 4-4s4 1.791 4 4c0 2.21-1.791 4-4 4zm6.406-11.845c-.796 0-1.441.645-1.441 1.44s.645 1.44 1.441 1.44c.795 0 1.439-.645 1.439-1.44s-.644-1.44-1.439-1.44z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.rj-card__handle:hover::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FF1E1E'%3E%3Cpath d='M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zm0-2.163c-3.259 0-3.667.014-4.947.072-4.358.2-6.78 2.618-6.98 6.98-.059 1.281-.073 1.689-.073 4.948 0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98 1.281.058 1.689.072 4.948.072 3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98-1.281-.059-1.69-.073-4.949-.073zm0 5.838c-3.403 0-6.162 2.759-6.162 6.162s2.759 6.163 6.162 6.163 6.162-2.759 6.162-6.163c0-3.403-2.759-6.162-6.162-6.162zm0 10.162c-2.209 0-4-1.79-4-4 0-2.209 1.791-4 4-4s4 1.791 4 4c0 2.21-1.791 4-4 4zm6.406-11.845c-.796 0-1.441.645-1.441 1.44s.645 1.44 1.441 1.44c.795 0 1.439-.645 1.439-1.44s-.644-1.44-1.439-1.44z'/%3E%3C/svg%3E");
}

@media (max-width: 768px) {
    .rj-profiles {
        gap: var(--space-md);
    }

    .rj-card {
        min-width: 160px;
        padding: var(--space-md);
    }

    .rj-card__image-wrapper {
        width: 100px;
        height: 100px;
    }

    .rj-card__name {
        font-size: var(--text-lg);
    }
}

/* =============================================
   16. EXPERIENCE FLOW TIMELINE
   ============================================= */
.timeline {
    background-color: var(--black);
    overflow-x: hidden;
}

.timeline__wrapper {
    overflow-x: auto;
    padding-bottom: var(--space-lg);
    -webkit-overflow-scrolling: touch;
}

.timeline__track {
    display: flex;
    gap: var(--space-lg);
    min-width: max-content;
    padding: var(--space-lg);
}

.timeline__item {
    flex-shrink: 0;
    width: 200px;
    text-align: center;
    position: relative;
}

.timeline__item::after {
    content: '';
    position: absolute;
    top: 32px;
    left: calc(50% + 32px);
    width: calc(100% - 32px);
    height: 2px;
    background: linear-gradient(90deg, var(--mirchi-red), var(--gray-medium));
}

.timeline__item:last-child::after {
    display: none;
}

.timeline__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--mirchi-red) 0%, var(--mirchi-red-dark) 100%);
    border-radius: 50%;
    color: var(--white);
    position: relative;
    z-index: 1;
}

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

.timeline__label {
    font-size: var(--text-sm);
    font-weight: var(--font-weight-medium);
    color: var(--white);
    line-height: 1.5;
}

/* =============================================
   17. FOOTER
   ============================================= */
.footer {
    background-color: var(--black);
    padding: var(--space-4xl) 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__logo {
    width: 180px;
    height: auto;
    margin: 0 auto var(--space-xl);
}

.footer__tagline {
    font-size: clamp(var(--text-xl), 3vw, var(--text-3xl));
    font-weight: var(--font-weight-semibold);
    color: var(--white);
    margin-bottom: var(--space-md);
}

.footer__tagline span {
    color: var(--mirchi-red);
}

.footer__subtitle {
    font-size: var(--text-base);
    color: var(--gray-lighter);
    font-style: italic;
}

.footer__divider {
    width: 60px;
    height: 3px;
    background: var(--mirchi-red);
    margin: var(--space-2xl) auto;
    border-radius: var(--radius-full);
}

.footer__note {
    font-size: var(--text-sm);
    color: var(--gray-light);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* =============================================
   18. ANIMATIONS
   ============================================= */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--transition-slower), transform var(--transition-slower);
}

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

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity var(--transition-slower), transform var(--transition-slower);
}

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

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity var(--transition-slower), transform var(--transition-slower);
}

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

.stagger-1 {
    transition-delay: 100ms;
}

.stagger-2 {
    transition-delay: 200ms;
}

.stagger-3 {
    transition-delay: 300ms;
}

.stagger-4 {
    transition-delay: 400ms;
}

.stagger-5 {
    transition-delay: 500ms;
}

.stagger-6 {
    transition-delay: 600ms;
}

/* =============================================
   19. RESPONSIVE ADJUSTMENTS
   ============================================= */
@media (max-width: 767px) {
    :root {
        --section-padding: clamp(3rem, 8vh, 5rem);
    }

    .container {
        padding: 0 var(--space-md);
    }

    .hero__content {
        padding: var(--space-md);
    }

    .hero__anniversary::before,
    .hero__anniversary::after {
        width: 20px;
    }
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--gray-medium);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--mirchi-red);
}