:root {
    --hero-image: url("../bilder/home-news-bild.jpeg");
    --overlay: rgba(0, 0, 0, .55);
    --text: #ffffff;
    --muted: rgba(255, 255, 255, .85);
    --card: rgba(255, 255, 255, .10);
    --border: rgba(255, 255, 255, .18);
    --shadow: 0 20px 70px rgba(0, 0, 0, .45);
    --radius: 18px;
    --btn: #ffffff;
    --btnText: #0b0b0b;
    --btnHover: rgba(255, 255, 255, .92);
    --focus: 0 0 0 4px rgba(255, 255, 255, .25);
    --maxw: 980px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
    color: var(--text);
    background: #0b0b0b;
}

/* HERO */
.hero {
    min-height: 72vh;
    display: grid;
    place-items: center;
    padding: 56px 20px;
    position: relative;
    isolation: isolate;
    background:
        linear-gradient(var(--overlay), var(--overlay)),
        var(--hero-image);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    inset: -40px;
    background: radial-gradient(60% 60% at 50% 40%, rgba(255, 255, 255, .06), transparent 60%);
    z-index: -1;
    pointer-events: none;
}

.hero__inner {
    width: 100%;
    max-width: var(--maxw);
    text-align: center;
    padding: 34px 18px;
}

.hero h1 {
    margin: 0 0 12px;
    font-size: clamp(2rem, 5vw, 3.6rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    text-shadow: 0 10px 35px rgba(0, 0, 0, .4);
}

.hero p {
    margin: 0 auto 22px;
    max-width: 62ch;
    font-size: clamp(.95rem, 1.8vw, 1.1rem);
    color: var(--muted);
}

.hero__actions {
    display: grid;
    gap: 14px;
    place-items: center;
    margin-top: 12px;
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #ffb22e;
    /* Button-Text */
    background-color: #b01010;
    /* Button-Hintergrund */
    width: 10rem;
    padding: 0.85rem 1.75rem;
    border-radius: 999px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
    background: var(--btnHover);
    transform: translateY(-1px);
}

.btn:active {
    transform: translateY(0px) scale(.99);
}

.btn:focus-visible {
    outline: none;
    box-shadow: var(--shadow), var(--focus);
}

.social {
    display: flex;
    gap: 14px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 4px;
}

.social a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border-radius: 999px;
    text-decoration: none;
    color: var(--text);
    background: rgba(0, 0, 0, .22);
    border: 1px solid rgba(255, 255, 255, .16);
    backdrop-filter: blur(10px);
    transition: transform .12s ease, background .12s ease, border-color .12s ease;
}

.social a:hover {
    transform: translateY(-1px);
    background: rgba(0, 0, 0, .30);
    border-color: rgba(255, 255, 255, .28);
}

.icon {
    width: 18px;
    height: 18px;
    display: inline-block;
}

/* MODAL */
.modal {
    position: fixed;
    inset: 0;
    display: none;
    place-items: center;
    padding: 22px;
    background: rgba(0, 0, 0, .55);
    z-index: 9999;
}

.modal[aria-hidden="false"] {
    display: grid;
}

.modal__dialog {
    width: min(560px, 100%);
    background: rgba(15, 15, 15, .92);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
    overflow: hidden;
}

.modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, .10);
}

.modal__title {
    margin: 0;
    font-size: 1.05rem;
    letter-spacing: .01em;
}

.modal__close {
    background: transparent;
    border: 0;
    color: var(--text);
    cursor: pointer;
    border-radius: 10px;
    padding: 8px;
    line-height: 0;
}

.modal__close:focus-visible {
    outline: none;
    box-shadow: var(--focus);
}

.modal__body {
    padding: 18px;
    display: grid;
    gap: 12px;
}

.platform {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 14px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .06);
    text-decoration: none;
    color: var(--text);
    transition: transform .12s ease, background .12s ease, border-color .12s ease;
}

.platform:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, .09);
    border-color: rgba(255, 255, 255, .22);
}

