/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/Other/CascadeStyleSheet.css to edit this template
*/
/* 
    london2026.css    
    Created on : 29.12.2025, 12:52:57
    Author     : Heinz Ernst
*/


:root {
    --bg: #f5f3eb;          /* heller, warmer Hintergrund */
    --card: #ffffff;
    --accent: #e63946;      /* rot */
    --accent2: #f7b500;     /* warmes Gelb */
    --text: #222222;
    --muted: #666666;
    --border: #ded6c4;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    background: radial-gradient(circle at top, #fff7da 0, #f5f3eb 55%);
    color: var(--text);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
}

/* Grundlayout */
.wrap {
    max-width: 840px;
    margin: 32px auto 40px;
    padding: 0 16px 32px;
}

/* HERO / Header-Bild */
.hero { margin-bottom: 18px; }

.hero-image {
    display: block;
    width: 100%;
    max-width: 880px;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 14px 40px rgba(0,0,0,0.25);
}

/* Sektionen / Karten */
.section {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 18px 18px 16px;
    margin-bottom: 18px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}

.section h2 {
    margin: 2px 0 10px 0;
    font-size: 20px;
    color: #1e1b18;
}

.section p {
    margin: 4px 0 8px 0;
    font-size: 15px;
}

/* Zwei-Spalten-Layout im oberen Block */
.grid-2 {
    display: grid;
    grid-template-columns: 2.1fr 1.4fr;
    gap: 18px;
}

@media (max-width: 720px) {
    .wrap { margin-top: 16px; }
    .grid-2 { grid-template-columns: 1fr; }
}

/* Fact-Box rechts */
.fact-box {
    background: #fff9e3;
    border-radius: 10px;
    border: 1px solid #f1d9a0;
    padding: 10px 12px;
    font-size: 15px;
}

.fact-box p:first-child {
    margin: 0 0 6px;
    font-weight: 700;
}

/* Liste in der Fact-Box (mit roten Bullets) */
.fact-list {
    list-style: none;
    margin: 0;
    padding-left: 0;
}

.fact-list li {
    position: relative;
    padding-left: 1.2rem;
    margin-bottom: 4px;
    line-height: 1.4;
}

.fact-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #c8454e;
    font-size: 1.1em;
    line-height: 1;
}

/* Formular */
#interesse h2 { margin-top: 0; }

.success-box {
    background: #e2f6e9;
    border: 1px solid #9ad0ae;
    color: #20563a;
    border-radius: 8px;
    padding: 10px 12px;
    margin-bottom: 12px;
    font-size: 14px;
}

.form-row { margin-bottom: 10px; }

/* Kompakteres 2-Spalten-Layout im Formular (Desktop) */
.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 16px;
    row-gap: 10px;
    margin-bottom: 8px;
}

/* Auf kleineren Screens Felder untereinander */
@media (max-width: 720px) {
    .form-grid-2 { grid-template-columns: 1fr; }
}

label {
    display: block;
    font-size: 14px;
    margin-bottom: 3px;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 7px 8px;
    border-radius: 6px;
    border: 1px solid #c9c2b5;
    font-size: 14px;
    font-family: inherit;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
    outline: none;
    border-color: #e88a2a;
    box-shadow: 0 0 0 2px rgba(232,138,42,0.22);
}

textarea {
    resize: vertical;
    min-height: 70px;
}

.note {
    font-size: 12px;
    color: var(--muted);
    margin-top: 4px;
}

/* Buttons */
.btn {
    display: inline-block;
    border: none;
    cursor: pointer;
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: transform 0.08s ease, box-shadow 0.08s ease, background-color 0.12s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #e63946, #f78f1e);
    color: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.18);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.24);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0,0,0,0.18);
}

/* Honeypot-Feld für Spam-Schutz */
.hp-field {
    position: absolute;
    left: -9999px;
    top: -9999px;
    height: 0;
    overflow: hidden;
}

/* Footer */
footer {
    margin-top: 12px;
    font-size: 12px;
    color: var(--muted);
    text-align: center;
}

