/* Premium Typography & Variable Architecture */
@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@700;900&family=Plus+Jakarta+Sans:wght@300;400;500;700&display=swap');

:root {
    --bg-dark: #0B040B;
    --surface-dark: #160D16;
    --surface-glass: rgba(22, 13, 22, 0.7);
    --gold-gradient: linear-gradient(135deg, #BF953F 0%, #FCF6BA 25%, #B38728 50%, #FBF5B7 75%, #AA771C 100%);
    --insta-gradient: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    --yt-red: #FF0000;
    --fb-blue: #1877F2;
    --text-primary: #F7F4F7;
    --text-muted: #A39AA3;
    --font-display: 'Cinzel Decorative', serif;
    --font-sans: 'Plus Jakarta Sans', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Luxury Announcement Bar */
.top-announcement {
    background: var(--gold-gradient);
    color: #000;
    text-align: center;
    padding: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 2px 20px rgba(170, 119, 28, 0.3);
}

/* Glassmorphism Header */
.main-header {
    background: var(--surface-glass);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    border-bottom: 1px solid rgba(253, 246, 186, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.om-emblem {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.5rem;
    font-family: var(--font-display);
    font-weight: 900;
}

.branding-text h1 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 1px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.branding-text span {
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: var(--text-muted);
    text-transform: uppercase;
    display: block;
}

.navbar a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.95rem;
    margin-left: 25px;
    padding: 8px 16px;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar a:hover, .navbar a.active {
    background: rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 0 0 1px rgba(253, 246, 186, 0.3);
    color: #FCF6BA;
}

/* Immersive Hero Engine */
.hero-container {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%; left: 50%;
    min-width: 100%; min-height: 100%;
    width: auto; height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 0.4;
}

.video-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, transparent 40%, var(--bg-dark));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 20px;
    text-align: center;
}

.hero-content h2 {
    font-family: var(--font-display);
    font-size: 4rem;
    margin-bottom: 15px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 20px rgba(0,0,0,0.8));
}

.tagline {
    font-size: 1.25rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-bottom: 40px;
}

/* Futuristic Countdown Timer */
.countdown-clock {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 45px;
}

.time-block {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 16px;
    min-width: 110px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
}

.time-block:hover {
    transform: translateY(-5px);
    border-color: rgba(252, 246, 186, 0.3);
}

.time-block span {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.time-block p {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* Call to Action Premium Buttons */
.cta-btn-gold {
    display: inline-block;
    padding: 16px 40px;
    background: var(--gold-gradient);
    color: #000;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    box-shadow: 0 4px 30px rgba(170, 119, 28, 0.4);
    transition: all 0.3s ease;
}

.cta-btn-gold:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 40px rgba(252, 246, 186, 0.6);
}

/* Sections & Grid Framework */
.section-padded {
    padding: 100px 5%;
}

.content-narrow {
    max-width: 900px;
    margin: 0 auto;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.8rem;
    text-align: center;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 60px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

/* Glass Presentation Cards */
.interactive-card {
    background: var(--surface-dark);
    padding: 45px 35px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.interactive-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--gold-gradient);
    opacity: 0;
    z-index: 1;
    transition: opacity 0.4s ease;
}

.interactive-card:hover {
    transform: translateY(-10px);
    border-color: rgba(252, 246, 186, 0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.interactive-card * {
    position: relative;
    z-index: 2;
}

.icon-gold {
    font-size: 3rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 25px;
}

.interactive-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.interactive-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Social Media Hub Experience */
.social-hub-banner {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 5%;
    text-align: center;
    border-radius: 32px;
    margin: 40px 5%;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.social-promo-icons {
    font-size: 3.5rem;
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 25px;
}

.social-promo-icons .fa-instagram { color: #E1306C; }
.social-promo-icons .fa-youtube { color: var(--yt-red); }
.social-promo-icons .fa-facebook { color: var(--fb-blue); }

.social-hub-banner h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.social-hub-banner p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
}

.banner-action-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.social-btn:hover {
    transform: translateY(-3px);
}

.btn-insta { background: var(--insta-gradient); box-shadow: 0 4px 20px rgba(220, 39, 67, 0.3); }
.btn-youtube { background: var(--yt-red); box-shadow: 0 4px 20px rgba(255, 0, 0, 0.3); }
.btn-facebook { background: var(--fb-blue); box-shadow: 0 4px 20px rgba(24, 119, 242, 0.3); }

/* Premium Gallery System */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 25px;
}

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    height: 300px;
    position: relative;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.img-card {
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.img-card:hover {
    transform: scale(1.02);
}

.media-overlay {
    position: absolute;
    bottom: 0; left: 0; width: 100%;
    background: linear-gradient(transparent, rgba(11, 4, 11, 0.95));
    color: #fff;
    padding: 30px;
}

.media-overlay h4 {
    font-size: 1.25rem;
    margin-bottom: 5px;
    color: #FCF6BA;
}

.media-overlay p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Luxury Form Framework */
.interactive-form-box {
    background: var(--surface-dark);
    padding: 50px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.kumbh-form .form-group {
    margin-bottom: 25px;
}

.kumbh-form label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.kumbh-form input, .kumbh-form select {
    width: 100%;
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.kumbh-form input:focus, .kumbh-form select:focus {
    outline: none;
    border-color: #BF953F;
}

.submit-btn-gold {
    width: 100%;
    padding: 18px;
    background: var(--gold-gradient);
    color: #000;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: box-shadow 0.3s;
}

.submit-btn-gold:hover {
    box-shadow: 0 0 30px rgba(252, 246, 186, 0.4);
}

/* Global Footer Alignment */
.main-footer {
    background: #060206;
    color: var(--text-muted);
    padding: 80px 5% 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
}

.footer-grid h3 {
    color: #FCF6BA;
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-links { list-style: none; }
.footer-links a { color: var(--text-muted); text-decoration: none; line-height: 2.2; transition: color 0.3s; }
.footer-links a:hover { color: #FCF6BA; }

.footer-social-tray a {
    color: var(--text-primary);
    font-size: 1.6rem;
    margin-right: 20px;
    transition: transform 0.3s, color 0.3s;
    display: inline-block;
}
.footer-social-tray a:hover {
    transform: translateY(-3px);
}
.footer-social-tray .fa-instagram:hover { color: #E1306C; }
.footer-social-tray .fa-youtube:hover { color: var(--yt-red); }
.footer-social-tray .fa-facebook:hover { color: var(--fb-blue); }

.footer-bottom {
    text-align: center;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.03);
    font-size: 0.85rem;
}

.animate-fade { animation: fadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}