:root {
  --ink: #0b1e2d; /* deep navy/teal for text */
  --sea: #0e5f68; /* primary brand */
  --sea-2: #127d86; /* hover variant */
  --sand: #f4f1ea; /* soft background */
  --gold: #ffb703; /* accent */
  --cloud: #ffffff; /* white */
  --ink-2: #163440; /* header bg */
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --radius: 18px;

  /* German accent trio — used sparingly as thin lines/borders, never as blocks */
  --de-black: #1a1a1a;
  --de-red: #d00c20;
  --de-gold: #ffce00;
  --de-gradient: linear-gradient(
    90deg,
    var(--de-black) 0%,
    var(--de-red) 50%,
    var(--de-gold) 100%
  );
}
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  font-family:
    Poppins,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  color: var(--ink);
  background: var(--sand);
  scroll-behavior: smooth;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--ink-2);
  color: var(--cloud);
  box-shadow: 0 0 0 transparent;
  transition: box-shadow 0.3s ease;
}
.header.scrolled {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
}
.container {
  max-width: 1200px;
  margin-inline: auto;
  padding: 0 20px;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 16px;
}
.brand {
  display: flex;
  gap: 10px;
  align-items: center;
  text-decoration: none;
  color: var(--cloud);
}
.brand-logo {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold), #ffd166);
  display: grid;
  place-items: center;
  color: #2b2b2b;
  font-weight: 800;
  overflow: hidden;
}
.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.brand-name {
  font-weight: 700;
  letter-spacing: 0.3px;
}

.hero {
  background: url("../images/maajabu.jpg") center/cover no-repeat;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.menu {
  display: flex;
  gap: 24px;
  align-items: center;
}
.menu a {
  color: var(--cloud);
  text-decoration: none;
  font-weight: 500;
  opacity: 0.9;
}
.menu a:hover {
  opacity: 1;
}
.cta {
  background: var(--gold);
  color: #1a1a1a;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  border: 0;
  cursor: pointer;
}
.burger {
  display: none;
  background: transparent;
  border: 0;
  color: var(--cloud);
  font-size: 26px;
  cursor: pointer;
}

/* Language toggle — visible immediately in the header, no menu-digging required */
.lang-toggle {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  padding: 3px;
  gap: 2px;
  flex-shrink: 0;
}
.lang-toggle button {
  border: 0;
  background: transparent;
  color: var(--cloud);
  padding: 6px 11px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  opacity: 0.65;
  transition: all 0.2s ease;
}
.lang-toggle button.active {
  background: var(--gold);
  color: #1a1a1a;
  opacity: 1;
}

/* Google Translate fallback — kept small and quiet next to the manual toggle */
.gt-fallback {
  flex-shrink: 0;
}
.gt-fallback .goog-te-gadget {
  font-family: Poppins, sans-serif !important;
  font-size: 0 !important;
}
.gt-fallback .goog-te-gadget-simple {
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  border-radius: 999px !important;
  padding: 5px 10px !important;
  display: inline-flex !important;
  align-items: center;
}
.gt-fallback .goog-te-gadget-simple .goog-te-menu-value span {
  color: var(--cloud) !important;
  font-size: 12px !important;
}
body > .skiptranslate.goog-te-banner-frame {
  display: none !important;
}
body {
  top: 0 !important;
}

/* Mobile menu */
.mobile {
  display: none;
}
.mobile.open {
  display: block;
}
.mobile a {
  display: block;
  padding: 14px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--cloud);
  text-decoration: none;
  background: var(--ink-2);
}

/* Hero */
.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  align-items: center;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/maajabu.jpg") center/cover no-repeat;
  filter: brightness(0.65);
}
.hero .wrap {
  position: relative;
  z-index: 1;
  color: var(--cloud);
  padding: 80px 0;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 12px;
  border-radius: 999px;
}
.eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--gold);
}
.hero h1 {
  font-size: clamp(32px, 6vw, 58px);
  line-height: 1.05;
  margin: 18px 0 12px;
}
.hero p {
  max-width: 680px;
  font-size: clamp(14px, 2.4vw, 18px);
  opacity: 0.95;
}
.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 22px;
  flex-wrap: wrap;
}
.btn {
  appearance: none;
  border: 0;
  border-radius: 12px;
  padding: 12px 18px;
  font-weight: 600;
  cursor: pointer;
}
.btn-primary {
  background: var(--gold);
  color: #101010;
}
.btn-outline {
  background: transparent;
  color: #101010;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
}
.chipbar {
  display: flex;
  gap: 8px;
  margin-top: 22px;
  flex-wrap: wrap;
}
.chip {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(6px);
  color: #fff;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
}

