@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;900&display=swap');

:root {
    --primary: #fcdb05; /* Das Taxi-Gelb */
    --bg-black: #0a0a0a;
    --card-bg: #141414;
    --text-white: #ffffff;
    --text-muted: #aaaaaa;
    --border-color: #222222;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body { 
    font-family: 'Montserrat', sans-serif; 
    background-color: var(--bg-black); 
    color: var(--text-white); 
    line-height: 1.6;
}

/* Navigation */
nav {
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    padding: 20px 5%; 
    background: #000;
    position: sticky; 
    top: 0; 
    z-index: 1000; 
    border-bottom: 2px solid var(--primary);
}

.logo { font-weight: 900; font-size: 1.5rem; color: var(--primary); text-decoration: none; text-transform: uppercase; letter-spacing: -1px; }
.logo span { color: white; }

.nav-links { list-style: none; display: flex; }
.nav-links li { margin-left: 30px; }
.nav-links a { text-decoration: none; color: white; font-weight: 700; font-size: 0.85rem; text-transform: uppercase; transition: 0.3s; }
.nav-links a:hover, .nav-links a.active { color: var(--primary); }

/* Hamburger Menu Styles (Versteckt auf Desktop) */
.nav-toggle { display: none; }
.nav-toggle-label { display: none; cursor: pointer; padding: 10px; }

/* Hero / Header */
.hero {
    height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 5%;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.8)), url('taxibild.jpg');
    background-size: cover;
    background-position: center;
}

.hero h1 { font-size: 4rem; font-weight: 900; text-transform: uppercase; line-height: 0.9; margin-bottom: 20px; }
.hero h1 span { color: var(--primary); font-style: italic; }
.hero p { font-size: 1.2rem; color: var(--text-muted); max-width: 700px; margin-bottom: 40px; }

.cta-button {
    background: var(--primary);
    color: black;
    padding: 20px 50px;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.5rem;
    border-radius: 4px;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(252,219,5,0.3);
}
.cta-button:hover { transform: scale(1.05); }

/* Preisschilder auf Startseite */
.price-showcase { padding: 60px 5%; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; max-width: 1200px; margin: auto; }
.price-badge { background: var(--card-bg); padding: 40px; border: 1px solid var(--border-color); text-align: center; border-radius: 8px; }
.price-badge h3 { font-size: 1rem; color: var(--primary); text-transform: uppercase; margin-bottom: 10px; }
.price-badge .amount { font-size: 3.5rem; font-weight: 900; }

/* Seiten-Header */
.page-header { padding: 100px 5% 60px; text-align: center; border-bottom: 2px solid var(--primary); }
.page-header h1 { font-size: 3rem; font-weight: 900; text-transform: uppercase; }
.page-header h1 span { color: var(--primary); }

/* Leistungs-Grid */
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 15px; padding: 60px 5%; max-width: 1200px; margin: auto; }
.service-item { border: 1px solid var(--border-color); padding: 30px; border-radius: 4px; transition: 0.3s; }
.service-item:hover { border-color: var(--primary); background: #111; }
.service-item h3 { color: var(--primary); font-weight: 900; text-transform: uppercase; font-size: 1.1rem; }

/* Preis-Tabelle */
.price-table-container { padding: 60px 5%; max-width: 1200px; margin: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
table tr { border-bottom: 1px solid #1a1a1a; }
table td { padding: 12px 0; }
table td:last-child { text-align: right; color: var(--primary); font-weight: 700; width: 60px; }

/* Kontakt */
.contact-layout { display: grid; grid-template-columns: 350px 1fr; gap: 40px; padding: 60px 5%; max-width: 1200px; margin: auto; }
.contact-box { background: var(--card-bg); padding: 40px; border-radius: 8px; border: 1px solid var(--border-color); }
.map-container { border: 2px solid var(--primary); border-radius: 8px; overflow: hidden; height: 500px; }
.map-container iframe { width: 100%; height: 100%; border: none; }

/* Footer */
footer { padding: 60px 5% 40px; text-align: center; background: #000; border-top: 1px solid var(--border-color); }
footer .links { margin-bottom: 20px; }
footer .links a { color: var(--text-muted); text-decoration: none; margin: 0 15px; font-size: 0.75rem; text-transform: uppercase; font-weight: 700; }
footer .links a:hover { color: var(--primary); }
footer .copy { font-size: 0.65rem; color: #444; text-transform: uppercase; letter-spacing: 2px; }

/* Absagen Hinweis */
.hinweis-telefon {
    margin-top: 50px;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

/* --- MOBILE OPTIMIERUNG --- */
@media (max-width: 800px) {
    /* Hamburger Menu Sichtbarkeit */
    .nav-toggle-label {
        display: block;
        position: absolute;
        top: 20px;
        right: 5%;
    }
    
    /* Drei Striche zeichnen */
    .nav-toggle-label span,
    .nav-toggle-label span::before,
    .nav-toggle-label span::after {
        display: block;
        background: var(--primary);
        height: 3px;
        width: 30px;
        border-radius: 2px;
        position: relative;
    }
    .nav-toggle-label span::before,
    .nav-toggle-label span::after {
        content: '';
        position: absolute;
    }
    .nav-toggle-label span::before { bottom: 10px; }
    .nav-toggle-label span::after { top: 10px; }

    /* Menü-Links für Handy */
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #000;
        flex-direction: column;
        align-items: center;
        padding: 0;
        overflow: hidden;
        max-height: 0; /* Versteckt */
        transition: max-height 0.4s ease-out;
        border-bottom: 0 solid var(--primary);
    }

    .nav-links li { margin: 20px 0; }
    
    /* Menü öffnen wenn Checkbox aktiv */
    .nav-toggle:checked ~ .nav-links {
        max-height: 400px;
        padding: 20px 0;
        border-bottom: 2px solid var(--primary);
    }

    /* Layout Verbesserungen */
    .hero { height: auto; padding: 100px 5%; }
    .hero h1 { font-size: 2.2rem; }
    .hero p { font-size: 1rem; }
    
    .cta-button { width: 100%; padding: 15px; font-size: 1.2rem; }
    
    .page-header { padding: 60px 5% 30px; }
    .page-header h1 { font-size: 2.2rem; }

    .price-table-container { grid-template-columns: 1fr; gap: 0; }
    .contact-layout { grid-template-columns: 1fr; }
    .map-container { height: 300px; }
    
    .price-badge .amount { font-size: 2.5rem; }
    
    footer .links { display: flex; flex-direction: column; gap: 15px; }
}
