/* ============================================
   DIBO GbR — Luxury Travel · Hell/Sauber
   ============================================ */

:root {
  --navy:       #0B2343;
  --navy-deep:  #071728;
  --gold:       #C5A04A;
  --gold-bg:    rgba(197,160,74,0.08);
  --white:      #ffffff;
  --light:      #f5f3ef;
  --border:     rgba(11,35,67,0.1);
  --text:       #1a1a2e;
  --muted:      #5a5a6a;
  --font-d:     'Playfair Display', Georgia, serif;
  --font-b:     'Jost', sans-serif;
  --ease:       cubic-bezier(0.4,0,0.2,1);
  --max:        1160px;
  --radius:     8px;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  font-family: var(--font-b);
  font-size: 18px;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.75;
}
img { display:block; max-width:100%; }
a { color: inherit; }

/* ── NAV ──────────────────────────────────── */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 52px;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), box-shadow 0.4s;
}
.nav.scrolled {
  background: var(--white);
  padding: 14px 52px;
  box-shadow: 0 2px 24px rgba(0,0,0,0.08);
}

.nav-logo { text-decoration:none; }
.nav-logo-text {
  font-family: var(--font-d);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 4px;
  line-height: 1;
  transition: color 0.4s;
}
.nav.scrolled .nav-logo-text { color: var(--navy); }

.nav-links { display:flex; gap:40px; list-style:none; }
.nav-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.92rem;
  letter-spacing: 2px;
  font-weight: 400;
  text-transform: uppercase;
  transition: color 0.3s;
}
.nav.scrolled .nav-links a { color: var(--navy); }
.nav-links a:hover { color: var(--gold) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}
.nav-toggle span {
  display: block; width:24px; height:1.5px;
  background: var(--white);
  transition: 0.35s var(--ease);
}
.nav.scrolled .nav-toggle span { background: var(--navy); }
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity:0; transform:scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── HERO ─────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset:0;
  background: url('https://images.unsplash.com/photo-1533587851505-d119e13fa0d7?w=1920&q=85&auto=format&fit=crop')
              center/cover no-repeat,
              url('IMG_4485.jpeg') center/cover no-repeat;
  animation: heroZoom 14s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform:scale(1.06); }
  to   { transform:scale(1.00); }
}
.hero-overlay {
  position:absolute; inset:0;
  background: linear-gradient(to bottom,
    rgba(7,23,40,0.75) 0%,
    rgba(7,23,40,0.68) 60%,
    rgba(7,23,40,0.82) 100%);
}
.hero-content {
  position:relative; z-index:2;
  text-align:center; padding:0 24px;
}
.hero-eyebrow {
  font-size: 0.88rem; letter-spacing:5px;
  color: var(--gold); font-weight:400;
  text-transform:uppercase; margin-bottom:20px;
  opacity:0; animation: fadeUp .9s var(--ease) forwards .3s;
}
.hero-title {
  font-family: var(--font-d);
  font-size: clamp(5rem,16vw,12rem);
  font-weight:900; color:#fff;
  line-height:.9; letter-spacing:10px;
  margin-bottom:16px;
  opacity:0; animation: fadeUp .9s var(--ease) forwards .55s;
}
.hero-sub {
  font-size:.95rem; letter-spacing:6px;
  color:rgba(255,255,255,.65); font-weight:400;
  margin-bottom:30px;
  opacity:0; animation: fadeUp .9s var(--ease) forwards .75s;
}
.hero-acronym {
  display:flex; flex-wrap:wrap;
  justify-content:center; gap:8px 20px;
  font-family:var(--font-d);
  font-size:clamp(1.1rem,2.5vw,1.7rem);
  color:rgba(255,255,255,.7);
  font-style:italic; margin-bottom:22px;
  opacity:0; animation: fadeUp .9s var(--ease) forwards .95s;
}
.hero-acronym .g {
  color:var(--gold); font-style:normal;
  font-weight:700; font-size:1.5em; line-height:.9;
}
.hero-tagline {
  font-size:.92rem; letter-spacing:4px;
  color:rgba(255,255,255,.55); font-weight:400;
  margin-bottom:44px;
  opacity:0; animation: fadeUp .9s var(--ease) forwards 1.15s;
}
.hero-cta {
  display:inline-block; padding:16px 48px;
  border:1px solid var(--gold); color:var(--gold);
  text-decoration:none; font-size:.75rem;
  letter-spacing:3px; font-weight:400;
  text-transform:uppercase;
  transition:background .3s, color .3s;
  opacity:0; animation: fadeUp .9s var(--ease) forwards 1.35s;
}
.hero-cta:hover { background:var(--gold); color:var(--navy); }