/* Wave divider — a quiet curved line carrying the accent trio, between sections */
.wave-divider {
  display: block;
  width: 100%;
  height: 40px;
  line-height: 0;
}
.wave-divider svg {
  width: 100%;
  height: 100%;
}
.de-line {
  stroke-width: 2.2;
  stroke-linecap: round;
  fill: none;
}
.de-line-black {
  stroke: var(--de-black);
  stroke-opacity: 0.28;
}
.de-line-red {
  stroke: var(--de-red);
  stroke-opacity: 0.4;
}
.de-line-gold {
  stroke: var(--de-gold);
  stroke-opacity: 0.55;
}

/* Sections */
.section {
  padding: 72px 0;
}
.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
}
.section h2 {
  font-size: clamp(24px, 3.5vw, 36px);
  margin: 0;
}
.sub {
  opacity: 0.7;
}
.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

/* Destination / tour cards with a thin flag-accent top edge */
.card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 260px;
  background: #ccc;
  color: #fff;
  display: flex;
  align-items: flex-end;
  box-shadow: var(--shadow);
}
.flag-edge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--de-gradient);
  z-index: 2;
}
.card .img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.card:hover .img {
  transform: scale(1.06);
}
.card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(0, 0, 0, 0.65) 72%
  );
}
.card .content {
  position: relative;
  z-index: 1;
  padding: 22px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  margin-bottom: 10px;
}
.pill .sq {
  width: 10px;
  height: 10px;
  border: 2px solid var(--gold);
}
.card h3 {
  margin: 6px 0 4px;
  font-size: 22px;
}
.card .meta {
  opacity: 0.9;
  font-size: 13px;
}
.see {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: #1a1a1a;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
}

/* Grid sizing */
.span-6 {
  grid-column: span 6;
}
.span-4 {
  grid-column: span 4;
}
.span-12 {
  grid-column: span 12;
}
@media (max-width: 900px) {
  .span-6,
  .span-4 {
    grid-column: span 12;
  }
}

/* Gallery strip container styling */
.gallery-link-container {
  display: block;
  position: relative;
  text-decoration: none;
  border-radius: 16px;
  overflow: hidden;
}
.gallery-link-container:hover .gallery-overlay-badge {
  background: var(--sea-2);
  transform: translate(-50%, -50%) scale(1.05);
}

.gallery-overlay-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(14, 95, 104, 0.88);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 5;
}

/* Gallery strip — horizontally scrollable row with optional animated scroll effect */
.gallery-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 6px 2px 16px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.gallery-scroll::-webkit-scrollbar {
  height: 8px;
}
.gallery-scroll::-webkit-scrollbar-thumb {
  background: rgba(14, 95, 104, 0.25);
  border-radius: 999px;
}
.gallery-scroll img {
  scroll-snap-align: start;
  flex: 0 0 auto;
  width: 150px;
  height: 100px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}
.gallery-link-container:hover .gallery-scroll img {
  transform: scale(1.03);
}

/* Why Us */
.why {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.why .feature {
  background: #fff;
  border-radius: 16px;
  padding: 22px;
  box-shadow: var(--shadow);
}
.icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--sea), var(--sea-2));
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
}

/* Tours */
.tour {
  position: relative;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.tour .cover {
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
}
.tour .body {
  padding: 16px;
}
.price {
  font-weight: 700;
  color: var(--sea);
}

/* CTA banner */
.cta-band {
  background: linear-gradient(135deg, var(--sea), var(--sea-2));
  color: #fff;
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: var(--shadow);
}

/* Reviews — 3 hardcoded cards */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 900px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}
.review-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 24px 22px;
  box-shadow: var(--shadow);
  border-top: 4px solid transparent;
  border-image: var(--de-gradient) 1;
}
.review-card .stars {
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.review-card p.quote {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink);
  opacity: 0.9;
  margin: 0 0 16px;
}
.review-card .author {
  font-weight: 700;
  font-size: 14px;
}
.review-card .origin {
  opacity: 0.6;
  font-size: 12.5px;
}

