/* --- Citytax Website Stylesheet v23 (REPAIRED LAYOUT) --- */

/* =============================================
   1. VARIABLES & RESET
   ============================================= */
:root {
  --gelb: #FFFF00;
  --gelb-button: #ffc107;
  --gelb-button-hover: #e0a800;
  --dunkelgrau: #333333;
  --weiss: #FFFFFF;
  --schwarz: #000000;
  --standard-font: Arial, Helvetica, sans-serif;
  --slogan-font: 'Playfair Display', serif;
}

*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--standard-font);
  background-color: var(--weiss);
  color: var(--dunkelgrau);
  overflow-x: hidden;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: "header" "main-content" "footer";
  min-height: 100vh;
}

@font-face {
  font-family: 'Playfair Display';
  font-style: italic;
  font-weight: 700;
  font-display: swap; 
  src: local(''),
       url('fonts/playfair-display-v40-latin-700italic.woff2') format('woff2'), 
       url('fonts/playfair-display-v40-latin-700italic.woff') format('woff'); 
}

/* =============================================
   2. HEADER & NAV (Mobile Optimized Base)
   ============================================= */
.header {
  grid-area: header;
  background-color: var(--gelb);
  padding: 2px 20px;
  display: flex;
  justify-content: center;
  align-items: center; 
  border-bottom: 4px solid var(--schwarz);
  position: relative;
  min-height: 0; 
  height: auto;
  overflow: visible;
}

.logo {
  position: relative;
  display: block;
  z-index: 1000;
  width: 100%;
  padding-left: 50px; 
  box-sizing: border-box;
}

.logo img {
  max-height: 145px; 
  width: auto;
  max-width: 65vw;        
  margin: 0 auto;
  display: block;
  object-fit: contain;
}

.hamburger-menu {
  position: absolute;   
  left: 15px;           
  top: 50%;           
  transform: translateY(-55%); 
  font-size: 45px;
  color: var(--schwarz);
  cursor: pointer;
  z-index: 1001;
  line-height: 1;
}

.mobile-nav {
  display: none;
  position: absolute;
  top: 80px; left: 20px;
  background-color: var(--dunkelgrau);
  border: 2px solid var(--gelb);
  border-radius: 5px;
  z-index: 1002;
}
.mobile-nav.is-active { display: block; }
.mobile-nav ul { list-style: none; padding: 0; margin: 0; }
.mobile-nav li a {
  display: block; padding: 15px 30px;
  color: var(--gelb); text-decoration: none;
  font-weight: bold; border-bottom: 1px solid #555;
}

/* =============================================
   3. HERO & SLOGAN (Mobile Base)
   ============================================= */
.hero {
  grid-area: hero;
  position: relative;
  height: 20vh;
  min-height: 110px;
  overflow: hidden;
}
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 100%; height: 20px; background-color: var(--gelb);
}
.hero-picture img {
  width: 100%; height: 100%; object-fit: cover;
}

.slogan-bar {
  grid-area: slogan-bar;
  background-color: #1a1a1a;
  color: var(--gelb);
  padding: 65px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: visible;
}

.slogan-container-slanted {
  transform: rotate(-12deg);
  transform-origin: center;
  flex-grow: 1;
  padding-left: 5px;
  z-index: 10;
}

.slogan-text-upright {
  transform: rotate(6deg); 
  font-family: var(--slogan-font);
  font-style: italic;
  font-weight: 700;
  font-size: 1.35rem;
  line-height: 1.1;
  text-align: left;
}

.slogan-values {
  list-style: none; padding: 0; margin: 0 0 0 5px;
  text-align: right; font-size: 0.8rem; line-height: 1.4;
  min-width: 85px; font-weight: bold;
}

/* =============================================
   4. CONTENT ELEMENTS & IMAGES
   ============================================= */
main {
  grid-area: main-content;
  padding: 20px 15px;
  /* Standardmäßig KEIN Grid, sondern Block für Mobile */
  display: block; 
}

/* Bilder bändigen! */
img { max-width: 100%; height: auto; }

/* Spezifische Bilder Klassen wiederherstellen */
.block-image-graffiti img, 
.block-image-innenstadt img,
.reha-layout img,
.kranken-grid img {
    border-radius: 5px;
    width: 100%;
    /* Standard Height Mobile */
    max-height: 300px; 
    object-fit: cover;
}

