/*
Theme Name: Krankenfahrdienste.Info – Coming Soon
Theme URI: https://krankenfahrdienste.info
Author: Denis
Description: Schlichte "Webseite im Aufbau"-Theme im Stil des Entwurfs.
Version: 1.0.0
Text Domain: kfi-comingsoon
*/

:root{
  --kfi-scale: 0.68;
  --bg: #F6EAD5;
  --navy: #1F3A73;
  --navy-2:#243E75;
  --muted:#2D3B5B;
  --line:#E6D8BE;
  --btn:#E48755;
  --btn-dark:#D97743;
  --shadow: rgba(31,58,115,.12);
}

*{ box-sizing:border-box; }

html,body{ height:100%; }

body{
  margin:0;
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--navy);
}

.kfi-page{
  min-height:100%;
  display:flex;
  flex-direction:column;
}

.kfi-top{
  padding: 42px 20px 16px;
  text-align:center;
}

.kfi-brand{
  font-weight:700;
  letter-spacing:.2px;
  font-size: clamp(34px, 4.2vw, 56px);
  color: var(--navy);
}

.kfi-rule{
  height: 2px;
  margin: 22px auto 0;
  width: min(1180px, calc(100% - 40px));
  background: var(--line);
  border-radius: 999px;
}

.kfi-main{
  flex:1;
  padding: 44px 20px 64px;
  text-align:center;
}

.kfi-main h1{
  margin: 0 auto;
  max-width: 980px;
  font-size: clamp(30px, 4vw, 58px);
  line-height: 1.12;
  font-weight: 700;
  color: var(--navy);
}

.kfi-sub{
  margin: 16px auto 0;
  max-width: 920px;
  font-size: clamp(16px, 1.6vw, 26px);
  line-height: 1.35;
  color: var(--navy-2);
}

.kfi-illustration{
  margin: 36px auto 28px;
  width: min(1180px, 100%);
}

.kfi-illustration img{
  display:block;
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 18px 40px var(--shadow);
}

.kfi-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 18px 44px;
  border-radius: 14px;
  background: linear-gradient(180deg, var(--btn), var(--btn-dark));
  color: #fff;
  font-weight: 700;
  text-decoration:none;
  font-size: clamp(18px, 1.8vw, 28px);
  box-shadow: 0 14px 26px rgba(217,119,67,.25);
  border: 1px solid rgba(255,255,255,.25);
  transform: translateY(0);
  transition: transform .12s ease, filter .12s ease;
}

.kfi-btn:hover{ transform: translateY(-1px); filter: brightness(1.02); }
.kfi-btn:active{ transform: translateY(0px); filter: brightness(.98); }

.kfi-foot{
  margin: 30px auto 0;
  max-width: 980px;
  font-size: clamp(16px, 1.4vw, 24px);
  color: var(--muted);
}

.kfi-byline{
  margin: 18px auto 0;
  text-align: center;
  color: var(--navy);
  font-size: 16px;      /* passt zur Seite */
  line-height: 1.4;
}

.kfi-byline-logo{
  display: inline-block;
  vertical-align: middle;
  height: 150px;         /* Logo-Höhe in der Textzeile */
  width: auto;
  margin-left: 5px;    /* Abstand zum Text */
}

/* Kleine Screens: etwas weniger Luft */
@media (max-width: 600px){
  .kfi-main{ padding-top: 32px; }
  .kfi-illustration img{ border-radius: 18px; }
}

/* Globaler Scale-Regler */
.kfi-page{
  zoom: var(--kfi-scale);
}

/* Fallback für Browser ohne zoom */
@supports not (zoom: 1){
  .kfi-page{
    transform: scale(var(--kfi-scale));
    transform-origin: top center;
  }
}
