/* --- FONTS & BASE --- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;500;700;900&display=swap');

:root {
    --bg-dark: #0a0e17;
    --bg-card: rgba(255, 255, 255, 0.03);
    --primary-gradient: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
    --accent-gradient: linear-gradient(135deg, #f09819 0%, #edde5d 100%);
    --glass-border: 1px solid rgba(255, 255, 255, 0.1);
    --neon-glow: 0 0 20px rgba(0, 198, 255, 0.3);
}

body {
    background-color: var(--bg-dark);
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5 {
    font-weight: 700;
    letter-spacing: -1px;
}

.text-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gold {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- NAVBAR --- */
.navbar-custom {
    background: rgba(10, 14, 23, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: var(--glass-border);
    padding: 1.5rem 0;
    transition: all 0.3s ease;
}

.nav-link {
    color: rgba(255,255,255,0.7) !important;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #fff !important;
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
}

/* --- HERO SECTION --- */
.hero-section {
    position: relative;
    padding: 180px 0 120px 0;
    background: radial-gradient(circle at top right, rgba(0, 114, 255, 0.15), transparent 40%),
                radial-gradient(circle at bottom left, rgba(240, 152, 25, 0.1), transparent 40%);
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: var(--primary-gradient);
    filter: blur(150px);
    opacity: 0.2;
    transform: translate(-50%, -50%);
    z-index: -1;
    animation: pulse 10s infinite alternate;
}

/* --- CARDS (GLASSMORPHISM) --- */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
}

.glass-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    background: rgba(255, 255, 255, 0.05);
}

.icon-box {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- BUTTONS --- */
.btn-glow {
    background: var(--primary-gradient);
    border: none;
    color: white;
    padding: 15px 40px;
    font-weight: 700;
    border-radius: 50px;
    letter-spacing: 1px;
    box-shadow: var(--neon-glow);
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-glow:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(0, 198, 255, 0.6);
    color: white;
}

.btn-outline-glow {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.2);
    color: white;
    padding: 13px 38px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline-glow:hover {
    border-color: white;
    background: white;
    color: black;
}

/* --- ANIMATIONS --- */
@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(0.8); }
    100% { transform: translate(-50%, -50%) scale(1.2); }
}

.float-img {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* --- LOGO FIX --- */
.navbar-custom .navbar-brand {
    color: #ffffff !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3); /* Leichter Glow */
    transition: all 0.3s ease;
}

.navbar-custom .navbar-brand:hover {
    color: #ffffff !important;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
}

/* --- NEUE STYLES --- */

/* Bild Hover-Effekt (30% Vergrößerung) */
.float-img img {
    transition: transform 0.5s ease-in-out; 
}

.float-img:hover img {
    transform: scale(1.3);
}

/* Gold Gradient für Icons (für Automotive Performance) */
.text-gold-icon {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* DNA Section (ersetzt die graue Bar) */
.dna-section {
    padding-top: 50px;
    padding-bottom: 50px;
    /* Fügt eine subtile, integrierte Trennlinie hinzu */
    border-bottom: var(--glass-border); 
}

.dna-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
/* --- LOGO FIX --- */
.navbar-custom .navbar-brand {
    color: #ffffff !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3); /* Leichter Glow */
    transition: all 0.3s ease;
}

.navbar-custom .navbar-brand:hover {
    color: #ffffff !important;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
}
/* --- BILD HOVER-EFFEKT (NEU) --- */
.float-img img {
    /* Stellt sicher, dass die Transformation sanft erfolgt */
    transition: transform 0.5s ease-in-out; 
}

.float-img:hover img {
    /* Skaliert das Bild auf 130% (30% größer) */
    transform: scale(1.5);
}