/* style.css – FULL, RED ACCENT, ALL EFFECTS RESTORED */

/* ────────────────────────────────────────
   1. COLOR PALETTE
   ──────────────────────────────────────── */
:root {
    --bg: #000000;
    --text: #ffffff;
    --accent: #ff0040;          /* RED – nav, footer, CTA, glow */
    --accent-hover: #ff3366;
    --danger: #dc3545;
}

/* ────────────────────────────────────────
   2. NAVBAR – RED GLASSMORPHISM
   ──────────────────────────────────────── */
.navbar {
    background: linear-gradient(180deg, rgba(10,10,10,0.95) 0%, rgba(26,26,26,0.85) 100%) !important;
    backdrop-filter: blur(10px);
    border-bottom: 4px solid var(--accent) !important;
    box-shadow: 0 4px 20px rgba(255,0,64,0.2);
    transition: all 0.3s ease;
}
.navbar:hover {
    box-shadow: 0 6px 30px rgba(255,0,64,0.4);
}
.navbar .navbar-brand {
    color: var(--accent) !important;
    text-shadow: 0 0 10px var(--accent);
}
.navbar .nav-link {
    position: relative;
    color: var(--text) !important;
    text-shadow: 0 0 5px rgba(255,0,64,0.3);
    transition: color 0.2s ease;
}
.navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 50%;
    width: 0; height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
    transform: translateX(-50%);
}
.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
    width: 80%;
}
.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--accent) !important;
    text-shadow: 0 0 15px rgba(255,0,64,0.6);
}
.navbar-toggler {
    padding: 0.25rem 0.5rem;
    border-color: var(--accent);
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23ff0040' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ────────────────────────────────────────
   3. HERO & GLITCH EFFECTS – FULLY RESTORED
   ──────────────────────────────────────── */
.glitch-overlay {
    background: linear-gradient(90deg, transparent 0%, rgba(255,0,64,0.15) 50%, transparent 100%);
    animation: glitch 2s infinite linear alternate-reverse;
}
@keyframes glitch {
    0%   { transform: translate(0); }
    20%  { transform: translate(-2px, 2px); }
    40%  { transform: translate(-2px, -2px); }
    60%  { transform: translate(2px, 2px); }
    80%  { transform: translate(2px, -2px); }
    100% { transform: translate(0); }
}
.glitch, .glitch-text, .glitch-hover {
    position: relative;
}
.glitch::before, .glitch-text::before, .glitch-hover::before {
    content: attr(data-text);
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    color: var(--accent);
    opacity: 0.8;
    clip: rect(0, 900px, 0, 0);
    animation: glitch-anim 2s infinite linear alternate-reverse;
}
@keyframes glitch-anim {
    0%,100% { clip: rect(45px,9999px,52px,0); transform: skew(0.6deg); }
    5%      { clip: rect(13px,9999px,78px,0); transform: skew(0.4deg); }
    10%     { clip: rect(30px,9999px,21px,0); transform: skew(0.8deg); }
    15%     { clip: rect(80px,9999px,64px,0); transform: skew(0.2deg); }
    20%     { clip: rect(9px,9999px,63px,0);  transform: skew(1deg); }
}

/* ────────────────────────────────────────
   4. NEON CARDS – FULLY RESTORED
   ──────────────────────────────────────── */
.neon-card {
    background: rgba(26,26,26,0.7) !important;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,0,64,0.3) !important;
    transition: all 0.4s ease;
}
.neon-card:hover {
    background: rgba(40,40,40,0.8) !important;
    box-shadow: 0 0 35px rgba(255,0,64,0.4), 0 0 50px rgba(255,0,64,0.2);
    transform: translateY(-8px);
    border-color: var(--accent) !important;
}

/* ────────────────────────────────────────
   5. CTA BUTTON – RED
   ──────────────────────────────────────── */
.btn-accent {
    background-color: var(--accent);
    color: #ffffff !important;
    font-weight: 700;
    border: none;
    box-shadow: 0 0 20px rgba(255,0,64,0.5);
    transition: all 0.3s ease;
}
.btn-accent:hover {
    background-color: var(--accent-hover);
    box-shadow: 0 0 40px rgba(255,0,64,0.8), 0 0 60px rgba(255,0,64,0.4);
    transform: scale(1.05);
}

/* ────────────────────────────────────────
   6. FOOTER – RED, VISIBLE, GLOW FIXED
   ──────────────────────────────────────── */
/* style.css - FOOTER SECTION ONLY (COPY-PASTE THIS) */
footer {
    flex-shrink: 0;
    background: #000000 !important;
    border-top: 4px solid #ff0040 !important;
    color: #ffffff !important;
    text-shadow:
            0 0 12px #ff0040,
            0 0 24px #ff0040,
            0 2px 4px rgba(0,0,0,0.9);
    font-weight: 600;
    letter-spacing: 0.8px;
    padding: 1.75rem 1rem;
    font-size: 0.95rem;
    backdrop-filter: blur(2px);
}

/* ────────────────────────────────────────
   7. LAYOUT – STICKY FOOTER
   ──────────────────────────────────────── */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--bg);
    color: var(--text);
}
main {
    flex: 1;
}

/* ────────────────────────────────────────
   8. MISC – SHADOW GLOW
   ──────────────────────────────────────── */
.shadow-glow {
    box-shadow: 0 0 20px rgba(255,0,64,0.5);
    transition: all 0.3s ease;
}
.shadow-glow:hover {
    box-shadow: 0 0 40px rgba(255,0,64,0.8), 0 0 60px rgba(255,0,64,0.4);
    transform: scale(1.05);
}