/* Detroit Sportbikes - Coming Soon Page */
/* Gothic Industrial Motorcycle Theme */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Detroit Industrial Color Palette */
    --primary-dark: #000000;
    --secondary-dark: #0a0a0a;
    --accent-red: #A6192E; /* Detroit Tigers red - more muted */
    --accent-gold: #D4AF37; /* Classic gold, less neon */
    --metallic-gray: #2C2C2C;
    --text-light: #ffffff;
    --text-muted: #cccccc;
    --industrial-steel: #4A4A4A;
    --detroit-blue: #00274C; /* Detroit Lions navy blue */
    --steel-blue: #4682B4; /* Steel blue for industrial feel */
    --detroit-orange: #FA4616; /* Tigers orange accent */
    --shadow-black: rgba(0, 0, 0, 0.8);
    --glow-red: rgba(166, 25, 46, 0.4); /* Much more muted red glow */
    --glow-blue: rgba(0, 39, 76, 0.5); /* Detroit navy glow */
    --glow-steel: rgba(70, 130, 180, 0.4); /* Steel blue glow */
    --glow-gold: rgba(212, 175, 55, 0.5);
}

body {
    font-family: 'Cinzel', 'Arial Black', 'Impact', 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--detroit-blue) 30%, var(--industrial-steel) 60%, var(--metallic-gray) 100%);
    background-size: 400% 400%;
    animation: gradientShift 12s ease infinite;
    color: var(--text-light);
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Header Styles */
.header {
    text-align: center;
    padding: 50px 0 50px;
    position: relative;
}

.logo-section {
    animation: fadeInUp 1.5s ease-out;
}

.logo {
    display: inline-block;
    position: relative;
    margin-bottom: 10px;
}

.logo-text {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.5rem, 10vw, 5rem);
    font-weight: 900;
    letter-spacing: 5px;
    background: linear-gradient(45deg, var(--accent-red), var(--steel-blue), var(--accent-gold));
    background-size: 300% 300%;
    animation: textGlow 4s ease-in-out infinite alternate, gradientShift 6s ease infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px var(--glow-red), 0 0 50px var(--glow-blue), 0 0 70px var(--glow-steel);
    display: block;
    line-height: 1;
    filter: drop-shadow(0 0 15px var(--glow-blue));
}

.logo-accent {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.5rem, 6vw, 3rem);
    font-weight: 600;
    color: var(--accent-gold);
    text-shadow: 2px 2px 4px var(--shadow-black);
    letter-spacing: 2px;
}

.tagline {
    font-size: clamp(1.2rem, 4vw, 1.8rem);
    color: var(--accent-gold);
    font-family: 'Cinzel', serif;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 15px;
    text-shadow: 0 0 15px var(--glow-gold);
    animation: textGlow 3s ease-in-out infinite alternate;
}

/* Main Content */
.main-content {
    text-align: center;
    padding: 40px 0;
}

.coming-soon {
    margin-bottom: 80px;
    animation: fadeInUp 2s ease-out 0.5s both;
}

.title {
    font-family: 'Cinzel', serif;
    font-size: clamp(4rem, 15vw, 10rem);
    font-weight: 900;
    letter-spacing: 8px;
    background: linear-gradient(45deg, var(--accent-red), var(--detroit-blue), var(--accent-gold));
    background-size: 300% 300%;
    animation: gradientShift 5s ease infinite, textGlow 3s ease-in-out infinite alternate;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px var(--glow-red), 0 0 60px var(--glow-blue), 0 0 80px var(--glow-steel);
    margin-bottom: 30px;
    filter: drop-shadow(0 0 20px var(--glow-blue));
    transform: perspective(1000px) rotateX(5deg);
    transform-origin: center;
}

.subtitle {
    font-size: clamp(1.5rem, 5vw, 2rem);
    color: var(--text-light);
    font-family: 'Cinzel', serif;
    font-weight: 600;
    letter-spacing: 2px;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.4;
    text-transform: uppercase;
    text-shadow: 0 0 15px var(--glow-steel);
    animation: textGlow 3.5s ease-in-out infinite alternate;
}

.dsb-acronym {
    font-family: 'Cinzel', serif;
    font-size: clamp(4rem, 12vw, 8rem);
    font-weight: 900;
    letter-spacing: 6px;
    background: linear-gradient(45deg, var(--accent-red), var(--detroit-blue), var(--steel-blue), var(--accent-gold));
    background-size: 400% 400%;
    animation: gradientShift 4s ease infinite, dsbGlow 3s ease-in-out infinite alternate;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px var(--glow-red), 0 0 60px var(--glow-blue), 0 0 80px var(--glow-steel);
    margin: 15px auto 0;
    filter: drop-shadow(0 0 25px var(--glow-blue));
    text-align: center;
    transform: perspective(1000px) rotateX(2deg);
    transform-origin: center;
}

/* Features Grid */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto 60px;
}

.feature {
    background: linear-gradient(145deg, var(--secondary-dark), var(--metallic-gray), var(--primary-dark));
    border: 2px solid var(--industrial-steel);
    border-radius: 20px;
    padding: 40px 25px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 12px 40px var(--shadow-black), 0 0 60px var(--glow-red);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transform: translateY(0);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.feature-1 { animation-delay: 0.2s; }
.feature-2 { animation-delay: 0.4s; }
.feature-3 { animation-delay: 0.6s; }
.feature-4 { animation-delay: 0.8s; }
.feature-5 { animation-delay: 1.0s; }
.feature-6 { animation-delay: 1.2s; }

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--glow-red), transparent);
    transition: left 0.5s;
}

