/* ============================================================
   Points Travel Tech Austria – pointstraveltech.at
   Design: "Gradient Bold" (Richtung 1C)
   ============================================================ */

/* ---------- Fonts (lokal gehostet, SIL OFL) ---------- */
@font-face {
  font-family: "Space Grotesk";
  src: url("../fonts/SpaceGrotesk.woff2") format("woff2");
  font-weight: 300 700;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope.woff2") format("woff2");
  font-weight: 200 800;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --red: #C1272D;
  --burgundy: #660033;
  --plum: #4A1233;
  --dark: #1E0812;
  --sand: #E6D3A3;
  --sand-deep: #D9C288;
  --ink: #2B1220;
  --muted: #705A66;
  --line: #EBDFE5;
  --paper: #FFFFFF;
  --grad: linear-gradient(120deg, #660033 0%, #97162F 55%, #C1272D 100%);
  --grad-soft: linear-gradient(135deg, #7A0F35 0%, #C1272D 100%);
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 10px 30px rgba(74, 18, 51, 0.16);
  --font-head: "Space Grotesk", "Segoe UI", sans-serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.15;
  margin: 0 0 0.5em;
  font-weight: 700;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); }
h3 { font-size: 1.25rem; }
p  { margin: 0 0 1em; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section { padding: 84px 0; }
.section--tight { padding: 56px 0; }

/* Eyebrow-Label */
.eyebrow {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--red);
  margin-bottom: 14px;
}
.section--dark .eyebrow, .on-grad .eyebrow { color: var(--sand); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--sand { background: var(--sand); color: var(--plum); }
.btn--sand:hover { background: var(--sand-deep); }
.btn--ghost { border-color: rgba(255,255,255,0.65); color: #fff; }
.btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.btn--red { background: var(--red); color: #fff; }
.btn--red:hover { background: #A81F26; }
.btn--outline { border-color: var(--red); color: var(--red); }
.btn--outline:hover { background: var(--red); color: #fff; }
.btn--disabled { background: #EFE8EC; color: var(--muted); cursor: default; pointer-events: none; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: relative;
  z-index: 20;
}
.site-header .container {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 20px;
  padding-bottom: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
}
.brand:hover { text-decoration: none; }
.brand img { width: 42px; height: 42px; border-radius: 50%; box-shadow: 0 0 0 2px rgba(255,255,255,0.85); }
.nav { margin-left: auto; display: flex; align-items: center; gap: 26px; }
.nav a {
  color: rgba(255,255,255,0.92);
  font-weight: 600;
  font-size: 0.95rem;
}
.nav a:hover { color: #fff; text-decoration: none; }
.nav a.is-active { color: var(--sand); }
.nav .btn { padding: 10px 20px; }
.nav-toggle, .nav-toggle-label { display: none; }

/* ---------- Hero (Gradient) ---------- */
.hero {
  background: var(--grad);
  color: #fff;
  overflow: hidden;
  position: relative;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 85% 10%, rgba(255,255,255,0.10), transparent 45%),
    radial-gradient(ellipse at 5% 95%, rgba(30,8,18,0.35), transparent 55%);
  pointer-events: none;
}
.hero > .container { position: relative; z-index: 2; }
.hero-inner { padding: 64px 0 72px; max-width: 720px; }
.hero-badge {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 999px;
  padding: 8px 18px;
  margin-bottom: 26px;
  color: rgba(255,255,255,0.95);
}
.hero h1 { color: #fff; margin-bottom: 20px; }
.hero h1 .accent { color: var(--sand); }
.hero p.lead {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.88);
  max-width: 540px;
  margin-bottom: 32px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero-Bildband */
.hero-media {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  max-width: 1092px;
  padding: 0 24px 64px;
}
.hero-media .frame {
  border-radius: var(--radius);
  overflow: hidden;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.10) 0 18px, rgba(255,255,255,0.02) 18px 36px);
  border: 1px solid rgba(255,255,255,0.25);
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-media .frame img { width: 100%; height: 340px; object-fit: cover; object-position: center 30%; }
.hero-media .frame .placeholder-note {
  font-family: var(--font-head);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.7);
  padding: 80px 20px;
}

/* Sub-Hero für Unterseiten */
.page-hero { background: var(--grad); color: #fff; position: relative; }
.page-hero .hero-inner { padding: 40px 0 56px; }
.page-hero p.lead { margin-bottom: 0; }

/* ---------- Über-mich-Block ---------- */
.split {
  display: grid;
  grid-template-columns: minmax(280px, 440px) 1fr;
  gap: 56px;
  align-items: center;
}
.portrait {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.portrait img { width: 100%; height: 100%; object-fit: cover; }
.portrait--tall img { aspect-ratio: 4 / 5; }
.figure-caption {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 10px;
}

.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 28px; }
.stat-card {
  background: var(--grad-soft);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  box-shadow: var(--shadow);
}
.stat-card .num { font-family: var(--font-head); font-size: 1.7rem; font-weight: 700; line-height: 1.1; }
.stat-card .lbl { font-size: 0.82rem; opacity: 0.9; }

/* ---------- Karten / Angebote ---------- */
.card-grid { display: grid; gap: 24px; }
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }

.card {
  border-radius: var(--radius);
  padding: 34px 30px;
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}
.card .btn { margin-top: auto; }
.card p { color: var(--muted); }
.card--grad {
  background: var(--grad-soft);
  border: none;
  color: #fff;
  box-shadow: var(--shadow);
}
.card--grad h3 { color: #fff; }
.card--grad p { color: rgba(255,255,255,0.88); }

/* Produktkarten (Kreditkarten) */
.product-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.product-card .art {
  border-radius: var(--radius-sm);
  background: var(--grad-soft);
  aspect-ratio: 16 / 9.5;
  display: flex;
  align-items: flex-end;
  padding: 14px;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.85);
  font-family: var(--font-head);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.product-card .art--img {
  background: var(--grad-soft);
  display: block;
  aspect-ratio: auto;
  height: auto;
  padding: 18px 22px;
}
.product-card .art--img img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 18px rgba(20, 5, 12, 0.4));
}
.country-badge {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: #F7E7E8;
  color: var(--red);
  border-radius: 999px;
  padding: 4px 12px;
  margin-bottom: 2px;
}
.product-card h3 { margin-bottom: 2px; font-size: 1.08rem; }
.product-card p { color: var(--muted); font-size: 0.92rem; margin-bottom: 8px; }
.product-card ul { margin: 0 0 14px; padding-left: 18px; color: var(--muted); font-size: 0.92rem; }
.product-card li { margin-bottom: 4px; }
.product-card .btn { align-self: center; text-align: center; margin-top: auto; }

.ad-badge {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: #F7EDE0;
  color: #8A6D3B;
  border-radius: 999px;
  padding: 5px 14px;
  vertical-align: middle;
}
.fineprint { font-size: 0.82rem; color: var(--muted); }

/* ---------- Dunkle Sektion (Videos) ---------- */
.section--dark {
  background: var(--dark);
  color: #fff;
}
.section--dark h2 { color: #fff; }
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}
.section-head h2 { margin: 0; }

.video-card {
  display: block;
  color: #fff;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  transition: transform 0.15s ease, border-color 0.15s ease;
}
.video-card:hover { transform: translateY(-4px); text-decoration: none; border-color: rgba(255,255,255,0.35); }
.video-card .thumb {
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(ellipse at 70% 20%, rgba(230,211,163,0.18), transparent 55%),
    var(--grad-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.video-card .thumb img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.video-card .play {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: rgba(30,8,18,0.55);
  border: 2px solid rgba(255,255,255,0.85);
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 2;
}
.video-card .play::after {
  content: "";
  border-style: solid;
  border-width: 9px 0 9px 15px;
  border-color: transparent transparent transparent #fff;
  margin-left: 4px;
}
.video-card .meta { padding: 14px 16px 18px; }
.video-card .meta h3 { font-size: 0.98rem; margin: 0; line-height: 1.35; }

/* ---------- Timeline (Über mich) ---------- */
.timeline { list-style: none; margin: 0; padding: 0; position: relative; }
.timeline::before {
  content: "";
  position: absolute;
  left: 7px; top: 6px; bottom: 6px;
  width: 2px;
  background: linear-gradient(var(--burgundy), var(--red));
  border-radius: 2px;
}
.timeline li { position: relative; padding: 0 0 26px 36px; }
.timeline li::before {
  content: "";
  position: absolute;
  left: 0; top: 6px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--grad-soft);
  box-shadow: 0 0 0 3px #fff, 0 0 0 4px var(--line);
}
.timeline .year {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--red);
  display: block;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

/* Badges-Reihe (Status) */
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0; }
.chip {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  border: 1.5px solid var(--red);
  color: var(--red);
  border-radius: 999px;
  padding: 8px 18px;
}
.chip--fill { background: var(--grad-soft); border: none; color: #fff; }

/* ---------- Ablauf-Schritte (Coaching) ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: step; }
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--sand-deep);
  display: block;
  margin-bottom: 10px;
}
.step h3 { font-size: 1.05rem; }
.step p { color: var(--muted); font-size: 0.94rem; margin: 0; }

/* Feature-Liste */
.feature-list { list-style: none; margin: 0 0 24px; padding: 0; }
.feature-list li {
  padding-left: 34px;
  position: relative;
  margin-bottom: 14px;
}
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 3px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--grad-soft);
}
.feature-list li::after {
  content: "";
  position: absolute;
  left: 7px; top: 8px;
  width: 5px; height: 9px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(40deg);
}

/* ---------- Calendly Consent-Box ---------- */
.embed-consent {
  border: 2px dashed var(--line);
  border-radius: var(--radius);
  padding: 44px 30px;
  text-align: center;
  background: #FBF7F9;
}
.embed-consent p { color: var(--muted); max-width: 520px; margin: 0 auto 18px; font-size: 0.94rem; }
.embed-frame { border: none; width: 100%; min-height: 760px; border-radius: var(--radius); }

/* ---------- CTA-Band ---------- */
.cta-band {
  background: var(--grad);
  border-radius: var(--radius);
  color: #fff;
  padding: 52px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  box-shadow: var(--shadow);
}
.cta-band h2 { color: #fff; margin: 0 0 6px; }
.cta-band p { margin: 0; color: rgba(255,255,255,0.88); }

/* ---------- Prose (Impressum / Datenschutz) ---------- */
.prose { max-width: 780px; }
.prose h2 { margin-top: 2em; font-size: 1.5rem; }
.prose h3 { margin-top: 1.6em; }
.prose h4 { margin-top: 1.4em; font-size: 1.02rem; }
.prose ul { padding-left: 22px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.8);
  padding: 44px 0 36px;
  font-size: 0.92rem;
}
.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.site-footer .brand { font-size: 0.98rem; }
.site-footer .brand img { width: 36px; height: 36px; }
.social-row { display: flex; gap: 10px; flex-wrap: wrap; }
.social-row a {
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 999px;
  padding: 7px 16px;
}
.social-row a:hover { text-decoration: none; border-color: var(--sand); color: var(--sand); }
.legal-row a { color: rgba(255,255,255,0.75); margin-left: 18px; }
.legal-row a:hover { color: #fff; }
.footer-note {
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 36px; }
  .card-grid--3 { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .section { padding: 60px 0; }
  .card-grid--2, .card-grid--3 { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
  .stat-card { padding: 14px; }
  .stat-card .num { font-size: 1.3rem; }
  .cta-band { padding: 36px 28px; }

  /* Mobile Nav */
  .nav-toggle-label {
    display: block;
    margin-left: auto;
    width: 30px; height: 22px;
    position: relative;
    cursor: pointer;
    z-index: 30;
  }
  .nav-toggle-label span,
  .nav-toggle-label span::before,
  .nav-toggle-label span::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%; height: 3px;
    border-radius: 2px;
    background: #fff;
    transition: transform 0.2s ease;
  }
  .nav-toggle-label span { top: 9px; }
  .nav-toggle-label span::before { top: -9px; }
  .nav-toggle-label span::after { top: 9px; }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--plum);
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 24px 24px;
    gap: 16px;
    box-shadow: 0 20px 30px rgba(0,0,0,0.25);
  }
  .nav-toggle:checked ~ .nav { display: flex; }
  .hero-media .frame img { height: 220px; }
}
