
:root {
    --bg-color: #000000;
    --surface-color: #0a0a0a;
    --surface-hover: #141414;
    --text-main: #ffffff;
    --text-muted: #9a9a9a;
    --accent-red: #d30000;
    --accent-hover: #a30000;
    --whatsapp-green: #25d366;
    --whatsapp-hover: #1faa52;
    --font-logo: "Orbitron", sans-serif;
    --font-display: "Bebas Neue", sans-serif;
    --font-body: "Inter", sans-serif;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 32px;
    --space-xl: 64px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    background: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

h1, h2, h3, h4 {
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.1;
}

/* GRÖSSERE SEITENRÄNDER: max-width reduziert und padding erhöht */
.container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 5%;
}

.section { padding: var(--space-xl) 0; }

/* NAVIGATION */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(0, 0, 0, 0.95); backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--accent-red);
}

.nav-inner { height: 80px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo-img { width: 55px; height: 55px; object-fit: cover; border-radius: 20%; }
.nav-links { display: flex; align-items: center; gap: var(--space-lg); }
.nav-links a { white-space: nowrap; font-size: 0.9rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; transition: 0.3s ease; }
.nav-links a:hover { color: var(--accent-red); }

/* HAMBURGER */
.hamburger {
    display: none; flex-direction: column; justify-content: center; gap: 6px;
    cursor: pointer; padding: 10px; z-index: 1001; width: 44px; height: 44px;
}
.hamburger span {
    display: block; width: 28px; height: 3px; background: #ffffff;
    border-radius: 2px; transition: 0.3s ease;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* MOBILE MENU */
.mobile-menu {
    display: none; position: fixed; top: 82px; left: 0; right: 0;
    flex-direction: column; background: rgba(0, 0, 0, 0.98); padding: 20px 5%;
    border-bottom: 2px solid var(--accent-red); z-index: 999;
}
.mobile-menu.active { display: flex; }
.mobile-menu a {
    padding: 14px 0; font-size: 1rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 1px; border-bottom: 1px solid rgba(255, 255, 255, 0.08); transition: 0.3s ease;
}
.mobile-menu a:hover { color: var(--accent-red); }
.mobile-menu a:last-child { border-bottom: none; }

/* BUTTONS */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--accent-red); color: white; padding: 16px 32px; border: none; cursor: pointer;
    font-family: var(--font-display); font-size: 1.5rem; letter-spacing: 2px; text-transform: uppercase; transition: 0.3s ease;
}
.btn:hover { background: var(--accent-hover); transform: translateY(-2px); }

/* HERO */
.hero {
    min-height: 100vh; display: flex; align-items: center; padding-top: 80px;
    position: relative; overflow: hidden;
}
.hero-slider { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0; transform: scale(1.05);
    transition: opacity 1s ease, transform 8s ease-out;
}
.hero-slide.active { opacity: 1; transform: scale(1.1); }
.hero-content { position: relative; z-index: 1; }
.hero-content { max-width: 800px; display: flex; flex-direction: column; gap: 20px; }
.hero-logo-large { width: 200px; }
.tagline { font-family: var(--font-logo); font-size: 1.1rem; letter-spacing: 5px; }
.hero h1 { font-size: clamp(3rem, 8vw, 6rem); }
.hero-text { color: var(--text-muted); max-width: 650px; font-size: 1.05rem; }

/* VERSCHACHTELUNG: Boxen haben mehr Padding nach innen, Abstand nach außen */
/* ABOUT */
.about-box {
    margin: 0 auto; background: var(--surface-color); padding: calc(var(--space-xl) * 1.2);
    border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 8px; box-shadow: inset 0 0 40px rgba(0,0,0,0.5);
}
.about-box p { color: var(--text-muted); margin-bottom: 18px; }