.hero-scroll {
  position:absolute; bottom:38px; left:50%;
  transform:translateX(-50%); z-index:2;
  display:flex; flex-direction:column;
  align-items:center; gap:10px;
  opacity:0; animation: fadeIn 1s ease forwards 2s;
}
.hero-scroll span { font-size:.58rem; letter-spacing:3px; color:rgba(255,255,255,.35); }
.hero-scroll-line {
  width:1px; height:50px;
  background:linear-gradient(to bottom,var(--gold),transparent);
  animation:scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100%{opacity:.3;transform:scaleY(1);}
  50%{opacity:1;transform:scaleY(.65);}
}

/* ── SHARED SECTION ───────────────────────── */
.section-label {
  display:block; font-size:.65rem;
  letter-spacing:4px; color:var(--gold);
  text-transform:uppercase; font-weight:400;
  margin-bottom:14px;
}
.section-title {
  font-family:var(--font-d);
  font-size:clamp(2rem,4vw,3rem);
  color:var(--navy); font-weight:700;
  line-height:1.2; margin-bottom:28px;
}
.gold-bar {
  width:48px; height:2px;
  background:var(--gold); margin-bottom:28px;
}

/* ── REISEN ───────────────────────────────── */
.section-reisen {
  background:var(--light);
  padding:100px 52px;
}
.reisen-inner {
  max-width:var(--max); margin:0 auto;
  display:grid; grid-template-columns:1fr 1fr;
  gap:80px; align-items:start;
}
.reisen-text p {
  font-size:1.05rem; color:var(--muted);
  line-height:1.9; margin-bottom:36px;
}
.anspruch-list { list-style:none; }
.anspruch-list li {
  display:flex; align-items:center; gap:14px;
  padding:14px 0; border-bottom:1px solid var(--border);
  font-size:1rem; color:var(--text); font-weight:400;
}
.anspruch-list li:last-child { border-bottom:none; }
.diamond { color:var(--gold); font-size:.75rem; flex-shrink:0; }

.mosaic-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  grid-template-rows:280px 130px 130px;
  grid-template-areas:
    "gross gross"
    "klein1 hoch"
    "klein2 hoch";
  gap:10px;
}
.mosaic-large                      { grid-area:gross; }
.mosaic-grid .mosaic-item:nth-child(2) { grid-area:klein1; }
.mosaic-grid .mosaic-item:nth-child(3) { grid-area:klein2; }
.mosaic-grid .mosaic-item:nth-child(4) { grid-area:hoch; }
.mosaic-item { overflow:hidden; border-radius:var(--radius); }
.mosaic-item img {
  width:100%; height:100%; object-fit:cover;
  transition:transform .7s var(--ease);
}
.mosaic-item:hover img { transform:scale(1.07); }

/* ── ÜBER UNS ─────────────────────────────── */
.section-ueber {
  background: var(--white);
  padding: 100px 52px;
}
.ueber-inner {
  max-width:var(--max); margin:0 auto;
  display:grid; grid-template-columns:1fr 1fr;
  gap:70px; align-items:center;
}
.name-br { display:none; }
.hero-mob-br { display:none; }
.ueber-photo {
  position:relative;
  padding-bottom:40px;
}
.ueber-photo img {
  width:100%; height:480px;
  object-fit:cover; object-position:center top;
  border-radius:var(--radius);
  box-shadow:0 20px 60px rgba(11,35,67,0.15);
}
.ueber-photo-caption {
  position:absolute; bottom:0; left:24px; right:24px;
  transform:translateY(35%);
  background:var(--navy); color:#fff;
  padding:16px 22px; border-radius:var(--radius);
  text-align:center;
}
.ueber-photo-caption strong {
  display:block; font-family:var(--font-d);
  font-size:1rem; font-weight:700;
  letter-spacing:.5px;
}
.ueber-photo-caption span {
  font-size:.78rem; color:var(--gold);
  font-weight:400; letter-spacing:1px;
}
.ueber-text { padding-top:20px; }
.ueber-text p {
  font-size:1.05rem; color:var(--muted);
  line-height:1.9; margin-bottom:18px;
}
.ueber-text .ueber-lead {
  font-family:var(--font-d); font-style:italic;
  font-size:1.15rem; color:var(--navy);
  margin-bottom:24px; line-height:1.8;
}
.drv-badge {
  display:inline-flex; align-items:center; gap:10px;
  margin-top:8px; padding:12px 20px;
  border:1px solid var(--border); border-radius:var(--radius);
  font-size:.85rem; color:var(--muted); font-weight:400;
}
.drv-badge::before {
  content:'✓';
  background:var(--gold); color:var(--white);
  width:22px; height:22px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:.75rem; font-weight:700; flex-shrink:0;
}

