/* ==========================================================================
   hanoi-taxi.de – Hauptstylesheet
   Design: Warm, klar, professionell
   Referenzen: anthropic.com (Farbwelt), medium.com (Typografie), kinfolk.com (Layout)
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Custom Properties (Farben, Typografie, Abstände)
   -------------------------------------------------------------------------- */
:root {
  /* Farben */
  --color-bg:           #FAF8F5;       /* Warmes Off-White */
  --color-bg-alt:       #F2EDE8;       /* Etwas dunkler für Abwechslung */
  --color-surface:      #FFFFFF;       /* Karten, Overlays */
  --color-dark:         #E8B88A;       /* Warmes Sand-Orange für Sektionen */
  --color-dark-soft:    #D9A87A;       /* Etwas dunkler */
  --color-text:         #2C2825;       /* Fließtext */
  --color-text-muted:   #6B6560;       /* Sekundärer Text */
  --color-text-on-dark: #2C2825;       /* Text auf heller Sektion (dunkel) */
  --color-accent:       #D4864A;       /* Warmes Orange (Pastell) */
  --color-accent-hover: #C0743A;       /* Orange dunkler */
  --color-accent-light: #F0D4B8;       /* Orange hell */
  --color-border:       #E5DED6;       /* Dezente Trennlinien */
  --color-border-dark:  #C89868;       /* Trennlinien auf Sand-Sektion */

  /* Typografie */
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:    'Source Sans 3', 'Source Sans Pro', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-size-base:  1.0625rem;  /* 17px */
  --font-size-sm:    0.9375rem;  /* 15px */
  --font-size-xs:    0.8125rem;  /* 13px */
  --font-size-lg:    1.25rem;    /* 20px */
  --line-height:     1.7;

  /* Abstände */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-xxl: 6rem;

  /* Layout */
  --content-width:     760px;
  --content-width-wide: 1120px;
  --header-height:     64px;

  /* Übergänge */
  --transition: 0.25s ease;
}

/* --------------------------------------------------------------------------
   @font-face – Lokal gehostete Schriften
   -------------------------------------------------------------------------- */
@font-face {
  font-family: 'Playfair Display';
  src: url('../fonts/PlayfairDisplay-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Playfair Display';
  src: url('../fonts/PlayfairDisplay-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Source Sans 3';
  src: url('../fonts/SourceSans3-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Source Sans 3';
  src: url('../fonts/SourceSans3-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Source Sans 3';
  src: url('../fonts/SourceSans3-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* --------------------------------------------------------------------------
   Reset & Grundlagen
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  line-height: var(--line-height);
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover,
a:focus {
  color: var(--color-accent-hover);
}

/* --------------------------------------------------------------------------
   Typografie
   -------------------------------------------------------------------------- */
h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-text);
}

h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: var(--space-md);
}

h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.125rem);
  margin-bottom: var(--space-sm);
}

h3 {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  margin-bottom: var(--space-xs);
}

p {
  margin-bottom: var(--space-sm);
}

p:last-child {
  margin-bottom: 0;
}

strong {
  font-weight: 600;
}

ul, ol {
  padding-left: 1.5rem;
  margin-bottom: var(--space-sm);
}

li {
  margin-bottom: var(--space-xs);
}

/* --------------------------------------------------------------------------
   Layout – Container
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container--wide {
  max-width: var(--content-width-wide);
}

/* --------------------------------------------------------------------------
   Header – Sticky, klar, dezent
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  height: var(--header-height);
  transition: box-shadow var(--transition);
}

.site-header--scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.site-header__inner {
  max-width: var(--content-width-wide);
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.site-header__logo {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
  text-decoration: none;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.site-header__logo:hover {
  color: var(--color-accent);
}

/* Navigation */
.site-nav {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.site-nav__link {
  font-family: var(--font-body);
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--transition);
  letter-spacing: 0.01em;
}

.site-nav__link:hover,
.site-nav__link--active {
  color: var(--color-accent);
}

/* Hamburger-Menü */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
  flex-direction: column;
  gap: 5px;
}