.platform__left {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.platform__name {
    font-weight: 800;
    letter-spacing: .01em;
}

.platform__hint {
    font-size: .9rem;
    color: rgba(255, 255, 255, .78);
}

.pill {
    font-size: .85rem;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(0, 0, 0, .25);
    border: 1px solid rgba(255, 255, 255, .14);
    color: rgba(255, 255, 255, .9);
    white-space: nowrap;
}

/* Small screens spacing */
@media (max-width: 420px) {
    .platform {
        padding: 12px;
    }

    .pill {
        display: none;
    }
}











/* Optional Fonts (ähnlicher Look wie Screenshot) */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Inter:wght@400;500;600&display=swap");


.city-split {
    background: #f3d9cd;
    padding: clamp(28px, 4vw, 64px) clamp(18px, 4vw, 64px);
}

.city-split__inner {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    /* links breiter, rechts Bildblock */
    align-items: center;
    gap: clamp(18px, 3vw, 56px);
}

/* LEFT */
.city-split__left {
    padding: clamp(6px, 1.5vw, 18px);
}

.city-split__kicker {
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #7a1717;
    margin-bottom: 18px;
}

.city-split__title {
    font-family: "Playfair Display", serif;
    color: #7a1717;
    margin: 0;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: .92;
    font-size: clamp(56px, 7vw, 132px);
}

.city-split__address {
    margin-top: 26px;
    display: inline-block;
}

.city-split__address-row {
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(31, 26, 24, .78);
    margin: 0;
}

.city-split__address-row--center {
    text-align: center;
}

.city-split__line {
    height: 1px;
    width: 220px;
    background: #1f1a18;
    margin: 10px auto;
}

/* RIGHT IMAGE BLOCK */
.city-split__right {
    display: flex;
    justify-content: flex-end;
    /* Bild rechts bündig */
}

.city-split__image {
    margin: 0;
    width: min(540px, 100%);
}





/* Optional: Fonts (ähnlicher Look) */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Inter:wght@400;600;700&display=swap");

/* SECTION WRAPPER */
.oh-section {
    background: #f3d9cd;
    /* peach */
    padding: clamp(24px, 4vw, 52px);
}

/* INNER LAYOUT */
.oh-inner {
    max-width: 1240px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: clamp(18px, 3vw, 44px);
    align-items: start;
}

/* IMPORTANT: prevents grid overflow */
.oh-photo,
.oh-content {
    min-width: 0;

}

/* LEFT IMAGE BLOCK */
.oh-photo {
    padding: 10px;
}

.oh-photo img {
    width: 100%;
    height: auto;
    max-height: 40vh;
    display: block;
    object-fit: cover;
    aspect-ratio: 4 / 5;
}

/* RIGHT CONTENT */
.oh-content {
    padding-top: 8px;
}

.oh-title {
    margin: 0 0 24px;
    text-align: center;
    font-family: "Playfair Display", serif;
    font-weight: 700;
    color: #7a1717;
    font-size: clamp(44px, 5.2vw, 86px);
    line-height: .95;
    letter-spacing: -0.02em;
}

/* GRID TABLE */
.oh-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: clamp(36px, 5vw, 100px);
    row-gap: 0;
}

.oh-row {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 22px 0;
}

.oh-label {
    font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: .22em;
    font-size: 13px;
    color: #111;
}

.oh-value {
    font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-size: 20px;
    letter-spacing: .02em;
    color: #111;
}

.oh-divider {
    grid-column: 1 / -1;
    height: 1px;
    background: rgba(0, 0, 0, .35);
}

/* DELIVERY label stacked */
.oh-delivery .oh-label {
    line-height: 1.1;
}

/* Responsive */
@media (max-width: 980px) {
    .oh-inner {
        grid-template-columns: 1fr;
    }

    .oh-title {
        text-align: left;
    }

    .oh-photo img {
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 640px) {
    .oh-grid {
        grid-template-columns: 1fr;
    }

    .oh-divider {
        display: none;
    }

    .oh-row {
        border-top: 1px solid rgba(0, 0, 0, .25);
    }

    .oh-row:first-child {
        border-top: 0;
    }
}




/* STACK LAYOUT: image first, text second */
@media (max-width: 900px) {

  .city-split__inner{
    grid-template-columns: 1fr;
  }

  .city-split__right{
    order: 1; /* Bild zuerst */
    justify-content: center;
  }

  .city-split__left{
    order: 2; /* Text danach */
    text-align: center;
  }

  .city-split__image{
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
  }

  .city-split__image img{
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 30vh;
  }

  .city-split__line{
    margin-left: auto;
    margin-right: auto;
  }
}





/* Contact Section (Screenshot-Style) */
.ct-section{
  background:#f3d9cd;
  padding: clamp(26px, 4vw, 56px);
}

/* layout */
.ct-inner{
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, .95fr);
  gap: clamp(18px, 3vw, 54px);
  align-items: start;
}

/* important: prevent overflow in grid */
.ct-content,
.ct-media,
.ct-figure{
  min-width: 0;
}

/* title */
.ct-title{
  margin: 0 0 34px;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: #7a1717;
  font-size: clamp(56px, 7vw, 132px);
  line-height: .92;
  letter-spacing: -0.02em;
}

/* list */
.ct-list{
  width: 100%;
  max-width: 860px; /* makes lines feel like screenshot */
}

.ct-item{
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 26px;
  align-items: start;
  padding: 18px 0;
}

.ct-label{
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: .22em;
  font-size: 13px;
  color:#111;
  line-height: 1.35;
}

.ct-value{
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 18px;
  color:#111;
  letter-spacing: .01em;
  line-height: 1.5;
}

.ct-link{
  color:#111;
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,.35);
}
.ct-link:hover{
  border-bottom-color: rgba(0,0,0,.65);
}

/* divider lines */
.ct-divider{
  height: 1px;
  width: 100%;
  background: rgba(0,0,0,.35);
}

/* image */
.ct-media{
  display:flex;
  justify-content:flex-end;
}

.ct-figure{
  margin: 0;
  width: min(520px, 100%);
}

.ct-figure img{
  max-height: 40vh;
}

.ct-figure img{
  width: 100%;
  height: auto;
  display:block;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

/* responsive: stack like you wanted (image first, then text) */
@media (max-width: 980px){
  .ct-inner{
    grid-template-columns: 1fr;
  }

  .ct-media{
    order: 1;           /* image first */
    justify-content: center;
  }

  .ct-content{
    order: 2;           /* text second */
  }

  .ct-title{
    text-align: left;
  }

  .ct-list{
    max-width: 100%;
  }
}

/* small screens: label/value under each other */
@media (max-width: 640px){
  .ct-item{
    grid-template-columns: 1fr;
    gap: 10px;
  }
}