/* ── KONTAKT ──────────────────────────────── */
.section-kontakt {
  background:var(--light);
  padding:100px 52px;
}
.kontakt-header {
  max-width:var(--max); margin:0 auto 60px;
  display:flex; flex-direction:column;
}
.kontakt-grid {
  max-width:var(--max); margin:0 auto;
  display:grid; grid-template-columns:repeat(4,1fr);
  gap:24px;
}
.kontakt-card {
  background:var(--white); padding:36px 28px;
  border-radius:var(--radius);
  box-shadow:0 4px 24px rgba(11,35,67,0.06);
  border-top:3px solid var(--gold);
  transition:transform .35s var(--ease), box-shadow .35s var(--ease);
}
.kontakt-card:hover {
  transform:translateY(-6px);
  box-shadow:0 16px 48px rgba(11,35,67,0.12);
}
.kontakt-icon { color:var(--navy); margin-bottom:18px; width:40px; height:40px; }
.kontakt-icon svg { display:block; width:40px; height:40px; }
.kontakt-card h4 {
  font-family:var(--font-d);
  font-size:1.05rem; color:var(--navy);
  font-weight:700; margin-bottom:12px;
}
.kontakt-card p {
  font-size:.95rem; color:var(--muted);
  line-height:1.85; font-weight:400;
}
.kontakt-card a {
  color:var(--navy); text-decoration:none;
  font-weight:400;
  transition:color .3s;
}
.kontakt-card a:hover { color:var(--gold); }

/* ── FOOTER ───────────────────────────────── */
.footer { background:var(--navy-deep); padding:52px; }
.footer-gold-line {
  height:1px;
  background:linear-gradient(to right,transparent,var(--gold),transparent);
  margin-bottom:38px;
}
.footer-inner {
  max-width:var(--max); margin:0 auto;
  display:flex; align-items:center;
  justify-content:space-between; flex-wrap:wrap; gap:16px;
}
.footer-logo {
  font-family:var(--font-d);
  font-size:1.9rem; color:#fff;
  letter-spacing:7px; font-weight:700;
}
.footer-copy {
  font-size:.72rem; color:rgba(255,255,255,.3);
  letter-spacing:1px; font-weight:400;
}
.footer-legal {
  display:flex; align-items:center; gap:12px;
  font-size:.72rem; color:rgba(255,255,255,.3);
}
.footer-legal a {
  color:rgba(255,255,255,.45); text-decoration:none;
  transition:color .3s;
}
.footer-legal a:hover { color:var(--gold); }

/* ── LEGAL PAGES ──────────────────────────── */
.legal-page { padding:140px 52px 100px; max-width:860px; margin:0 auto; }
.legal-page h1 {
  font-family:var(--font-d);
  font-size:clamp(2rem,4vw,3rem);
  color:var(--navy); margin-bottom:12px; font-weight:700;
}
.legal-page .legal-sub {
  font-size:.78rem; color:var(--muted);
  letter-spacing:3px; text-transform:uppercase;
  margin-bottom:44px; padding-bottom:24px;
  border-bottom:1px solid var(--border);
}
.legal-page h2 {
  font-family:var(--font-d);
  font-size:1.3rem; color:var(--navy);
  margin:40px 0 14px; font-weight:700;
}
.legal-page h3 { font-size:1rem; color:var(--navy); margin:24px 0 10px; font-weight:500; }
.legal-page p, .legal-page li {
  font-size:.95rem; color:var(--muted);
  line-height:1.9; margin-bottom:12px;
}
.legal-page ul { padding-left:20px; }
.legal-page a { color:var(--navy); }
.legal-page .gold-accent {
  display:inline-block; width:36px; height:2px;
  background:var(--gold); margin-bottom:40px;
}