/* Map block */
.map-block {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: stretch;
}
@media (max-width: 900px) {
  .map-block {
    grid-template-columns: 1fr;
  }
}
.map-frame {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 260px;
  border: 0;
}
.map-info {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.map-info a.btn-primary {
  text-decoration: none;
  display: inline-flex;
  width: fit-content;
}

/* Contact form */
.contact-wrap {
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 32px;
  max-width: 720px;
  margin: 0 auto;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field label {
  font-size: 13px;
  font-weight: 600;
  opacity: 0.8;
}
.field input,
.field textarea {
  border: 1.5px solid rgba(11, 30, 45, 0.14);
  border-radius: 10px;
  padding: 11px 13px;
  font-family: inherit;
  font-size: 14px;
  background: var(--sand);
  color: var(--ink);
}
.field input:focus,
.field textarea:focus {
  outline: 2px solid var(--sea-2);
  outline-offset: 1px;
}
.field.full {
  grid-column: 1 / -1;
}

/* Footer */
footer {
  background: #0e1a22;
  color: #c9d6df;
  padding: 48px 0 28px;
  margin-top: 0;
}
.cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 24px;
}
.cols a {
  color: #c9d6df;
  text-decoration: none;
  opacity: 0.9;
}
.cols a:hover {
  opacity: 1;
}
.small {
  opacity: 0.7;
  font-size: 14px;
}
.social-row {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
.social-row a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  transition: background 0.2s ease;
}
.social-row a:hover {
  background: var(--gold);
  color: #1a1a1a;
}
@media (max-width: 800px) {
  .cols {
    grid-template-columns: 1fr;
  }
}

/* Header responsiveness */
@media (max-width: 860px) {
  .menu {
    display: none;
  }
  .burger {
    display: block;
  }
  .nav {
    height: 64px;
  }
  .brand-name {
    font-size: 15px;
  }
}

@media (max-width: 1100px) and (min-width: 861px) {
  .gt-fallback {
    display: none;
  }
}

/* Hero responsive */
@media (max-width: 860px) {
  .hero {
    min-height: auto;
  }
  .hero .wrap {
    padding: 56px 0 48px;
  }
}
@media (max-width: 480px) {
  .eyebrow {
    font-size: 12.5px;
  }
  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }
  .hero-actions {
    flex-direction: column;
  }
}

/* Section rhythm */
@media (max-width: 860px) {
  .section {
    padding: 52px 0;
  }
  .wave-divider {
    height: 28px;
  }
}
@media (max-width: 480px) {
  .section {
    padding: 40px 0;
  }
  .container {
    padding: 0 16px;
  }
}

@media (max-width: 560px) {
  .section-title {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .card {
    min-height: 210px;
  }
  .card .content {
    padding: 18px;
  }
  .grid {
    gap: 14px;
  }
  .why {
    gap: 12px;
  }
  .contact-wrap {
    padding: 22px 18px;
  }
}

@media (max-width: 480px) {
  .gallery-scroll img {
    width: 120px;
    height: 84px;
  }
  .cols {
    gap: 32px;
  }
  .social-row {
    flex-wrap: wrap;
  }
}

@media (max-width: 400px) {
  .hero h1 {
    font-size: clamp(28px, 8vw, 38px);
  }
  .chipbar .chip {
    font-size: 12px;
  }
}

/* Motion & Reveal Animations */
.hero .wrap > * {
  opacity: 0;
  transform: translateY(18px);
  animation: heroUp 0.75s ease forwards;
}
.hero .wrap > *:nth-child(1) {
  animation-delay: 0.05s;
}
.hero .wrap > *:nth-child(2) {
  animation-delay: 0.16s;
}
.hero .wrap > *:nth-child(3) {
  animation-delay: 0.27s;
}
.hero .wrap > *:nth-child(4) {
  animation-delay: 0.38s;
}
.hero .wrap > *:nth-child(5) {
  animation-delay: 0.49s;
}

@keyframes heroUp {
  to {
    opacity: 1;
    transform: none;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: none;
}

.reveal-group > *:nth-child(2) {
  transition-delay: 0.08s;
}
.reveal-group > *:nth-child(3) {
  transition-delay: 0.16s;
}
.reveal-group > *:nth-child(4) {
  transition-delay: 0.24s;
}

@media (prefers-reduced-motion: reduce) {
  .hero .wrap > *,
  .reveal {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

.whatsapp-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  z-index: 999;
  transition: transform 0.2s ease;
}
.whatsapp-float:hover {
  transform: scale(1.08);
}
.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}
@media (max-width: 480px) {
  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: 16px;
    right: 16px;
  }
  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}