.feature:hover::before {
    left: 100%;
}

.feature:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 50px var(--shadow-black), 0 0 60px var(--glow-red), 0 0 80px var(--glow-blue);
    border-color: var(--accent-red);
    opacity: 1;
    backdrop-filter: blur(5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.feature h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    color: var(--accent-gold);
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 1px;
}

.feature p {
    color: var(--text-muted);
    line-height: 1.6;
    font-family: 'Arial', sans-serif;
    font-weight: 400;
}

/* Newsletter Section */
.newsletter {
    background: linear-gradient(145deg, var(--metallic-gray), var(--secondary-dark));
    border: 2px solid var(--industrial-steel);
    border-radius: 20px;
    padding: 50px 30px;
    margin: 60px auto;
    max-width: 600px;
    box-shadow: 0 15px 40px var(--shadow-black);
    animation: fadeInUp 2.5s ease-out 1s both;
}

.newsletter h2 {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    color: var(--accent-gold);
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: 2px;
}

.newsletter p {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-family: 'Arial', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Form Styles */
.signup-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 400px;
    margin: 0 auto;
}

.signup-form input {
    padding: 15px 20px;
    border: 2px solid var(--industrial-steel);
    border-radius: 10px;
    background: var(--secondary-dark);
    color: var(--text-light);
    font-size: 1rem;
    font-family: 'Arial', sans-serif;
    transition: all 0.3s ease;
}

.signup-form input:focus {
    outline: none;
    border-color: var(--accent-red);
    box-shadow: 0 0 20px var(--glow-red);
}

.signup-form button {
    padding: 15px 30px;
    background: linear-gradient(45deg, var(--accent-red), var(--neon-red));
    border: none;
    border-radius: 10px;
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Arial Black', Arial, sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px var(--shadow-black);
}

.signup-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--glow-red);
    background: linear-gradient(45deg, var(--neon-red), var(--accent-red));
}

/* Footer */
.footer {
    border-top: 1px solid var(--industrial-steel);
    padding: 40px 0 20px;
    margin-top: 60px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    color: var(--text-muted);
    font-family: 'Arial', sans-serif;
    font-size: 0.9rem;
}

.footer-links a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--steel-blue);
    text-decoration: underline;
}

.footer p {
    color: var(--text-muted);
    font-family: 'Arial', sans-serif;
    font-size: 0.9rem;
}


/* Background Elements */
.background-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    background: var(--glow-steel);
    border-radius: 50%;
    opacity: 0.08;
    animation: float 25s ease-in-out infinite;
}

.particle-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.particle-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 5s;
}

.particle-3 {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 5%;
    animation-delay: 10s;
}

.particle-4 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: 15s;
}

.particle-5 {
    width: 120px;
    height: 120px;
    bottom: 10%;
    right: 30%;
    animation-delay: 8s;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        text-shadow: 0 0 50px var(--glow-red);
    }
    50% {
        text-shadow: 0 0 80px var(--glow-red), 0 0 100px var(--glow-red);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.1;
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
        opacity: 0.2;
    }
    50% {
        transform: translateY(-40px) rotate(180deg);
        opacity: 0.15;
    }
    75% {
        transform: translateY(-20px) rotate(270deg);
        opacity: 0.2;
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes textGlow {
    0% {
        filter: brightness(1) drop-shadow(0 0 15px var(--glow-blue));
        text-shadow: 0 0 30px var(--glow-red), 0 0 50px var(--glow-blue), 0 0 70px var(--glow-steel);
    }
    100% {
        filter: brightness(1.1) drop-shadow(0 0 25px var(--glow-steel));
        text-shadow: 0 0 40px var(--glow-steel), 0 0 60px var(--glow-gold), 0 0 80px var(--glow-blue);
    }
}

@keyframes featurePulse {
    0% {
        box-shadow: 0 20px 50px var(--shadow-black), 0 0 60px var(--glow-red), 0 0 80px var(--glow-blue);
    }
    100% {
        box-shadow: 0 25px 65px var(--shadow-black), 0 0 80px var(--glow-blue), 0 0 100px var(--glow-steel);
    }
}

@keyframes dsbGlow {
    0% {
        filter: brightness(1) drop-shadow(0 0 20px var(--glow-blue));
        text-shadow: 0 0 50px var(--glow-red), 0 0 80px var(--glow-blue), 0 0 110px var(--glow-steel);
    }
    100% {
        filter: brightness(1.15) drop-shadow(0 0 40px var(--glow-steel));
        text-shadow: 0 0 70px var(--glow-steel), 0 0 100px var(--glow-gold), 0 0 130px var(--glow-blue);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .header {
        padding: 35px 0 35px;
    }

    .features {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .signup-form {
        flex-direction: column;
    }

    .signup-form input,
    .signup-form button {
        width: 100%;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        order: 2;
        margin: 10px 0;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 2.5rem;
    }

    .logo-accent {
        font-size: 2rem;
    }

    .title {
        font-size: 4rem;
        letter-spacing: 2px;
    }

    .newsletter {
        padding: 30px 20px;
    }

    .feature {
        padding: 20px 15px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --accent-red: #FF0000;
        --accent-gold: #FFFF00;
        --text-light: #FFFFFF;
        --text-muted: #CCCCCC;
    }
}
