/* =========================================
   1. GRUND-RESET & VARIABLEN
   ========================================= */
* { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0; 
}

html { 
    scroll-behavior: smooth; 
}

:root {
    --neon: #ccff00;
    --dark: #1a1a1a;
    --grey: #f4f4f4;
    --border: #333;
}

body {
    font-family: 'Courier New', Courier, monospace;
    background-color: var(--grey);
    color: #222;
    line-height: 1.5;
}

/* =========================================
   2. HEADER (Sticky & Stabil)
   ========================================= */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: white;
    border-bottom: 2px solid var(--neon);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo { 
    background: black; 
    color: var(--neon); 
    padding: 5px 15px; 
    font-weight: bold; 
    font-size: 1.1rem;
}

nav ul { 
    display: flex; 
    list-style: none; 
    gap: 85px; 
}

nav a { 
    text-decoration: none; 
    color: black; 
    font-weight: bold; 
    font-size: 0.9rem; 
    transition: 0.2s;
}

nav a:hover {
    color: var(--neon);
    background: black;
}

.lang-switch { 
    font-size: 0.8rem; 
    font-weight: bold; 
}

/* =========================================
   3. SEKTIONS-LAYOUT (Fullscreen)
   ========================================= */
.section-v {
    min-height: 100vh; 
    display: flex;
    align-items: center; /* Vertikale Zentrierung des gesamten Inhalts */
    justify-content: center;
    padding: 80px 5%;
    border-bottom: 1px solid #ddd;
}

.container { 
    width: 100%; 
    max-width: 1200px; 
    margin: 0 auto; 
}

.section-title { 
    border-left: 6px solid var(--neon); 
    padding-left: 15px; 
    margin-bottom: 50px; 
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* =========================================
   4. HOME / HERO BEREICH (Zentriert)
   ========================================= */
.hero-split { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 50px;
    align-items: center; /* Zentriert Text und Bild auf gleicher Höhe */
    width: 100%;
}

.hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.subtitle {
    color: #666;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 10px;
}

h1 { 
    font-size: 2.5rem; 
    margin: 15px 0 30px 0; 
    line-height: 1.1; 
}

.hero-image { 
    background: #ccc; 
    border: 1px solid #999; 
    height: 500px; /* Präsentere Höhe */
    width: 100%;
    background-size: cover;
    background-position: center;
}

.btn {
    display: inline-block;
    background: var(--neon);
    color: black;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border: 1px solid black;
    width: fit-content;
    transition: 0.3s;
}

.btn:hover {
    background: black;
    color: var(--neon);
}

/* =========================================
   5. SERVICES & GALERIE
   ========================================= */
.services-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 25px; 
}

.card {
    flex: 1;
    min-width: 250px;
    padding: 20px !important;
    height: auto !important;
    text-align: left !important; /* Erzeugt Linksbündigkeit */
}

.card ul {
    padding-left: 20px !important; /* Bestimmt, wie weit die Punkte eingerückt sind */
    margin: 0;
    list-style-position: outside; /* Sorgt dafür, dass die Punkte sauber links stehen */
}






.card-img { 
    height: 180px; 
    background-color: #ddd;
    margin-bottom: 20px; 
    background-size: cover;
    background-position: center;
}

.portfolio-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 20px; 
}

.port-item { 
    background: #ddd; 
    height: 250px; 
    display: flex; 
    align-items: flex-end; 
    padding: 15px; 
    border: 1px solid #999; 
}

.port-item span { 
    background: var(--neon); 
    font-size: 0.75rem; 
    padding: 4px 8px; 
    font-weight: bold;
}

/* =========================================
   6. KONTAKT
   ========================================= */
.kontakt-row { 
    display: flex; 
    gap: 60px; 
    align-items: center; 
}

.img-frame { 
    border: 5px solid var(--neon); 
    background: #333;
    object-fit: cover;
}

.mail-link { 
    display: inline-block; 
    margin-top: 25px; 
    background: var(--neon); 
    color: black; 
    padding: 12px 25px; 
    text-decoration: none; 
    font-weight: bold; 
    border: 1px solid black; 
}

/* =========================================
   7. FOOTER
   ========================================= */
footer { 
    background: #1a1a1a; 
    color: white; 
    padding: 50px 5%; 
}

.footer-content { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

.footer-nav a { 
    color: white; 
    text-decoration: none; 
    font-size: 0.85rem; 
    margin-left: 20px; 
}

.footer-nav a:hover {
    color: var(--neon);
}

/* =========================================
   8. MOBILE ANPASSUNGEN
   ========================================= */
@media (max-width: 768px) {
    header { flex-direction: column; gap: 15px; text-align: center; }
    nav ul { gap: 15px; }
    
    .hero-split, .services-grid, .portfolio-grid, .kontakt-row { 
        grid-template-columns: 1fr; 
        display: block; 
    }
    
    .hero-image, .card, .port-item, .img-frame {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .section-v { height: auto; padding: 100px 5%; }
}