/* Intro Text */
.intro-text { padding: 10px 15px; text-align: center; }
.intro-text h2 { font-size: 1.6em; margin: 5px 0 10px 0; }
.intro-text-block { font-size: 1.3em; line-height: 1.6; margin-bottom: 20px; }

/* Buttons */
.contact-button, .calc-button {
  display: block; width: 100%;
  padding: 16px 20px;
  text-align: center; text-decoration: none;
  border-radius: 5px; font-weight: bold; border: none;
  margin-bottom: 10px; cursor: pointer;
  font-size: 1.1em;
}
.btn-telefon, .btn-email, .calc-button {
  background-color: var(--gelb-button); color: var(--schwarz);
  border: 1px solid var(--schwarz);
}
.btn-telefon:hover, .btn-email:hover, .calc-button:hover {
  background-color: var(--gelb-button-hover);
  transform: translateY(-2px);
}

/* Grid Kacheln (Startseite) */
.leistungsgrid {
  display: grid; grid-template-columns: 1fr; 
  gap: 12px; padding-top: 0;
}
.grid-item { position: relative; display: block; overflow: hidden; border-radius: 5px; }
.grid-item img { width: 100%; height: 250px; object-fit: cover; }
.grid-item h3 {
  background: #00539C; color: white; padding: 15px; margin: 0;
  position: absolute; bottom: 0; width: 100%; text-align: center;
}

/* Komponenten */
.eyecatcher-tilted {
    transform: rotate(-15deg);
    margin: 20px 0 30px 0;
    text-align: center;
}
.kontur-text-weiss {
    font-size: 2em; font-weight: bold; color: var(--schwarz);
    text-shadow: -1px -1px 2px #ccc, 1px 1px 2px #ccc, -2px -2px 0 #000, 2px 2px 0 #000;
}
.whatsapp-wrapper { text-align: center; margin-bottom: 30px; }
.whatsapp-text-tilted {
    font-family: 'Playfair Display', serif; font-size: 1.3em;
    transform: rotate(25deg); background-color: #1E9D52;
    color: white; padding: 10px 20px; border-radius: 50px;
    display: inline-block; margin-top: 10px;
}
/* =============================================
   FIX: FOOTER (Auf Handy ausblenden, auf PC zeigen)
   ============================================= */

.footer {
    grid-area: footer;
    background-color: #1a1a1a;
    padding: 20px;
    text-align: center;
    
    /* WICHTIG: Auf dem Handy standardmäßig AUSBLENDEN */
    /* (Da die Links ja schon im Hamburger-Menü sind) */
    display: none; 
}

/* Links im Footer stylen (für Desktop) */
.footer a {
    color: var(--gelb);
    margin: 0 15px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.2s ease;
}

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

/* Erst ab Tablet/Desktop (ab 769px) wieder einblenden */
@media (min-width: 769px) {
    .footer {
        display: block; /* Hier zeigen wir ihn wieder */
    }
}
/* =============================================
   ZUSATZ: Layout für Text-Seiten (Flughafen & Impressum)
   ============================================= */

/* Begrenzt die Breite auf großen Bildschirmen (damit es lesbar bleibt) */
.simple-text-page, 
.legal-container {
    max-width: 900px;     /* Nicht breiter als 900px */
    margin: 0 auto;       /* Zentriert den Block in der Mitte */
    line-height: 1.6;     /* Angenehmer Leseabstand */
}

/* Spezielle Formatierung für Überschriften auf diesen Seiten */
.simple-text-page h1, 
.legal-container h1 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2em;
}

.legal-container h2 {
    border-bottom: 2px solid #333;
    padding-bottom: 5px;
    margin-top: 40px;
}

/* Kontakt-Buttons schön anordnen (für Impressum Kontakt) */
.contact-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin: 20px 0;
}

/* =============================================
   5. DESKTOP / TABLET (ab 769px)
   ============================================= */
