/* BHAYRA - CINEMATIC TEASER EXPERIENCE */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #0a0a0a;
    --blood-red: #8B0000;
    --gold: #D4AF37;
    --saffron: #FF6600;
    --white: #ffffff;
    --gray: #1a1a1a;
    
    --font-title: 'Cinzel', serif;
    --font-body: 'Rajdhani', sans-serif;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
}

/* ENTRANCE EXPERIENCE */
.entrance-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 1s ease, visibility 1s ease;
}

.entrance-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.entrance-overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10,10,10,0.85) 0%, rgba(26,5,5,0.90) 100%);
    z-index: 2;
}

.entrance-overlay.fade-out {
    opacity: 0;
    visibility: hidden;
}

.entrance-content {
    position: relative;
    z-index: 3;
    text-align: center;
    animation: fadeInScale 1.5s ease;
}

.entrance-trishul {
    color: var(--gold);
    margin-bottom: 40px;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.5));
    animation: glow 2s ease-in-out infinite;
}

.entrance-title {
    font-family: var(--font-title);
    font-size: 96px;
    font-weight: 900;
    letter-spacing: 20px;
    color: var(--gold);
    margin-bottom: 16px;
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.6);
}

.entrance-subtitle {
    font-size: 48px;
    color: var(--saffron);
    margin-bottom: 60px;
    opacity: 0.9;
}

.entrance-btn {
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 4px;
    padding: 20px 60px;
    background: transparent;
    border: 3px solid var(--gold);
    color: var(--gold);
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.entrance-btn:hover {
    background: var(--gold);
    color: var(--black);
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.8);
}

.main-site {
    opacity: 0;
    transition: opacity 1s ease 0.5s;
}

.main-site.visible {
    opacity: 1;
}

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

.hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 1;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10,10,10,0.85) 0%, rgba(139,0,0,0.6) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-symbol {
    margin-bottom: 40px;
    animation: floatSymbol 3s ease-in-out infinite;
}

.trishul-main {
    color: var(--gold);
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.7));
}

.hero-title {
    margin-bottom: 24px;
}

.title-main {
    display: block;
    font-family: var(--font-title);
    font-size: 120px;
    font-weight: 900;
    letter-spacing: 24px;
    color: var(--gold);
    text-shadow: 0 0 60px rgba(212, 175, 55, 0.8),
                 0 0 100px rgba(212, 175, 55, 0.4);
    animation: titleGlow 2s ease-in-out infinite;
}

.title-sanskrit {
    display: block;
    font-size: 56px;
    color: var(--saffron);
    margin-top: 16px;
    opacity: 0.95;
}

.hero-tagline {
    font-family: var(--font-body);
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 8px;
    color: var(--white);
    margin-bottom: 32px;
    opacity: 0.9;
}

.hero-legend {
    max-width: 700px;
    margin: 0 auto 60px;
}

.hero-legend p {
    font-size: 24px;
    line-height: 1.8;
    color: rgba(255,255,255,0.85);
    font-weight: 300;
}

/* EPIC COUNTDOWN */
.countdown-epic {
    margin-bottom: 60px;
}

.countdown-label-top {
    font-size: 16px;
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: 20px;
    font-weight: 600;
}

.countdown-numbers {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.countdown-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(26, 26, 26, 0.7);
    padding: 20px 30px;
    border: 2px solid var(--gold);
    border-radius: 4px;
    min-width: 120px;
}

.countdown-num {
    font-family: var(--font-title);
    font-size: 56px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.countdown-unit {
    font-size: 14px;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.7);
    margin-top: 8px;
}

.countdown-sep {
    font-size: 48px;
    color: var(--gold);
    font-weight: 700;
}

/* CTA BUTTONS */
.hero-cta {
    display: flex;
    gap: 24px;
    justify-content: center;
}

.cta-btn {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 3px;
    padding: 18px 40px;
    text-decoration: none;
    border: 2px solid var(--gold);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-primary {
    background: var(--gold);
    color: var(--black);
}

.cta-primary:hover {
    background: var(--saffron);
    border-color: var(--saffron);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(255, 102, 0, 0.5);
}

.cta-ghost {
    background: transparent;
    color: var(--gold);
}

.cta-ghost:hover {
    background: var(--gold);
    color: var(--black);
}

/* SCROLL INDICATOR */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-size: 12px;
    letter-spacing: 3px;
    z-index: 3;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    margin: 12px auto 0;
    animation: scrollPulse 2s ease-in-out infinite;
}

/* PROPHECY SECTION */
.prophecy {
    padding: 120px 40px;
    background: linear-gradient(180deg, var(--black) 0%, var(--gray) 100%);
    position: relative;
}

.prophecy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

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

