:root {
    --primary-color: #ffffff;
    --accent-color: #e63946; /* A sharp automotive red */
    --text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    width: 100%;
    font-family: 'Outfit', sans-serif;
    background-color: #000;
    overflow: hidden;
    color: var(--primary-color);
}

.hero {
    position: relative;
    height: 100vh;
    width: 100vw;
    background: url('BACKGROUND.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 5vh;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 800px;
    padding: 0 20px;
}

.logo-container {
    margin-bottom: 2rem;
    width: 100%;
    display: flex;
    justify-content: center;
}

#logo {
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(255,255,255,0.2));
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#logo:hover {
    transform: scale(1.05);
}

.info {
    backdrop-filter: blur(5px);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 2rem 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.coming-soon {
    font-size: clamp(2rem, 8vw, 4rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5rem;
    margin-bottom: 0.5rem;
    text-shadow: var(--text-shadow);
    color: #fff;
}

.tagline {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 0.2rem;
    opacity: 0.8;
    text-transform: uppercase;
}

/* Animations */
.fade-in-down {
    animation: fadeInDown 1.2s ease-out both;
}

.fade-in-up {
    animation: fadeInUp 1.2s ease-out both;
}

.fade-in-up-delay {
    animation: fadeInUp 1.2s ease-out 0.3s both;
}

.fade-in {
    animation: fadeIn 2s ease-out 0.6s both;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Animated Dots */
.dot-1, .dot-2, .dot-3 {
    animation: blink 1.5s infinite;
}
.dot-2 { animation-delay: 0.2s; }
.dot-3 { animation-delay: 0.4s; }

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.footer {
    position: absolute;
    bottom: 2rem;
    z-index: 2;
    font-size: 0.8rem;
    opacity: 0.5;
    letter-spacing: 1px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    #logo {
        max-width: 200px;
    }
    
    .info {
        padding: 1.5rem 2rem;
        width: 90%;
    }
    
    .coming-soon {
        letter-spacing: 0.2rem;
    }
    
    .tagline {
        font-size: 0.9rem;
    }
}