@media (min-width: 769px) {
    /* Seitenstruktur mit Sidebar */
    body {
        grid-template-columns: 80px 1fr;
        grid-template-areas: "header header" "decor-left main-content" "footer footer";
    }
    body.homepage {
        grid-template-columns: 1fr;
        grid-template-areas: "header" "hero" "slogan-bar" "main-content" "footer";
    }
    .decor-column-left {
        display: block; grid-area: decor-left;
        background: linear-gradient(to top right, #3973ac 50%, transparent 50.1%), #6699cc;
        background-size: 100% 50%;
    }
    
    /* Header normalisieren */
    .header { padding: 10px 30px; min-height: 170px; }
    .logo { padding-left: 0; width: auto; }
    .logo img { max-height: 250px; max-width: none; filter: drop-shadow(1px 1px 3px rgba(0,0,0,0.6)); }
    .hamburger-menu { font-size: 90px; color: var(--dunkelgrau); left: 20px; }
    
    .hero { height: 50vh; }
    .slogan-bar { padding: 40px 15%; align-items: flex-start; }
    .slogan-container-slanted { transform: rotate(-20deg); margin-left: 0; padding-left: 0; }
    .slogan-text-upright { transform: rotate(15deg); font-size: 3em; }
    .slogan-values { text-align: left; font-size: 1.6em; margin-left: 0; }
    
    .leistungsgrid { grid-template-columns: 1fr 1fr; gap: 20px; padding: 40px; }
    .contact-button { display: inline-block; width: auto; }
}

/* =============================================
   6. DESKTOP SPECIFIC LAYOUTS (ab 900px)
   ============================================= */
@media (min-width: 900px) {

    /* Hauptcontainer Padding */
    main { padding: 40px; padding-left: 80px; }
    body.homepage main { padding-left: 0; }

    /* --- LAYOUT 1: TAXI FAHRTEN (Spezifisches Grid) --- */
    .taxi-grid-layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto auto;
        gap: 30px 40px;
        align-items: center; /* Zentriert Inhalte vertikal */
    }

    .block-text-slogan { grid-column: 1; grid-row: 1; align-self: start; }
    .block-image-graffiti { grid-column: 2; grid-row: 1; align-self: start; text-align: right; }
    
    /* Bilder wieder begrenzen für Desktop! */
    .block-image-graffiti img { max-height: 400px; width: auto; }
    
    .block-contact-rechner { grid-column: 1; grid-row: 2; }
    .block-text-info { grid-column: 2; grid-row: 2; }
    
    .block-image-innenstadt { grid-column: 1; grid-row: 3 / span 2; margin-top: 20px; }
    .block-image-innenstadt img { max-height: 400px; width: auto; }

    .block-whatsapp { grid-column: 2; grid-row: 3; }
    .block-taxirechner-only { grid-column: 2; grid-row: 4; }

    /* Abstände wiederherstellen */
    .eyecatcher-tilted { text-align: left; margin-left: -10px; margin-bottom: 120px; }
    .text-slogan-secondary { 
        /* Margin angepasst auf 80px statt 180px, da im Grid weniger Platz ist */
        margin-left: 80px; 
    }
    .whatsapp-wrapper { margin-top: 10px; }


    /* --- LAYOUT 2: KRANKEN & REHA (Grid) --- */
    .kranken-grid, .reha-layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: start;
    }

    /* Krankenfahrten Spezifika */
    .kranken-grid .text-block-1 { grid-column: 1; grid-row: 1; }
    .kranken-grid .image-block-1 { grid-column: 2; grid-row: 1; text-align: right; }
    .kranken-grid .image-block-1 img { max-height: 400px; width: auto; }
    
    .kranken-grid .eyecatcher { grid-column: 1 / span 2; grid-row: 2; text-align: center; padding: 40px 0; }
    
    .kranken-grid .image-block-2 { grid-column: 1; grid-row: 3; }
    .kranken-grid .image-block-2 img { max-height: 400px; width: auto; } /* Begrenzung wieder da */
    
    .kranken-grid .text-block-2 { grid-column: 2; grid-row: 3; }

    /* Reha Spezifika */
    .reha-layout .text-block { grid-column: 1; }
    .reha-layout .image-block { grid-column: 2; text-align: right; }
    .reha-layout .eyecatcher-center { grid-column: 1 / span 2; text-align: center; padding: 30px 0; }
    .reha-layout .placeholder-image { grid-column: 1 / span 2; text-align: center; }
    .reha-layout img { max-height: 400px; width: auto; }
}