/* ── REVEAL ANIMATION ─────────────────────── */
.reveal {
  opacity:0; transform:translateY(36px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.visible { opacity:1; transform:none; }
.reveal.delay-1 { transition-delay:.15s; }
.reveal.delay-2 { transition-delay:.3s; }

@keyframes fadeUp {
  from{opacity:0;transform:translateY(24px);}
  to{opacity:1;transform:none;}
}
@keyframes fadeIn { from{opacity:0;} to{opacity:1;} }

/* ── RESPONSIVE ───────────────────────────── */
@media (max-width:960px) {
  .nav { padding:20px 24px; }
  .nav.scrolled { padding:14px 24px; }
  .nav-toggle { display:flex; }
  .nav-links {
    display:none; position:fixed; inset:0;
    background:rgba(7,23,40,0.97);
    flex-direction:column; align-items:center;
    justify-content:center; gap:40px; z-index:1000;
  }
  .nav-links.open { display:flex; }
  .nav-links a { font-size:1.1rem; letter-spacing:3px; color:#fff !important; }

  .section-reisen { padding:70px 24px; }
  .reisen-inner { grid-template-columns:1fr; gap:48px; }
  .mosaic-grid { grid-template-rows:220px 110px 110px; }

  .section-ueber { padding:70px 24px; }
  .ueber-inner { grid-template-columns:1fr; gap:60px; }
  .ueber-photo img { height:360px; object-position:80% top; }
  .ueber-photo-caption { transform:translateY(50%); }

  .section-kontakt { padding:70px 24px; }
  .kontakt-grid { grid-template-columns:1fr 1fr; }

  .footer { padding:38px 24px; }
  .legal-page { padding:120px 24px 80px; }
}

@media (min-width:561px) and (max-width:960px) {
  body { font-size: 20px; }

  .section-label { font-size: 0.8rem; letter-spacing:3px; }
  .section-title { font-size: clamp(2.4rem,5vw,3.2rem); }

  .hero-eyebrow  { font-size: 1.05rem; }
  .hero-sub      { font-size: 1.15rem; letter-spacing:5px; }
  .hero-tagline  { font-size: 1.05rem; }
  .hero-acronym  { font-size: clamp(1.3rem,2.8vw,2rem); }

  .reisen-text p  { font-size: 1.1rem; }
  .anspruch-list li { font-size: 1.1rem; }

  .ueber-text p   { font-size: 1.1rem; }
  .ueber-text .ueber-lead { font-size: 1.25rem; }
  .ueber-photo-caption strong { font-size: 1.1rem; }
  .ueber-photo-caption span   { font-size: 0.9rem; }

  .kontakt-card h4 { font-size: 1.2rem; }
  .kontakt-card p  { font-size: 1.05rem; }

  .drv-badge { font-size: 1rem; }
  .footer-copy { font-size: 0.85rem; }

  .hero { height: 70vh; }
  .hero-scroll span { font-size: 0.78rem; }
  .hero-scroll-line { height: 70px; }

  .mosaic-grid { grid-template-rows: 220px 130px 130px; }

  .ueber-photo img { height: 520px; object-position: center center; }
  .ueber-photo-caption { transform: translateY(30%); }
}

@media (max-width:560px) {
  .name-br { display:inline; }
  .hero-mob-br { display:block; }

  .hero-sub { font-size: 0.65rem; letter-spacing: 2px; }
  .hero-scroll span { font-size: 0.78rem; }
  .hero-scroll-line { height: 70px; }

  .ueber-photo img { object-position: 20% top; }
  .nav-links a { font-size: 1.5rem; }

  .mosaic-grid { grid-template-rows:180px 100px 100px; }
  .kontakt-grid { grid-template-columns:1fr; }
  .footer-inner { flex-direction:column; text-align:center; }
}
