/* style.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    --bg-dark: #070B14;
    --bg-card: #0F1523;
    --bg-card-hover: #151C2C;
    --border-color: rgba(255, 255, 255, 0.05);
    --gold: #D4AF37;
    --gold-hover: #E5C354;
    --gold-glow: rgba(212, 175, 55, 0.2);
    --text-main: #F4F4F5;
    --text-muted: #A1A1AA;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    margin: 0 0 1rem 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

p {
    margin: 0 0 1.5rem 0;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.text-gold {
    color: var(--gold);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

section {
    padding: 4rem 0;
}

/* Typography Classes */
.section-subtitle {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 1rem;
    display: block;
    font-weight: 500;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.section-text {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 3rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 4px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--gold);
    color: var(--bg-dark);
}

.btn-primary:hover {
    background-color: var(--gold-hover);
    box-shadow: 0 0 20px var(--gold-glow);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--gold);
    color: var(--gold);
}

.btn-outline:hover {
    background-color: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(7, 11, 20, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    transition: all var(--transition-fast);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo svg {
    width: 32px;
    height: 32px;
    fill: var(--gold);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

nav a {
    font-size: 0.9375rem;
    color: var(--text-main);
    opacity: 0.8;
}

nav a:hover, nav a.active {
    opacity: 1;
    color: var(--gold);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
#hero {
    padding-top: 8rem;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: 20%;
    right: 10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--gold-glow) 0%, rgba(0,0,0,0) 70%);
    z-index: -1;
    filter: blur(60px);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-text {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.trust-points {
    display: flex;
    gap: 2rem;
}

.trust-point {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.trust-point svg {
    width: 18px;
    height: 18px;
    stroke: var(--gold);
}

.hero-image-wrapper {
    position: relative;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border: 1px solid var(--border-color);
}

/* Leistungen Section */
.leistungen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.card {
    background: rgba(15, 21, 35, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    transition: all var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.card:hover {
    transform: translateY(-5px);
    background: rgba(21, 28, 44, 0.8);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.card-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 1.5rem;
    stroke: var(--gold);
    fill: none;
}

.card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.card p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
}

.card-link {
    color: var(--gold);
    font-size: 0.875rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.card-link:hover {
    gap: 0.75rem;
}

/* Projekte Section */
.projekte-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.projekt-card {
    background: rgba(15, 21, 35, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.projekt-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.projekt-img-wrapper {
    position: relative;
    padding-top: 60%; /* 16:9 Aspect Ratio somewhat */
    overflow: hidden;
}

.projekt-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

.projekt-card:hover img {
    transform: scale(1.05);
}

.projekt-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

.projekt-info {
    padding: 1.5rem;
}

.projekt-kategorie {
    font-size: 0.75rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    display: block;
}

.projekt-info h3 {
    margin-bottom: 0;
    font-size: 1.25rem;
}

/* Ablauf Section */
.ablauf-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 4rem;
}

.ablauf-line {
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(212, 175, 55, 0.3);
    z-index: 1;
}

.ablauf-step {
    position: relative;
    z-index: 2;
    text-align: center;
    flex: 1;
    padding: 0 1rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--bg-dark);
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--gold);
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 0 20px var(--bg-dark);
}

.ablauf-step h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.ablauf-step p {
    color: var(--text-muted);
    font-size: 0.9375rem;
}

/* Preise Section */
.preise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.preis-card {
    background: rgba(15, 21, 35, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 3rem 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transition: all var(--transition-smooth);
}

.preis-card:hover {
    transform: translateY(-5px);
    background: rgba(21, 28, 44, 0.8);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.preis-card.highlight {
    border-color: var(--gold);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.15);
    transform: scale(1.02);
}

.preis-card.highlight:hover {
    transform: scale(1.02) translateY(-5px);
}

.highlight-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--gold);
    color: var(--bg-dark);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.preis-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.preis-amount {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 2rem;
}

.preis-amount span {
    font-size: 1rem;
    font-family: var(--font-body);
    color: var(--text-muted);
}

.preis-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
    flex-grow: 1;
}

.preis-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-muted);
    font-size: 0.9375rem;
}

.preis-features li:last-child {
    border-bottom: none;
}

.preis-features li::before {
    content: '✓';
    color: var(--gold);
    font-weight: bold;
}

.preis-card .btn {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
}

.preise-hinweis {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Über mich Section */
.ueber-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.ueber-bild {
    width: 100%;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.vorteile-liste {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
}

.vorteile-liste li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.vorteile-liste li svg {
    width: 24px;
    height: 24px;
    stroke: var(--gold);
    fill: none;
    flex-shrink: 0;
}

/* Kundenstimmen Placeholder */
.kundenstimmen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: var(--bg-card);
    border: 1px dashed var(--border-color);
    border-radius: 8px;
    padding: 3rem 2rem;
    text-align: center;
    opacity: 0.6;
}

.testimonial-card p {
    color: var(--text-muted);
    font-style: italic;
}

/* Kontakt Section */
.kontakt-wrapper {
    background-color: var(--bg-card);
    border: 1px solid var(--gold);
    border-radius: 8px;
    padding: 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.05);
}

.kontakt-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.kontakt-info p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.kontakt-details {
    margin-bottom: 2rem;
}

.kontakt-detail {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.kontakt-detail svg {
    width: 20px;
    height: 20px;
    stroke: var(--gold);
    fill: none;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    width: 100%;
    padding: 1rem;
    background-color: rgba(0,0,0,0.2);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-main);
    font-family: var(--font-body);
    box-sizing: border-box;
    transition: border-color var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--gold);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
footer {
    border-top: 1px solid var(--border-color);
    padding: 4rem 0 2rem 0;
    background-color: #050810;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 1rem;
    font-size: 0.9375rem;
}

.footer-col h4 {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col li {
    margin-bottom: 0.75rem;
}

.footer-col a, .footer-col p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    text-decoration: none;
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Media Queries */
@media (max-width: 992px) {
    .hero-grid, .ueber-grid, .kontakt-wrapper {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .ablauf-container {
        flex-direction: column;
        gap: 3rem;
    }
    
    .ablauf-line {
        display: none;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    nav ul, .header-cta {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    /* Mobile Menu Active State */
    nav.mobile-active ul {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-card);
        padding: 2rem 0;
        text-align: center;
        border-bottom: 1px solid var(--border-color);
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .kontakt-wrapper {
        padding: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* FAQ Section */
.faq-item { border-bottom: 1px solid var(--border-color); padding: 1.5rem 0; cursor: pointer; }
.faq-question { display: flex; justify-content: space-between; font-weight: 600; font-size: 1.1rem; color: var(--text-light); transition: color 0.3s ease; }
.faq-item:hover .faq-question { color: var(--gold); }
.faq-answer { display: none; padding-top: 1rem; color: var(--text-muted); line-height: 1.6; }
.faq-item.active .faq-answer { display: block; }
.faq-item.active .faq-icon { transform: rotate(45deg); color: var(--gold); }
.faq-icon { transition: transform 0.3s ease; font-size: 1.5rem; font-weight: 300; }

/* WhatsApp Button */
.whatsapp-float { position: fixed; width: 60px; height: 60px; bottom: 40px; right: 40px; background-color: #25d366; color: #FFF; border-radius: 50px; text-align: center; box-shadow: 0px 4px 10px rgba(0,0,0,0.3); z-index: 1000; display: flex; align-items: center; justify-content: center; transition: transform 0.3s ease; }
.whatsapp-float:hover { transform: scale(1.1); color: #FFF; }
