/* --- GLOBAL --- */
:root {
    --bg-dark: #0f1214;
    --bg-card: #1a1f24;
    --primary: #d35400; /* Kupfer/Rost Orange */
    --primary-hover: #e67e22;
    --text-main: #ecf0f1;
    --text-muted: #95a5a6;
    --insta-gradient: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    --font-heading: 'Roboto Slab', serif;
    --font-body: 'Montserrat', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden; /* Verhindert horizontales Scrollen */
}

h1, h2, h3 { font-family: var(--font-heading); color: white; margin-bottom: 1rem; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

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

/* --- NAVIGATION & LOGO --- */
.navbar {
    background: rgba(15, 18, 20, 0.98);
    padding: 10px 0; /* Etwas kompakter */
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #333;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.nav-container { display: flex; justify-content: space-between; align-items: center; }

/* Logo im Header */
.nav-logo {
    height: 60px; /* Perfekte Größe für Header */
    width: auto;
    object-fit: contain;
    /* Leichter Glow damit es auf Schwarz gut poppt */
    filter: drop-shadow(0 0 5px rgba(255,255,255,0.1));
    transition: transform 0.3s;
}
.nav-logo:hover { transform: scale(1.05); }

.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { font-weight: 500; font-size: 0.95rem; transition: color 0.3s; position: relative; }
.nav-links a:hover { color: var(--primary); }
.nav-links a.active { color: var(--primary); }

.btn-nav {
    background: var(--primary); padding: 10px 20px; border-radius: 4px; color: white !important;
}
.btn-nav:hover { background: var(--primary-hover); }

/* --- HERO SECTION --- */
.hero {
    height: 85vh;
    min-height: 500px;
    background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}
.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.5) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 650px; padding-top: 40px;}
.hero h1 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px;}
.hero p { font-size: 1.2rem; color: #ddd; margin-bottom: 30px; border-left: 4px solid var(--primary); padding-left: 15px; }

.btn-primary, .btn-secondary, .btn-outline, .btn-insta {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 15px 30px; border-radius: 4px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; transition: 0.3s; cursor: pointer;
}
.btn-primary { background: var(--primary); color: white; margin-right: 15px; border: none; }
.btn-primary:hover { background: var(--primary-hover); transform: translateY(-2px); }
.btn-secondary { background: white; color: var(--bg-dark); }
.btn-secondary:hover { background: #eee; transform: translateY(-2px); }
.btn-outline { border: 2px solid var(--primary); color: var(--primary); background: transparent; }
.btn-outline:hover { background: var(--primary); color: white; }

/* --- ANIMATION SECTION --- */
.animation-section { background: #15181b; padding: 60px 0; border-bottom: 1px solid #333; }
.animation-grid { display: flex; align-items: center; gap: 40px; }
.anim-text { flex: 1; }
.anim-text h2 { font-size: 2rem; color: var(--primary); }
.anim-visual { flex: 1; display: flex; justify-content: center; }

/* --- SERVICES --- */
.section-title { text-align: center; font-size: 2.5rem; color: var(--primary); margin-bottom: 10px; }
.section-subtitle { text-align: center; margin-bottom: 60px; color: var(--text-muted); }
.service-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px;
}
.service-card {
    background: var(--bg-card); border-radius: 8px; overflow: hidden; transition: transform 0.3s;
    border: 1px solid #333;
}
.service-card:hover { transform: translateY(-5px); border-color: var(--primary); }
.service-card img { width: 100%; height: 250px; object-fit: cover; }
.card-content { padding: 25px; }
.text-link { color: var(--primary); font-weight: 600; font-size: 0.9rem; margin-top: 10px; display: inline-block;}

/* --- INSTAGRAM SECTION (PHONE) --- */
.instagram-section {
    padding: 100px 0;
    background: linear-gradient(to bottom right, #1a1f24, #0f1214);
    overflow: hidden;
}
.instagram-flex { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.insta-content { flex: 1; }
.insta-badge { background: var(--insta-gradient); color: white; padding: 5px 10px; border-radius: 20px; font-size: 0.8rem; font-weight: bold; margin-bottom: 15px; display: inline-block; }
.insta-content h2 { font-size: 2.8rem; }
.btn-insta { background: var(--insta-gradient); color: white; margin-top: 20px; border: none; }
.btn-insta:hover { opacity: 0.9; transform: translateY(-2px); }

/* CSS Phone Mockup */
.insta-phone-wrapper { flex: 1; display: flex; justify-content: center; perspective: 1000px; }
.phone-mockup {
    width: 280px;
    height: 550px;
    background: #000;
    border-radius: 40px;
    border: 8px solid #333; /* Rahmen */
    box-shadow: 0 20px 50px rgba(0,0,0,0.8), inset 0 0 20px rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
    transform: rotateY(-10deg) rotateX(5deg); /* 3D Effekt */
    transition: transform 0.5s;
}
.phone-mockup:hover { transform: rotateY(0) rotateX(0); }
.phone-notch {
    width: 120px; height: 25px; background: #333; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; z-index: 10;
}
.phone-screen {
    width: 100%; height: 100%; background: #121212; padding: 40px 15px 15px; display: flex; flex-direction: column;
}
.screen-header { display: flex; align-items: center; margin-bottom: 20px; }
.screen-avatar { width: 50px; height: 50px; border-radius: 50%; border: 2px solid #e1306c; margin-right: 10px; background: #333; padding: 2px;}
.screen-username { color: white; font-weight: bold; font-size: 0.9rem; }
.screen-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 5px; flex: 1;
}
.grid-item { background-color: #333; border-radius: 4px; background-size: cover; background-position: center; }
/* Fake Posts im Handy */
.item1 { background-image: url('https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?w=400'); }
.item2 { background-image: url('https://images.unsplash.com/photo-1629079448378-27b9c9f2f537?w=400'); }
.item3 { background-image: url('https://images.unsplash.com/photo-1591556098048-7353f8682969?w=400'); }
.item4 { background-image: url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?w=400'); }

.screen-btn {
    margin-top: 15px; width: 100%; text-align: center; padding: 8px; background: #333; color: white; border-radius: 4px; font-size: 0.8rem; font-weight: bold;
}

/* --- USPs --- */
.usps { background: #0f1214; padding: 60px 0; border-top: 1px solid #333; }
.usp-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.usp-item { text-align: center; padding: 20px; background: rgba(255,255,255,0.03); border-radius: 8px;}
.usp-item .icon { font-size: 2.5rem; margin-bottom: 15px; }

/* --- CTA SECTION --- */
.cta-section { text-align: center; padding: 80px 0; background: var(--bg-card); border-top: 1px solid #333; }
.cta-section h2 { margin-bottom: 10px; }
.cta-section p { margin-bottom: 30px; color: var(--text-muted); }

/* --- FOOTER --- */
footer { background: #000; padding: 60px 0 20px; border-top: 1px solid #333; }
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; }
.footer-logo { width: 180px; margin-bottom: 20px; opacity: 0.9; }
.footer-col h4 { color: white; margin-bottom: 20px; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 1px; }
.footer-col p, .footer-col a { color: #888; font-size: 0.95rem; line-height: 1.8; }
.footer-col a:hover { color: var(--primary); }
.footer-bottom { text-align: center; border-top: 1px solid #222; padding-top: 20px; font-size: 0.8rem; color: #555; }

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.2rem; }
    .hero { height: auto; padding: 100px 0; }
    
    .nav-links { display: none; } /* Mobile Menu einfach ausgeblendet für jetzt */
    .nav-container { justify-content: center; }
    .nav-logo { height: 50px; } /* Kleineres Logo auf Handy */

    .animation-grid { flex-direction: column; text-align: center; }
    .instagram-flex { flex-direction: column; text-align: center; }
    
    .hero-buttons { display: flex; flex-direction: column; gap: 15px; }
    .btn-primary { margin-right: 0; }
    
    .phone-mockup { transform: rotateY(0) rotateX(0); } /* Kein 3D Effekt auf Mobile */
}
/* --- ZUSATZ FÜR UNTERSEITEN (Leistungen & Projekte) --- */

/* Kleinerer Hero-Banner für Unterseiten */
.page-hero {
    height: 50vh;
    min-height: 350px;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?ixlib=rb-1.2.1&auto=format&fit=crop&w=1600&q=80') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 50px;
}
.page-hero h1 { font-size: 3rem; text-transform: uppercase; letter-spacing: 2px; border-bottom: 3px solid var(--primary); padding-bottom: 10px; display: inline-block;}

/* Leistungen: Alternierendes Layout (Zick-Zack) */
.service-detail { padding: 60px 0; border-bottom: 1px solid #222; }
.service-row { display: flex; align-items: center; gap: 50px; }
.service-row.reverse { flex-direction: row-reverse; } /* Bild rechts, Text links */
.service-text { flex: 1; }
.service-text h2 { color: var(--primary); font-size: 2rem; margin-bottom: 20px; }
.service-text ul { margin-top: 20px; }
.service-text li { margin-bottom: 10px; padding-left: 20px; position: relative; color: #ccc; }
.service-text li::before { content: "✔"; color: var(--primary); position: absolute; left: 0; }
.service-img { flex: 1; }
.service-img img { border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.5); border: 1px solid #333; transition: transform 0.3s;}
.service-img img:hover { transform: scale(1.02); border-color: var(--primary); }

/* Projekte: Galerie Grid */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    padding-bottom: 80px;
}
.project-item {
    background: var(--bg-card);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    group;
}
.project-img-wrapper { overflow: hidden; height: 250px; position: relative; }
.project-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.project-item:hover img { transform: scale(1.1); }
.project-info { padding: 20px; text-align: center; }
.project-info h3 { margin-bottom: 5px; font-size: 1.2rem; }
.project-info p { color: var(--text-muted); font-size: 0.9rem; }

/* Responsive Anpassung */
@media (max-width: 768px) {
    .service-row, .service-row.reverse { flex-direction: column; }
    .page-hero h1 { font-size: 2rem; }
}