/* SERVICES */
.grid-3 { margin-top: var(--space-lg); display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--space-lg); }
.card { background: var(--surface-color); padding: var(--space-xl) var(--space-lg); border: 1px solid rgba(255, 255, 255, 0.06); text-align: center; transition: 0.3s ease; }
.card:hover { background: var(--surface-hover); transform: translateY(-5px); border-color: var(--accent-red); }
.card h3 { font-size: 2rem; margin-bottom: 12px; color: var(--accent-red); }
.card p { color: var(--text-muted); }

/* GALLERY */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin-top: 40px; }
.gallery-item { overflow: hidden; border-radius: 12px; background: #111; border: 1px solid rgba(255, 255, 255, 0.08); cursor: pointer; transition: 0.3s ease; }
.gallery-item:hover { transform: translateY(-5px); border-color: var(--accent-red); }
.gallery-item img { width: 100%; height: 380px; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.05); }

/* LIGHTBOX */
.lightbox { position: fixed; inset: 0; background: rgba(0, 0, 0, 0.94); display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: 0.3s ease; z-index: 9999; }
.lightbox.active { opacity: 1; pointer-events: auto; }
.lightbox-img { max-width: 92%; max-height: 90vh; border-radius: 12px; animation: zoomIn 0.25s ease; }
.close-lightbox { position: absolute; top: 20px; right: 30px; font-size: 60px; color: white; cursor: pointer; user-select: none; }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); font-size: 50px; color: white; cursor: pointer; padding: 20px; user-select: none; transition: 0.3s; }
.lightbox-nav:hover { color: var(--accent-red); }
.lightbox-nav.prev { left: 20px; }
.lightbox-nav.next { right: 20px; }
@keyframes zoomIn { from { transform: scale(0.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }

/* PRICES */
.price-section { background: var(--surface-color); border-top: 1px solid rgba(255, 255, 255, 0.05); border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
.price-list { margin: 0 auto; display: flex; flex-direction: column; gap: 18px; padding: var(--space-lg); background: #000; border: 1px solid rgba(255,255,255,0.05); border-radius: 8px; }
.price-item { display: flex; justify-content: space-between; align-items: flex-end; padding-bottom: 14px; border-bottom: 1px dashed rgba(255, 255, 255, 0.2); }
.price-info h4 { font-size: 1.8rem; margin-bottom: 5px; }
.price-info p { color: var(--text-muted); }
.price-category { margin-bottom: var(--space-lg); }
.price-category-title { font-size: 1.8rem; color: var(--text-main); margin-bottom: var(--space-md); padding-bottom: 8px; border-bottom: 2px solid var(--accent-red); }
.price-value { color: var(--accent-red); font-size: 1.5rem; font-weight: 700; font-family: var(--font-logo); }

/* CONTACT */
.contact-wrapper { background: var(--surface-color); padding: var(--space-xl); border-radius: 8px; display: flex; flex-direction: column; gap: var(--space-lg); box-shadow: inset 0 0 30px rgba(0,0,0,0.8); }
.contact-row { display: grid; grid-template-columns: 1fr; gap: var(--space-lg); padding-bottom: var(--space-lg); border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.contact-row:last-child { border-bottom: none; padding-bottom: 0; }
.info-block h4 { color: var(--accent-red); font-size: 2rem; margin-bottom: 10px; }
.info-block p { color: var(--text-muted); }
.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; }

footer { text-align: center; padding: var(--space-xl) 5%; }
footer p { color: var(--text-muted); }
.footer-links { margin-top: var(--space-md); display: flex; justify-content: center; gap: 20px; }
.footer-links a { color: var(--text-muted); font-size: 0.9rem; text-decoration: underline; }
.footer-links a:hover { color: var(--accent-red); }

@media (max-width: 1024px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .hero { text-align: center; }
    .hero-content { align-items: center; }
    .price-item { flex-direction: column; align-items: flex-start; gap: 10px; }
    .contact-actions .btn { width: 100%; }
    .about-box, .contact-wrapper, .price-list { padding: var(--space-lg); }
}