/* =============================================
   7. LANDSCAPE & UTILS
   ============================================= */
@media (max-width: 900px) and (orientation: landscape) {
    .slogan-bar { padding-bottom: 30px; }
    .slogan-text-upright { line-height: 1.1; }
}

/* Rechner Styles */
.calculator-wrapper { display: flex; flex-wrap: wrap; gap: 40px; justify-content: center; margin-top: 20px; }
.form-section, #resultSection { flex: 1; min-width: 300px; }
#resultSection { display: none; background-color: #333; border-radius: 15px; padding: 20px; border: 1px solid #222; text-align: center; box-shadow: 0 10px 20px rgba(0,0,0,0.4); animation: fadeIn 0.5s ease-out; }
.monitor-screen { background-color: #000; border: 4px solid #555; border-radius: 8px; padding: 30px 20px; }
.digital-font { font-family: 'Courier New', Courier, monospace; color: #ffc107; text-shadow: 0 0 10px rgba(255, 193, 7, 0.5); }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* Tabellen & Maps Fix */
.table-responsive { overflow-x: auto; width: 100%; margin-bottom: 20px; }
.preistabelle { width: 100%; border-collapse: collapse; min-width: 600px; }
.preistabelle th, .preistabelle td { border: 4px solid #ccc; padding: 12px; }
.pac-container { z-index: 99999 !important; font-family: var(--standard-font); margin-top: 2px; }
.pac-logo:after { display: none; }
.spacer-large { margin-top: 3.5em; }
/* =============================================
   FIX: WhatsApp Logo Größe
   ============================================= */
.whatsapp-hinweis-links img {
    width: 70px !important;      /* Feste Größe für das Icon */
    max-width: 70px !important;  /* Darf niemals breiter sein */
    height: auto !important;
    display: inline-block;
    margin-bottom: 5px;
}
/* =============================================
   FIX: WhatsApp Anordnung (Bild zwingend ÜBER Text)
   ============================================= */
.whatsapp-hinweis-links {
    display: flex !important;
    flex-direction: column !important; /* WICHTIG: Stapelt Elemente vertikal */
    align-items: center !important;    /* Zentriert alles mittig */
    justify-content: center !important;
}

/* Der Text bekommt etwas Abstand nach oben, damit er nicht am Logo klebt */
.whatsapp-text-tilted {
    margin-top: 5px !important;
    display: inline-block !important;
}

/* Zur Sicherheit: Bild ist Element 1, Text ist Element 2 */
.whatsapp-hinweis-links img {
    order: 1 !important;
}
.whatsapp-text-tilted {
    order: 2 !important;
}
/* =============================================
   FIX: Blaue Linie beim WhatsApp-Link entfernen
   ============================================= */
a.whatsapp-link,
a.whatsapp-link:hover,
a.whatsapp-link:visited,
a.whatsapp-link:active {
    text-decoration: none !important; /* Killt die Linie */
    border-bottom: none !important;   /* Killt Ränder */
    outline: none !important;         /* Killt Klick-Rahmen */
    box-shadow: none !important;      /* Killt Schatten */
    color: inherit !important;        /* Behält die Originalfarbe */
}
/* =============================================
   FIX: Krankenfahrten Bild 2 (Lücke füllen)
   ============================================= */
@media (min-width: 900px) {
    
    /* 1. Der Container des Bildes muss sich strecken */
    .kranken-grid .image-block-2 {
        /* Zwingt den Block, die volle Höhe der Zeile anzunehmen 
           (also so hoch wie der Text daneben) */
        align-self: stretch !important; 
        height: 100% !important;
        display: flex !important; /* Damit das Bild darin die Höhe erkennt */
    }

    /* 2. Das Bild selbst muss den Container füllen */
    .kranken-grid .image-block-2 img {
        /* WICHTIG: Die 400px Bremse lösen */
        max-height: none !important; 
        
        /* Bild soll Container voll ausfüllen */
        width: 100% !important;
        height: 100% !important;
        
        /* WICHTIG: "Zoom" statt verzerren. 
           Schneidet Ränder ab, damit das Bild scharf bleibt. */
        object-fit: cover !important; 
        object-position: center !important;
        
        /* Optional: Rundung beibehalten */
        border-radius: 5px;
    }
}