.hamburger__line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-text);
  border-radius: 1px;
  transition: transform var(--transition), opacity var(--transition);
}

/* Hamburger aktiv */
.hamburger[aria-expanded="true"] .hamburger__line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger[aria-expanded="true"] .hamburger__line:nth-child(2) {
  opacity: 0;
}

.hamburger[aria-expanded="true"] .hamburger__line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --------------------------------------------------------------------------
   Hero-Bereich
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  width: 100%;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 26, 26, 0.15) 0%,
    rgba(26, 26, 26, 0.15) 40%,
    rgba(26, 26, 26, 0.0) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: var(--space-xxl) var(--space-md) var(--space-xl);
  width: 100%;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5.5vw, 3.5rem);
  color: #FFFFFF;
  margin-bottom: var(--space-sm);
  line-height: 1.2;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: var(--font-size-lg);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-lg);
  max-width: 540px;
  line-height: 1.6;
}

/* Seiten-Hero (kleiner, für Unterseiten) */
.page-hero {
  position: relative;
  width: 100%;
  height: 45vh;
  min-height: 300px;
  max-height: 500px;
  overflow: hidden;
}

.page-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 26, 26, 0.1) 0%,
    rgba(26, 26, 26, 0.15) 60%,
    transparent 100%
  );
}

.page-hero__title {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--content-width);
  padding: 0 var(--space-md);
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  color: #FFFFFF;
  z-index: 1;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--font-size-sm);
  font-weight: 600;
  padding: 0.875rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  letter-spacing: 0.02em;
}

.btn--primary {
  background-color: var(--color-accent);
  color: #FFFFFF;
}

.btn--primary:hover {
  background-color: var(--color-accent-hover);
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(212, 134, 74, 0.3);
}

.btn--outline {
  background-color: transparent;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
}

.btn--outline:hover {
  background-color: var(--color-accent);
  color: #FFFFFF;
}

.btn--whatsapp {
  background-color: #25D366;
  color: #1A1A1A;
}

.btn--whatsapp:hover {
  background-color: #1EBE5A;
  color: #1A1A1A;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* --------------------------------------------------------------------------
   Sektionen
   -------------------------------------------------------------------------- */
.section {
  padding: var(--space-xxl) 0;
}

.section--dark {
  background-color: var(--color-dark);
  color: var(--color-text-on-dark);
}

.section--dark h2,
.section--dark h3 {
  color: var(--color-text);
}

.section--dark a {
  color: var(--color-accent);
}

.section--dark a:hover {
  color: var(--color-accent-hover);
}

.section--alt {
  background-color: var(--color-bg-alt);
}

.section__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section__header p {
  color: var(--color-text-muted);
  font-size: var(--font-size-lg);
  max-width: 600px;
  margin: var(--space-sm) auto 0;
}

/* --------------------------------------------------------------------------
   Dreispaltige Übersicht (Startseite, à la visit-angkor.org)
   -------------------------------------------------------------------------- */
.overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.overview-grid__col {
  padding: var(--space-lg) var(--space-md);
}

.overview-grid__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--color-accent);
}

.section--dark .overview-grid__title {
  color: #1A1A1A;
  border-bottom-color: #5A3A1A;
}

.overview-grid__list {
  list-style: none;
  padding: 0;
}

.overview-grid__list li {
  margin-bottom: var(--space-xs);
}