.section-title {
    font-family: var(--font-title);
    font-size: 72px;
    font-weight: 900;
    letter-spacing: 12px;
    color: var(--gold);
    margin-bottom: 60px;
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.5);
}

.prophecy-verse {
    font-size: 32px;
    line-height: 1.8;
    color: var(--saffron);
    font-style: italic;
    font-weight: 300;
    margin-bottom: 60px;
    padding: 40px;
    border-left: 4px solid var(--gold);
    background: rgba(212, 175, 55, 0.05);
}

.prophecy-details p {
    font-size: 20px;
    line-height: 1.9;
    color: rgba(255,255,255,0.8);
    margin-bottom: 24px;
}

.prophecy-details strong {
    color: var(--gold);
    font-weight: 700;
}

/* STYLES SECTION */
.styles-section {
    padding: 120px 40px;
    background: var(--black);
}

.section-subtitle {
    text-align: center;
    font-size: 20px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 80px;
    letter-spacing: 2px;
}

.styles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.style-card {
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s ease;
}

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

.style-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(10,10,10,0.95), transparent);
    transition: opacity 0.4s ease;
}

.style-card:hover::before {
    opacity: 0.7;
}

.style-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    z-index: 2;
}

.style-name {
    font-family: var(--font-title);
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.style-origin {
    font-size: 14px;
    color: var(--saffron);
    margin-bottom: 12px;
    letter-spacing: 2px;
    font-weight: 600;
}

.style-desc {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
}

/* CALL SECTION */
.call-section {
    padding: 120px 40px;
    background: linear-gradient(135deg, var(--blood-red) 0%, var(--black) 100%);
    position: relative;
}

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

.call-text {
    font-size: 28px;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
    margin-bottom: 80px;
}

.call-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 80px;
}

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

.stat-num {
    display: block;
    font-family: var(--font-title);
    font-size: 48px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 12px;
}

.stat-label {
    font-size: 14px;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.7);
}

/* QUICK REGISTER */
.quick-register {
    background: rgba(26, 26, 26, 0.8);
    padding: 60px 40px;
    border: 2px solid var(--gold);
    border-radius: 4px;
}

.quick-register h3 {
    font-family: var(--font-title);
    font-size: 36px;
    color: var(--gold);
    margin-bottom: 40px;
    letter-spacing: 4px;
}

.register-form {
    display: grid;
    gap: 20px;
}

.register-form input,
.register-form select {
    padding: 18px 24px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 16px;
    transition: all 0.3s ease;
}

.register-form input:focus,
.register-form select:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255,255,255,0.1);
}

.submit-btn {
    padding: 20px 40px;
    background: var(--gold);
    color: var(--black);
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 3px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: var(--saffron);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(255, 102, 0, 0.5);
}

.register-note {
    margin-top: 20px;
    font-size: 14px;
    color: var(--saffron);
    font-weight: 600;
}

/* FOOTER */
.footer {
    background: var(--black);
    padding: 60px 40px 24px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-brand svg {
    color: var(--gold);
}

.footer-brand h3 {
    font-family: var(--font-title);
    font-size: 32px;
    color: var(--gold);
}

.footer-brand p {
    font-size: 20px;
    color: var(--saffron);
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-social {
    display: flex;
    gap: 24px;
}

.footer-social a {
    color: var(--gold);
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.footer-social a:hover {
    transform: scale(1.2);
}

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

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

/* ANIMATIONS */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes glow {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 40px rgba(212, 175, 55, 0.8));
    }
}

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

@keyframes titleGlow {
    0%, 100% {
        text-shadow: 0 0 60px rgba(212, 175, 55, 0.8), 0 0 100px rgba(212, 175, 55, 0.4);
    }
    50% {
        text-shadow: 0 0 80px rgba(212, 175, 55, 1), 0 0 120px rgba(212, 175, 55, 0.6);
    }
}

@keyframes scrollPulse {
    0%, 100% {
        opacity: 0.3;
        transform: translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateY(10px);
    }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .styles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .title-main {
        font-size: 80px;
        letter-spacing: 16px;
    }
}

@media (max-width: 768px) {
    .entrance-title {
        font-size: 64px;
        letter-spacing: 12px;
    }
    
    .title-main {
        font-size: 56px;
        letter-spacing: 8px;
    }
    
    .title-sanskrit {
        font-size: 36px;
    }
    
    .countdown-numbers {
        gap: 8px;
    }
    
    .countdown-block {
        padding: 16px 20px;
        min-width: 80px;
    }
    
    .countdown-num {
        font-size: 36px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 48px;
    }
    
    .styles-grid {
        grid-template-columns: 1fr;
    }
    
    .call-stats {
        flex-direction: column;
        gap: 32px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }
}
