/* -------------------------------------------------------------
 * Custom Styles & Glassmorphism Utilities
 * Application: Talek Community Run & Impact Festival 2026
 * Hostinger Production Build (Tailwind CDN + Custom CSS)
 * ------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Cinzel:wght@400;600;700;800;900&display=swap');

html {
    scroll-behavior: smooth;
}

body {
    background-color: #0B0B0B;
    color: #FFFFFF;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    antialiased: true;
}

/* Font Editorial Class */
.font-editorial {
    font-family: 'Cinzel', serif;
}

/* Glassmorphism Utilities */
.glass {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(200, 164, 93, 0.12);
}

.glass-strong {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(200, 164, 93, 0.18);
}

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

/* Text Gradients */
.text-gold-gradient {
    background: linear-gradient(135deg, #C8A45D 0%, #E8D5A3 50%, #C8A45D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-white-gradient {
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.85) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Gold Shimmer Effect */
@keyframes gold-shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(400%); }
}

.gold-shimmer {
    position: relative;
    overflow: hidden;
}

.gold-shimmer::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(200, 164, 93, 0.15) 50%,
        transparent 100%
    );
    animation: gold-shimmer 4s ease-in-out infinite;
}

/* Decorative Lines */
.gold-line {
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, #C8A45D, transparent);
}

.gold-line-wide {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, #C8A45D, rgba(200, 164, 93, 0.3), transparent);
}

/* Button Glow Effect */
.btn-gold-glow {
    box-shadow: 0 0 40px rgba(200, 164, 93, 0.25),
                0 0 80px rgba(200, 164, 93, 0.1);
    transition: all 0.4s ease;
}

.btn-gold-glow:hover {
    box-shadow: 0 0 60px rgba(200, 164, 93, 0.35),
                0 0 120px rgba(200, 164, 93, 0.15);
}

/* Scroll Animations */
@keyframes animate-scroll-down {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

.animate-scroll-down {
    animation: animate-scroll-down 2s ease-in-out infinite;
}

/* Footer Animations */
@keyframes footer-orbit {
    from { transform: rotate(0deg) translateX(260px) rotate(0deg); }
    to   { transform: rotate(360deg) translateX(260px) rotate(-360deg); }
}

.footer-orbit-dot {
    animation: footer-orbit 18s linear infinite;
}

@keyframes footer-shimmer {
    0%   { transform: translateX(-100%); }
    100% { transform: translateX(360%);  }
}

.footer-shimmer-bar {
    animation: footer-shimmer 3s ease-in-out infinite;
}

/* Sponsor Marquee */
@keyframes sponsor-marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.sponsor-marquee-track {
    animation: sponsor-marquee 35s linear infinite;
    will-change: transform;
}

.sponsor-marquee-track:hover {
    animation-play-state: paused;
}

.talek-verification-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(11, 11, 11, 0.78);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.talek-verification-modal {
    width: min(92vw, 520px);
    overflow: hidden;
    color: #fff;
    background: linear-gradient(180deg, rgba(24, 24, 24, 0.98), rgba(17, 17, 17, 0.98));
    border: 1px solid rgba(200, 164, 93, 0.3);
    border-radius: 28px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.talek-verification-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 24px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.talek-verification-icon,
.talek-choice-icon {
    display: grid;
    place-items: center;
    color: #C8A45D;
    background: rgba(200, 164, 93, 0.12);
}

.talek-verification-icon {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    border: 1px solid rgba(200, 164, 93, 0.3);
    border-radius: 16px;
    font-size: 24px;
}

.talek-verification-header h3 {
    margin: 0;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 800;
}

.talek-verification-header p {
    margin: 6px 0 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.8rem;
}

.talek-verification-body {
    padding: 22px 24px 10px;
}

.talek-verify-prompt {
    display: block;
    margin-bottom: 16px;
    color: #f3f4f6;
    font-size: 0.96rem;
}

.talek-choice-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 16px;
}

.talek-choice-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 18px 12px;
    color: #fff;
    text-transform: capitalize;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
}

.talek-choice-item:hover {
    background: rgba(200, 164, 93, 0.12);
    border-color: rgba(200, 164, 93, 0.45);
}

.talek-choice-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
}

.talek-slider {
    width: 100%;
    margin: 22px 0 8px;
    accent-color: #C8A45D;
}

.talek-verification-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 16px 24px 22px;
}

.talek-primary-btn,
.talek-secondary-btn {
    padding: 11px 20px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 999px;
}

.talek-primary-btn {
    color: #111;
    background: linear-gradient(135deg, #C8A45D, #D4B06A);
    border: 0;
}

.talek-secondary-btn {
    color: #f3f4f6;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.talek-error-box {
    padding: 14px 16px;
    color: #fca5a5;
    font-size: 0.9rem;
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.4);
    border-radius: 14px;
}

@media (max-width: 640px) {
    .talek-choice-grid {
        grid-template-columns: 1fr;
    }
}