.overview-grid__list a {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: #1A1A1A;
  text-decoration: none;
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.overview-grid__list a::before {
  content: '→';
  color: #5A3A1A;
  font-size: 0.8em;
  transition: transform var(--transition);
}

.overview-grid__list a:hover {
  color: #FFFFFF;
}

.overview-grid__list a:hover::before {
  transform: translateX(3px);
  color: #FFFFFF;
}

/* --------------------------------------------------------------------------
   Vertrauensbereich (Kernwerte)
   -------------------------------------------------------------------------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.values-grid__item {
  text-align: center;
  padding: var(--space-md);
}

.values-grid__icon {
  font-size: 2rem;
  margin-bottom: var(--space-sm);
  display: block;
}

.values-grid__title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.values-grid__text {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

/* --------------------------------------------------------------------------
   Reiseziel-Karten (Thumbnails, à la jacadatravel.com)
   -------------------------------------------------------------------------- */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.dest-card {
  background: var(--color-surface);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}

.dest-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.dest-card__img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.dest-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.dest-card:hover .dest-card__img {
  transform: scale(1.05);
}

.dest-card__badge {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  background: var(--color-accent);
  color: #FFFFFF;
  font-size: var(--font-size-xs);
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
}

.dest-card__body {
  padding: var(--space-md);
}

/* Beschreibungstext in Karten begrenzen (kompakte Darstellung) */
.dest-card__body > p:not(.dest-card__meta):not(.dest-card__price) {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: var(--space-xs);
}

.dest-card__name {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.dest-card__meta {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  margin-bottom: var(--space-xs);
}

.dest-card__price {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-accent);
}

/* Platzhalter für fehlende Bilder */
.dest-card__placeholder {
  aspect-ratio: 4/3;
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
  text-align: center;
  padding: var(--space-sm);
}

/* --------------------------------------------------------------------------
   Preistabelle
   -------------------------------------------------------------------------- */
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-lg) 0;
}

