/* === Grundlegendes Reset & Variablen === */
:root {
    --gold: #c9a96e;
    --gold-dark: #a6844c;
    --bg-dark: #0f0f0f;
    --bg-card: #1a1a1a;
    --text-primary: #f0f0f0;
    --text-secondary: #b0b0b0;
    --bg-input: #252525;
    --accent: #c9a96e;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-padding {
    padding: 100px 0;
}

.gold {
    color: var(--gold);
}

/* === Loader (erweitert) === */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader-wrapper.fade-out {
    opacity: 0;
    visibility: hidden;
}

.truck-loader {
    color: var(--gold);
    text-align: center;
}

.truck-loader i {
    font-size: 4.5rem;
    animation: floatTruck 2s infinite ease-in-out;
    display: block;
    margin-bottom: 20px;
}

.loading-bar {
    width: 180px;
    height: 6px;
    background: rgba(201,169,110,0.2);
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto;
}

.loading-progress {
    width: 0%;
    height: 100%;
    background: var(--gold);
    border-radius: 10px;
    animation: load 1.5s ease-in-out forwards;
}

@keyframes floatTruck {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes load {
    0% { width: 0; }
    100% { width: 100%; }
}

/* === Navigation === */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 15, 15, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
    border-bottom: 1px solid rgba(201, 169, 110, 0.2);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 60px;
    width: auto;
    display: block;
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    position: relative;
    padding: 5px 0;
    transition: color 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #fff;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    margin: 5px;
    transition: var(--transition);
}

/* === Hero (Parallax & Tipp-Animation) === */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    z-index: 0;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.35);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(10,10,10,0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.headline {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.headline .line1,
.headline .line2 {
    display: block;
}

.headline .gold-text {
    color: var(--gold);
    position: relative;
}

.subhead {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    min-height: 3.5rem;
}

.cursor {
    color: var(--gold);
    font-weight: 400;
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--gold);
    color: #0a0a0a;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    background: #b8934c;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(201, 169, 110, 0.3);
}

.btn-outline {
    border: 2px solid var(--gold);
    color: var(--gold);
    background: transparent;
}

.btn-outline:hover {
    background: var(--gold);
    color: #0a0a0a;
    transform: translateY(-3px);
}

.pulse-button {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(201,169,110, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(201,169,110, 0); }
    100% { box-shadow: 0 0 0 0 rgba(201,169,110, 0); }
}

.floating-truck {
    position: absolute;
    bottom: 5%;
    right: -100px;
    color: rgba(201,169,110, 0.1);
    font-size: 20rem;
    animation: driveTruck 18s linear infinite;
    z-index: 1;
}

@keyframes driveTruck {
    100% { transform: translateX(0) rotate(0deg); }
    0% { transform: translateX(-130vw) rotate(-2deg); }
}

/* === Section Reveal Animationen === */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-text {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-text.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-card {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-image {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-image.visible {
    opacity: 1;
    transform: scale(1);
}

/* === Section Titles === */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 50px;
    font-size: 1.1rem;
}

/* === Services mit Bildern === */
.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.card {
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.4s, box-shadow 0.4s;
    border: 1px solid rgba(201, 169, 110, 0.1);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
    border-color: var(--gold);
}

.card-img {
    height: 180px;
    overflow: hidden;
}

.card-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.card:hover .card-thumb {
    transform: scale(1.05);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin: 20px auto 10px;
    text-align: center;
}

.card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
    text-align: center;
}

.card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    padding: 0 25px 25px;
    text-align: center;
}

/* === About (mit Bild & Badge) === */
.dark-bg {
    background: #0a0a0a;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.about-text h2 {
    text-align: left;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.about-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(201, 169, 110, 0.2);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gold);
    color: #0a0a0a;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.2rem;
    display: flex;
    flex-direction: column;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.stats-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.stat-box {
    background: var(--bg-card);
    padding: 25px 35px;
    border-radius: 12px;
    text-align: center;
    border-bottom: 3px solid transparent;
    transition: border-color 0.3s, transform 0.3s;
    min-width: 150px;
}

.stat-box:hover {
    border-bottom-color: var(--gold);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 5px;
}

/* === Warum wir === */
.why {
    background: var(--bg-card);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.why-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 12px;
    background: var(--bg-dark);
    border: 1px solid rgba(201, 169, 110, 0.1);
    transition: all 0.3s;
}

.why-item:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
}

.why-item i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.why-item h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.why-item p {
    color: var(--text-secondary);
}

/* === Partner Form === */
.partner {
    background: radial-gradient(circle at top, #1a1a1a 0%, #0a0a0a 100%);
}

.partner-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(201, 169, 110, 0.2);
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row input {
    flex: 1;
}

input, textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-input);
    border: 1px solid #333;
    border-radius: 6px;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    transition: border 0.3s;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--gold);
}

textarea {
    height: 120px;
    margin-bottom: 20px;
    resize: vertical;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.form-checkbox input {
    width: auto;
    accent-color: var(--gold);
}

.form-checkbox label a {
    color: var(--gold);
    text-decoration: underline;
}

.submit-btn {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.form-message {
    margin-top: 15px;
    text-align: center;
    font-weight: 600;
}

/* === Kontakt mit animierter Karte === */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.contact-info h2 {
    text-align: left;
}

.contact-info ul {
    list-style: none;
    margin: 30px 0;
}

.contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-secondary);
}

.contact-info i {
    color: var(--gold);
    width: 20px;
    font-size: 1.2rem;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--gold);
    transition: var(--transition);
    position: relative;
}

.social-links a:hover {
    background: var(--gold);
    color: #0a0a0a;
    animation: socialPop 0.4s ease;
}

@keyframes socialPop {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

.contact-map .map-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(201, 169, 110, 0.2);
}

.map-img {
    width: 100%;
    filter: brightness(0.6) contrast(1.2);
}

.map-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--gold);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 12px var(--gold);
}

.pulse-dot {
    animation: dotPulse 2s infinite;
}

@keyframes dotPulse {
    0% { box-shadow: 0 0 0 0 rgba(201,169,110, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(201,169,110, 0); }
    100% { box-shadow: 0 0 0 0 rgba(201,169,110, 0); }
}

/* === Footer === */
footer {
    border-top: 1px solid rgba(201, 169, 110, 0.2);
    padding: 25px 0;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-content a {
    color: var(--gold);
}

.footer-domain {
    margin-top: 5px;
    letter-spacing: 1px;
}

/* === Responsive === */
@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        right: 0;
        height: auto;
        top: 70px;
        background: rgba(15,15,15,0.95);
        flex-direction: column;
        width: 100%;
        text-align: center;
        padding: 20px 0;
        transform: translateX(100%);
        transition: transform 0.4s ease-in;
        backdrop-filter: blur(10px);
    }

    .nav-links.nav-active {
        transform: translateX(0);
    }

    .burger {
        display: block;
    }

    .about-grid, .contact-grid {
        grid-template-columns: 1fr;
    }

    .headline {
        font-size: 2rem;
    }

    .form-row {
        flex-direction: column;
    }

    .stats-row {
        flex-direction: column;
        align-items: center;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .floating-truck {
        font-size: 10rem;
        bottom: 10%;
    }
}