/* 
  Luft Rebels Workshop - Styles
  Cinematic dark workshop aesthetic with heritage Porsche theme
*/

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

body {
    font-family: 'Orbitron', sans-serif;
    overflow: hidden;
    background-color: #1a1a1a;
}

/* Hero Container */
.hero-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

/* Background Image */
.hero-background {
    position: absolute;
    inset: 0;
    background-image: url('images/hero-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

/* Dark Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 5;
}

/* Dust Particles Container */
.dust-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 10;
}

.dust-particle {
    position: absolute;
    border-radius: 50%;
    background-color: #ffffff;
    filter: blur(2px);
}

/* Content */
.hero-content {
    position: relative;
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 1rem;
    text-align: center;
}

/* Title */
.hero-title {
    font-weight: 900;
    color: #D4AF37;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-size: clamp(2.5rem, 10vw, 8rem);
}

/* Tagline */
.hero-tagline {
    font-weight: 500;
    color: #d1d5db;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 3rem;
    font-size: clamp(0.875rem, 2.5vw, 1.5rem);
}

/* Instagram Button */
.hero-button {
    display: inline-block;
    background-color: #D4AF37;
    color: #000000;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 1rem 2.5rem;
    border-radius: 0.375rem;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.hero-button:hover {
    background-color: #c4a137;
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
}

.hero-button:active {
    transform: translateY(0);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

/* Footer */
.hero-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding-bottom: 1.5rem;
    text-align: center;
    color: #9ca3af;
    font-size: 0.875rem;
    z-index: 20;
}

/* Fade-in Animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.5s ease, transform 1.5s ease;
}

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

/* Dust Particle Float Animation */
@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(20px, -30px);
    }
    50% {
        transform: translate(-15px, -60px);
    }
    75% {
        transform: translate(10px, -90px);
    }
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .hero-title {
        margin-bottom: 1rem;
    }
    
    .hero-tagline {
        margin-bottom: 2rem;
    }
    
    .hero-button {
        padding: 0.875rem 2rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .hero-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.8rem;
    }
}
