/*
Theme Name: RiderInRed
Theme URI: https://www.riderinred.com
Version: 1.0
License: Not for distribution.
*/

/* ===== NEON PRESS - CYBERPUNK STYLESHEET ===== */

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    font-size: 18px;
}

body {
    font-family: 'Exo 2', sans-serif;
    background: #000000;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

/* ===== FONTS ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

p {
    font-family: 'Exo 2', sans-serif;
    font-weight: 300;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 0, 60, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 15px 0;
    background: rgba(0, 0, 0, 0.95);
    border-bottom: 1px solid rgba(255, 0, 60, 0.5);
    box-shadow: 0 0 30px rgba(255, 0, 60, 0.2);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    font-weight: 900;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.nav-logo img, .footer-logo img {
    height: 50px;
    width: auto;
}

.logo-text {
    color: #ffffff;
}

.logo-accent {
    color: #ff003c;
    margin-left: 2px;
    text-shadow: 0 0 10px rgba(255, 0, 60, 0.7);
}

.main-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

li.menu-item a {
    color: #ffffff;
    text-decoration: none;
}

li.menu-item {
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    position: relative;
    transition: all 0.3s ease;
    padding: 5px 0;
}

li.menu-item:hover {
    color: #ff003c;
    text-shadow: 0 0 10px rgba(255, 0, 60, 0.8);
}

li.menu-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff003c;
    transition: width 0.3s ease;
    box-shadow: 0 0 5px rgba(255, 0, 60, 0.5);
}

li.menu-item:hover::after {
    width: 100%;
}

li.menu-item.active::after {
    width: 100%;
    box-shadow: 0 0 10px rgba(255, 0, 60, 0.8);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: #ffffff;
    transition: all 0.3s ease;
}

/* ===== FOOTER ===== */
.footer {
    background: #000000;
    position: relative;
    padding: 40px 0 20px;
    border-top: 1px solid rgba(255, 0, 60, 0.3);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(180deg,
            rgba(255, 0, 60, 0.05) 0%,
            rgba(0, 0, 0, 1) 100%);
    z-index: 1;
}

.footer-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.footer-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-text {
    font-family: 'Rajdhani', sans-serif;
    font-size: 12px;
    color: #ffffff;
    opacity: 0.5;
    letter-spacing: 3px;
}

.footer-tagline {
    color: #ff003c !important;
    opacity: 0.7 !important;
    margin-top: 5px;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 0, 60, 0.5),
        transparent);
    margin: 20px 0;
}

.footer-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 0, 60, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 0, 60, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
    z-index: 1;
    pointer-events: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .main-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 300px;
        background: #000000;
        flex-direction: column;
        align-items: center;
        padding-top: 80px;
        gap: 30px;
        transition: right 0.4s ease;
        border-left: 1px solid rgba(255, 0, 60, 0.3);
    }

    .main-menu.active {
        right: 0;
    }

    .nav-toggle {
        display: flex;
    }
}

/* ===== ANIMATION HELPERS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

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

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ===== NEON TEXT EFFECTS ===== */
.neon-text {
    color: #ffffff;
    text-shadow:
        0 0 5px rgba(255, 255, 255, 0.8),
        0 0 10px rgba(255, 255, 255, 0.5),
        0 0 20px rgba(255, 0, 60, 0.7),
        0 0 40px rgba(255, 0, 60, 0.4),
        0 0 80px rgba(255, 0, 60, 0.2);
}

.neon-red {
    color: #ff0000;
    text-shadow:
        0 0 5px rgba(255, 0, 0, 0.8),
        0 0 10px rgba(255, 0, 0, 0.5),
        0 0 20px rgba(255, 0, 0, 0.3),
        0 0 40px rgba(255, 0, 0, 0.2);
}