.price-table th,
.price-table td {
  padding: var(--space-sm) var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

.price-table th {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.price-table td:last-child {
  font-weight: 600;
  color: var(--color-accent);
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   Inhaltliche Seiten (Fließtext)
   -------------------------------------------------------------------------- */
.page-content {
  padding: var(--space-xl) 0 var(--space-xxl);
}

.page-content h2 {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
}

.page-content h3 {
  margin-top: var(--space-lg);
}

.page-content img {
  border-radius: 8px;
  margin: var(--space-lg) 0;
}

/* Bildunterschrift */
.img-caption {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  text-align: center;
  margin-top: calc(-1 * var(--space-md));
  margin-bottom: var(--space-lg);
}

/* Zitat-Block */
.quote-block {
  border-left: 3px solid var(--color-accent);
  padding: var(--space-md) var(--space-lg);
  margin: var(--space-lg) 0;
  background: var(--color-bg-alt);
  border-radius: 0 8px 8px 0;
}

.quote-block p {
  font-style: italic;
  font-size: var(--font-size-lg);
  color: var(--color-text);
}

.quote-block cite {
  display: block;
  margin-top: var(--space-sm);
  font-style: normal;
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

/* --------------------------------------------------------------------------
   Kontaktseite
   -------------------------------------------------------------------------- */
.contact-methods {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin: var(--space-lg) 0;
}

.contact-card {
  background: var(--color-surface);
  padding: var(--space-lg);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  text-align: center;
}

.contact-card__icon {
  font-size: 2rem;
  margin-bottom: var(--space-sm);
}

.contact-card__title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.contact-card__text {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}

/* --------------------------------------------------------------------------
   Rechtliche Seiten (Impressum, Datenschutz)
   -------------------------------------------------------------------------- */
.legal-content {
  padding: var(--space-xl) 0 var(--space-xxl);
}

.legal-content h1 {
  margin-bottom: var(--space-md);
}

.legal-content h2 {
  margin-top: var(--space-xl);
  font-size: 1.375rem;
}

.legal-content p {
  margin-bottom: var(--space-sm);
}

.legal-content ul {
  margin-bottom: var(--space-sm);
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--color-dark);
  color: var(--color-text-on-dark);
  padding: var(--space-lg) 0;
  border-top: 1px solid var(--color-border-dark);
}

.site-footer__inner {
  max-width: var(--content-width-wide);
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.site-footer__links {
  display: flex;
  gap: var(--space-md);
  align-items: center;
}

.site-footer__link {
  font-size: var(--font-size-sm);
  color: var(--color-text-on-dark);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity var(--transition);
}

.site-footer__link:hover {
  opacity: 1;
  color: var(--color-text-on-dark);
}

.site-footer__fb {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--font-size-sm);
  color: var(--color-text-on-dark);
  opacity: 0.7;
  transition: opacity var(--transition);
}

.site-footer__fb:hover {
  opacity: 1;
  color: var(--color-text-on-dark);
}

.site-footer__copy {
  font-size: var(--font-size-xs);
  opacity: 0.5;
}

/* --------------------------------------------------------------------------
   Responsives Design – Mobile First
   -------------------------------------------------------------------------- */

/* Tablet (max 960px) */
@media (max-width: 960px) {
  .destinations-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .overview-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .overview-grid__col {
    padding: var(--space-md);
    border-bottom: 1px solid var(--color-border-dark);
  }

  .overview-grid__col:last-child {
    border-bottom: none;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile (max 768px) */
@media (max-width: 768px) {
  :root {
    --header-height: 56px;
  }

  .hamburger {
    display: flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--color-bg);
    flex-direction: column;
    padding: var(--space-md);
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    gap: 0;
  }

  .site-nav--open {
    display: flex;
  }

  .site-nav__link {
    padding: var(--space-sm) 0;
    font-size: var(--font-size-base);
    border-bottom: 1px solid var(--color-border);
  }

  .site-nav__link:last-child {
    border-bottom: none;
  }

  .hero {
    min-height: 60vh;
  }

  .hero__title {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }

  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }

  .contact-methods {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
  }

  .site-footer__inner {
    flex-direction: column;
    text-align: center;
  }

  .price-table {
    font-size: var(--font-size-sm);
  }

  .price-table th,
  .price-table td {
    padding: var(--space-xs) var(--space-sm);
  }
}

/* Kleine Mobilgeräte (max 480px) */
@media (max-width: 480px) {
  .destinations-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 50vh;
  }

  .page-hero {
    height: 35vh;
    min-height: 220px;
  }
}

/* --------------------------------------------------------------------------
   Utility-Klassen
   -------------------------------------------------------------------------- */
.text-center { text-align: center; }
.text-muted  { color: var(--color-text-muted); }
.mt-sm  { margin-top: var(--space-sm); }
.mt-md  { margin-top: var(--space-md); }
.mt-lg  { margin-top: var(--space-lg); }
.mt-xl  { margin-top: var(--space-xl); }
.mb-sm  { margin-bottom: var(--space-sm); }
.mb-md  { margin-bottom: var(--space-md); }
.mb-lg  { margin-bottom: var(--space-lg); }
.mb-xl  { margin-bottom: var(--space-xl); }

/* Animationen (CSS-only, für Scroll-Reveal) */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Copyright-Hinweis für Fotos */
.photo-credit {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  text-align: right;
  margin-top: var(--space-xs);
  font-style: italic;
}

/* Referenz-Box */
.reference-box {
  background: var(--color-bg-alt);
  border-radius: 8px;
  padding: var(--space-lg);
  margin: var(--space-lg) 0;
  border-left: 3px solid var(--color-accent);
}

/* Vietnam Fakten – kompakte Darstellung */
.facts-row {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
  margin-top: var(--space-md);
}

.fact-item {
  text-align: center;
}

.fact-item__number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-accent);
  display: block;
}

.fact-item__label {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

/* WhatsApp-Hinweis */
.whatsapp-hint {
  background: #E8F5E9;
  border-radius: 8px;
  padding: var(--space-md);
  margin: var(--space-sm) 0;
  font-size: var(--font-size-sm);
}

/* Bilder-Galerie (für Reiseberichte) */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
  margin: var(--space-lg) 0;
}

.gallery img {
  width: 100%;
  border-radius: 8px;
  aspect-ratio: 4/3;
  object-fit: cover;
}

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

/* Preis-Highlight */
.price-highlight {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--color-accent);
  font-weight: 700;
}