footer a {
    color: #c64b24;
    text-decoration: none;
}

footer a:hover { text-decoration: underline; }

/* Header / Navigation */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 12px;
    gap: 16px;
}

.site-title {
    font-size: 14px;
    line-height: 1.3;
}

.site-title strong { font-size: 18px; }

.main-nav {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.main-nav a {
    text-decoration: none;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 14px;
    border: 1px solid transparent;
    color: #333;
}

.main-nav a:hover {
    background: #f0e6d5;
    border-color: #e0d2bc;
}

.main-nav a.active {
    background: #b3273b;
    border-color: #8f1f30;
    color: #fff;
}

/* Navigation auf schmalen Bildschirmen */
@media (max-width: 720px) {
    .site-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .site-title { font-size: 13px; }
    .site-title strong { font-size: 17px; }

    .main-nav { gap: 6px; row-gap: 6px; }
    .main-nav a { padding: 6px 10px; font-size: 13px; }
}

/* Mobile: allgemeine Anpassungen */
@media (max-width: 720px) {
    .wrap {
        margin: 16px auto 24px;
        padding: 0 12px 24px;
    }

    .hero { margin-bottom: 14px; }

    .hero-image {
        border-radius: 14px;
        box-shadow: 0 10px 26px rgba(0,0,0,0.22);
    }

    .section {
        margin-bottom: 14px;
        padding: 14px 14px 12px;
        border-radius: 12px;
    }

    .section h2 { font-size: 18px; }
    .section p { font-size: 14px; }
}

@media (max-width: 720px) {
    .form-row { margin-bottom: 8px; }

    input[type="text"],
    input[type="email"],
    textarea {
        font-size: 15px;
        padding: 8px 9px;
    }

    .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* Passdaten-Hinweis (dezent) */
.pass-note{
  margin:10px 0 14px;
  padding:10px 12px;
  border:1px solid #e7dcc8;
  background:#fbf6ea;
  border-radius:10px;
  font-size:13px;
  color:#5f4a2a;
  line-height:1.35;
}
.pass-note strong{ font-weight:700; }
.pass-note--mini{
  margin-top:8px;
  padding:8px 10px;
  font-size:12.5px;
}

/* -------------------------------------------------------
   Programm-Seite: Reisedaten/Hotel-Karten + Tages-Teaser
-------------------------------------------------------- */

.info-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 10px;
}

@media (max-width: 760px){
    .info-grid{ grid-template-columns: 1fr; }
}

.info-card{
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 16px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.info-card h3{ margin: 0 0 8px 0; }
.info-card p{ margin: 6px 0; }

.muted{
    margin-top: 10px;
    font-size: 0.95em;
    color: var(--muted);
    opacity: 0.95;
}

.subhead{
    margin-top: 12px;
    font-size: 1.05em;
}

.bullets{ margin: 8px 0 0 18px; }

.day-teaser{
    background: #f5f1e3;
    border: 1px solid #e0d6c4;
    border-radius: 10px;
    padding: 10px 12px;
    margin: 10px 0 10px;
}

.day-teaser ul{ margin: 0 0 0 18px; }

.day-teaser li{
    margin: 4px 0;
    line-height: 1.4;
}

/* =========================
   Programm: Info-Cards (Variante B = gestapelt)
========================= */
.info-grid--stacked{
  grid-template-columns: 1fr; /* Karten untereinander */
}

/* =========================
   Programm: Flugbox (Hin/Rück nebeneinander)
========================= */
.flight-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 8px 0 10px;
}

.flight-item{
  border: 1px solid #e7dcc8;
  border-radius: 10px;
  padding: 10px 12px;
  background: #fbf6ea;
  line-height: 1.4;
}

.flight-label{
  font-size: 12px;
  font-weight: 700;
  color: #b3273b;
  margin-bottom: 6px;
  letter-spacing: .02em;
  text-transform: uppercase;
}

@media (max-width: 760px){
  .flight-grid{ grid-template-columns: 1fr; }
}

/* =========================
   Programm: Details (Optionaler Event)
========================= */
.details-tour{
  border: 1px solid #e7dcc8;
  border-radius: 10px;
  padding: 10px 12px;
  background: #fff;
  margin: 10px 0 12px;
}

.details-tour[open]{
  background: #fbf6ea;
  box-shadow: 0 6px 16px rgba(0,0,0,0.06);
}

.details-tour summary{
  cursor: pointer;
  list-style: none;
}
.details-tour summary::-webkit-details-marker{ display:none; }

/* Summary-Layout: Hint rechts */
.details-link{
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.details-hint{
  margin-left: auto;
  font-weight: 600;
  color: #b3273b;
  text-decoration: underline;
  white-space: nowrap;
}

.details-tour summary:hover .details-hint{ color:#8f1f30; }

.details-hint .when-open{ display:none; }
.details-tour[open] .details-hint .when-open{ display:inline; }
.details-tour[open] .details-hint .when-closed{ display:none; }

.details-tour[open] .details-hint{
  text-decoration: none;
  opacity: 0.85;
}

.details-body{ margin-top: 10px; }

/* Optional-Badge (schöner als nur <strong>) */
.badge-optional{
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .02em;
  background: #fff2f2;
  border: 1px solid #f2b8b8;
  color: #b3273b;
  vertical-align: baseline;
}


/* =========================
   Programm: Hotel-Card (Text links, Bild rechts – Bild grösser)
========================= */

.hotel-card .hotel-top{
  display: grid;
  grid-template-columns: 1fr 260px;   /* Text links, Bild rechts */
  gap: 16px;
  align-items: start;
  margin-bottom: 10px;
}

.hotel-card .hotel-figure{
  margin: 0;
}

.hotel-card .hotel-img{
  width: 100%;
  height: 160px;                      /* Bild grösser */
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 22px rgba(0,0,0,0.08);
  display: block;
}

.hotel-card .hotel-linkrow{
  margin: 6px 0 0;
  font-size: 14px;
}

.hotel-card .hotel-link{
  display: inline-block;
  color: #b3273b;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.hotel-card .hotel-link:hover{
  color: #8f1f30;
}

/* Mobile: Bild oben, Text darunter */
@media (max-width: 760px){
  .hotel-card .hotel-top{
    grid-template-columns: 1fr;
  }
  .hotel-card .hotel-img{
    height: auto;
    aspect-ratio: 4 / 3;
  }
}


/* -------------------------
   Bullets kompakter + weniger "rechts"
------------------------- */

.bullets--compact{
  margin: 8px 0 0;
  padding-left: 18px;     /* weniger Einzug */
}

.bullets--compact li{
  margin: 3px 0;
  line-height: 1.35;
}

/* Strong in Listen etwas "leichter", wirkt weniger "schreiend" */
.bullets--compact li strong{
  font-weight: 650;
}
/* Bullets: standard etwas ruhiger */
.bullets{
  margin: 8px 0 0;
  padding-left: 18px;     /* weniger nach rechts */
}
.bullets li{
  margin: 4px 0;
  line-height: 1.45;
}

/* Kompakter (für Hotel-Distanzen & ähnliche Listen) */
.bullets--compact{
  padding-left: 16px;
}
.bullets--compact li{
  margin: 3px 0;
}

/* Freitag-Liste: auf Desktop zweispaltig, wirkt luftiger */
.bullets-cols{
  column-count: 2;
  column-gap: 26px;
}
@media (max-width: 760px){
  .bullets-cols{ column-count: 1; }
}

/* verhindert, dass einzelne Listeneinträge unschön umbrechen */
.station-list li{
  break-inside: avoid;
}


/* Hotel-Bullets: weniger “wuchtig” + weniger Einzug */
.bullets--soft{
  margin-left: 0;          /* überschreibt dein margin-left */
  padding-left: 0;
  list-style: none;
}

.bullets--soft li{
  position: relative;
  padding-left: 1.15rem;
  margin: 4px 0;
  line-height: 1.45;
}

.bullets--soft li::before{
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #c8454e;
  opacity: 0.85;
  line-height: 1.2;
}

/* =========================
   Programm: Stationen-Liste freundlicher
   (nicht mehr alles fett)
========================= */

.station-list{
  margin-left: 0;          /* überschreibt dein margin-left */
  padding-left: 0;
  list-style: none;
}

.station-list li{
  position: relative;
  padding-left: 1.15rem;
  margin: 4px 0;
  line-height: 1.42;
}

.station-list li::before{
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #c8454e;
  line-height: 1.2;
}

/* Ort/Station leicht betont, aber nicht “fett & fett & fett” */
.station-place{
  font-weight: 500;
  color: #2a2420;
}

/* Beatles-Namen / Key-Begriffe bleiben fett */
.station-list strong{
  font-weight: 650;
  color: #b3273b;
}


.station-note{
  margin-top: 2px;
  margin-bottom: 10px;
  font-size: 0.95em;
  opacity: 0.9;
}

/* -------------------------------------------------------
   Anmeldung: kleine UI-Helfer (Verfügbarkeiten + Radio-Gruppen)
-------------------------------------------------------- */

.availability-row{
  margin: 6px 0 10px;
  font-size: 13px;
  color: var(--muted);
}

.availability{
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  white-space: nowrap;
}

.availability--warn{
  color: #b3273b;
}

.radio-group{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.radio-group label{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid #e0d2bc;
  background: #f7f2e7;
  font-weight: 600;
}

.radio-group input[type="radio"]{
  margin: 0;
}

/* =====================================================
   ANMELDUNG: Preis-Übersicht (Live-Summary)
===================================================== */

.price-card{
  margin-top: 14px;
  background: #fff9e3;
  border: 1px solid #f1d9a0;
  border-radius: 12px;
  padding: 12px 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.price-card h3{
  margin: 0 0 8px 0;
  font-size: 16px;
}

.price-list{
  margin: 0;
}

.price-row{
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 4px 0;
  border-bottom: 1px dashed rgba(0,0,0,0.08);
}

.price-row:last-child{
  border-bottom: none;
}

.price-row dt{
  margin: 0;
  color: var(--muted);
}

.price-row dd{
  margin: 0;
  font-weight: 650;
  text-align: right;
}

.price-total-row{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding-top: 10px;
  margin-top: 6px;
  border-top: 1px solid rgba(0,0,0,0.10);
  font-weight: 800;
}

.price-total{
  font-size: 18px;
  color: #1e1b18;
}

@media (max-width: 520px){
  .price-row{
    flex-direction: column;
    gap: 2px;
  }
  .price-row dd{
    text-align: left;
  }
}

/* Kostenübersicht im Formular: erst anzeigen, wenn Form “ready” */
.price-card { display: none; }
.price-card.is-visible { display: block; }

.option-card{
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(0,0,0,.03);
  border-radius: 12px;
  padding: 14px 16px;
  margin: 14px 0;
}
.option-card .note{
  margin-top: 8px;
}

/* ===== London2026: Package-Box + Alerts (am Ende von london2026.css einfügen) ===== */

/* Unified availability notice box (Hinweis/Achtung) */
.notice{
  border: 1px solid #ddd;
  border-left-width: 6px;
  border-radius: 12px;
  padding: 14px 16px;
  margin: 14px 0 18px;
  background: #f7f7f7;
  color: #222;
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
}
.notice__title{ font-weight: 700; margin-bottom: 6px; }
.notice__text{ line-height: 1.4; }
.notice--warn{
  border-color: #f1c40f;
  background: #fff8db;
}
.notice--alert{
  border-color: #e67e22;
  background: #fff0e0;
}

/* Prominente Success/Error Meldungen */
.alert{
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 14px 16px;
  margin: 14px 0 18px;
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
}
.alert strong{ display:block; margin-bottom:6px; }
.alert ul{ margin: 8px 0 0 18px; }

.alert-success{
  background: #e8f7ee;
  border-color: #35a86a;
  color: #165b2c;
}

.alert-error{
  background: #fdecea;
  border-color: #d93025;
  color: #7a1b14;
}

/* Kosten/Leistungen-Box oben im Formular */
.package-card{
  border: 1px solid #e8e2d6;
  background: #fffdf9;
  border-radius: 16px;
  padding: 16px 18px;
  margin: 18px 0 22px;
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
}
.package-card h3{ margin: 0 0 10px; }
.package-price{ margin: 0 0 10px; }
.package-card ul{
  margin: 10px 0 12px 18px;
}
.package-card li{ margin: 4px 0; }
.package-note{ margin: 10px 0 0; }
.package-note--muted{ opacity: .9; }

/* Kleine Fussnote */
.package-footnote{ font-size: .95em; opacity: .9; }

/* ===== Paket-Box (Kosten/Leistungen) ===== */
.package-box{
  border:1px solid rgba(20,40,80,.18);
  background:rgba(20,40,80,.04);
  border-radius:16px;
  padding:16px 18px;
  margin:14px 0 18px;
}
.package-box__head{display:flex;flex-wrap:wrap;gap:10px;align-items:baseline;justify-content:space-between;margin-bottom:10px;}
.package-box__head h3{margin:0;font-size:1.15rem;}
.package-box__price{margin:0;font-weight:600;}
.package-box__sep{opacity:.5;margin:0 .4rem;}
.package-box__muted{opacity:.75;font-weight:500;}
.package-box h4{margin:12px 0 6px;font-size:1rem;}
.package-box ul{margin:0 0 0 18px;}
.package-box li{margin:4px 0;}
.package-box .note{margin-top:10px;}

/* Package-Übersicht: untereinander statt 3 Spalten */
.package-box__stack{display:block;}
.package-section{margin-top:12px;padding:12px 14px;border:1px solid rgba(0,0,0,.08);border-radius:12px;background:rgba(255,255,255,.75);}
.package-section:first-child{margin-top:10px;}
.package-section h4{margin:0 0 8px;font-size:1rem;}
.package-section ul{margin:0 0 0 18px;}
.package-section li{margin:6px 0;}

/* ===== Alerts (Success/Error) ===== */
.alert{
  border-radius:16px;
  padding:14px 16px;
  margin:14px 0 18px;
  border:1px solid rgba(0,0,0,.12);
  box-shadow:0 10px 25px rgba(0,0,0,.06);
}
.alert strong{display:block;margin-bottom:6px;}
.alert ul{margin:8px 0 0 18px;}

.alert.alert-success{
  background:rgba(25,135,84,.10);
  border-color:rgba(25,135,84,.35);
}
.alert.alert-error{
  background:rgba(220,53,69,.08);
  border-color:rgba(220,53,69,.35);
}


/* ===== Styles für Modal Einreisebestimmungen ===== */
.linklike{
  background: none;
  border: 0;
  padding: 0;
  color: inherit;
  text-decoration: underline;
  cursor: pointer;
  font: inherit;
}

.modal{
  width: min(820px, calc(100% - 32px));
  border: 0;
  border-radius: 14px;
  padding: 0;
  overflow: hidden;
}

.modal::backdrop{
  background: rgba(0,0,0,0.55);
}

.modal__header{
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.modal__body{
  padding: 14px 16px;
  max-height: min(70vh, 520px);
  overflow: auto;
}

.modal__footer{
  padding: 14px 16px;
  border-top: 1px solid rgba(0,0,0,0.08);
  display:flex;
  justify-content: flex-end;
}

.modal__close{
  background: none;
  border: 0;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.alert.alert-warning{
  border: 1px solid #e6c200;
  background: #fff8d6;
  color: #3b2f00;
}

.warn-lines { margin-top: 6px; }
.warn-lines br { line-height: 1.2; }/* Alert-Überschrift darf Block sein */
.alert > strong { display: block; margin-bottom: 6px; }

/* Zahlen in den Warnzeilen müssen inline bleiben */
.alert .warn-lines strong {
  display: inline;
  margin: 0;
  padding: 0;
  font-weight: 700;
}









