/* ============================================
   Ute's Travel Soul — Modern Redesign
   Colour palette: warm terracotta + sand + deep teal
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Josefin+Sans:wght@300;400;600&display=swap');

:root {
  --teal:       #2c5f5c;
  --teal-light: #3d7e7a;
  --terra:      #c4714a;
  --sand:       #f5ede0;
  --sand-dark:  #e8d9c4;
  --cream:      #faf7f2;
  --charcoal:   #1e2830;
  --mid:        #5a6471;
  --white:      #ffffff;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-ui:      'Josefin Sans', sans-serif;

  --radius: 2px;
  --transition: 0.3s ease;
  --shadow: 0 4px 24px rgba(44,95,92,0.10);
  --shadow-hover: 0 8px 40px rgba(44,95,92,0.18);
}

/* ── Reset ───────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--font-ui);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

/* ── Language toggle ─────────────────────── */
.lang-bar {
  background: var(--charcoal);
  text-align: right;
  padding: 6px 48px;
}
.lang-bar button {
  background: none;
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.7);
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 14px;
  cursor: pointer;
  border-radius: 2px;
  transition: var(--transition);
}
.lang-bar button:hover,
.lang-bar button.active {
  background: var(--terra);
  border-color: var(--terra);
  color: var(--white);
}
.lang-bar button + button { margin-left: 6px; }

/* ── Nav ─────────────────────────────────── */
header {
  background: var(--cream);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--sand-dark);
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 72px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 1px;
  line-height: 1.1;
}
.nav-logo span { display: block; font-size: 11px; font-family: var(--font-ui); font-weight: 300; letter-spacing: 4px; text-transform: uppercase; color: var(--terra); }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--mid);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--terra);
  transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--teal); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

/* Hamburger */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 1.5px; background: var(--charcoal); margin: 5px 0; transition: var(--transition); }

/* ── Hero ────────────────────────────────── */
.hero {
  position: relative;
  height: 88vh;
  min-height: 540px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, var(--teal) 0%, #1a3d3a 55%, #2a2018 100%);
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.45;
  mix-blend-mode: multiply;
}
.hero-content {
  position: relative; z-index: 1;
  padding: 0 72px 80px;
  max-width: 760px;
}
.hero-eyebrow {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 300;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 40px;
}
.btn {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 14px 36px;
  border: 1px solid;
  transition: var(--transition);
  border-radius: var(--radius);
}
.btn-light {
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-light:hover {
  background: var(--terra);
  border-color: var(--terra);
}
.btn-dark {
  color: var(--teal);
  border-color: var(--teal);
}
.btn-dark:hover {
  background: var(--teal);
  color: var(--white);
}

/* ── Section shared ──────────────────────── */
section { padding: 96px 48px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--teal);
  margin-bottom: 32px;
}
.section-title em { font-style: italic; }
.section-body {
  font-size: 16px;
  color: var(--mid);
  line-height: 1.8;
  max-width: 640px;
}
.section-quote {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 26px);
  font-style: italic;
  color: var(--teal);
  border-left: 3px solid var(--terra);
  padding-left: 24px;
  margin: 40px 0;
  line-height: 1.5;
}

/* ── Two-col layout ──────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
.two-col img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ── Cards ───────────────────────────────── */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 48px;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.card img { width: 100%; height: 260px; object-fit: cover; }
.card-body { padding: 28px 28px 32px; }
.card-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--teal);
  margin-bottom: 10px;
}
.card-text { font-size: 15px; color: var(--mid); line-height: 1.7; }

/* ── Band (teal background) ──────────────── */
.band {
  background: var(--teal);
  color: var(--white);
  padding: 80px 48px;
}
.band .section-title { color: var(--white); }
.band .section-body { color: rgba(255,255,255,0.8); max-width: 740px; }
.band .section-label { color: var(--terra); }
.band .section-quote { color: var(--sand); border-color: var(--terra); }

/* ── Services list ───────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 64px;
  margin-top: 40px;
}
.service-block h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  color: var(--teal);
  margin-bottom: 16px;
}
.service-block ul { list-style: none; padding: 0; }
.service-block ul li {
  font-size: 15px;
  color: var(--mid);
  padding: 8px 0;
  border-bottom: 1px solid var(--sand-dark);
  display: flex;
  gap: 12px;
  align-items: baseline;
}
.service-block ul li::before {
  content: '—';
  color: var(--terra);
  flex-shrink: 0;
}
.service-block p { font-size: 15px; color: var(--mid); line-height: 1.8; margin-top: 8px; }

/* ── Timeline ────────────────────────────── */
.timeline { position: relative; margin-top: 40px; padding-left: 28px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 4px; bottom: 0;
  width: 1px;
  background: var(--sand-dark);
}
.timeline-item { position: relative; padding-bottom: 36px; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -32px; top: 7px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--terra);
}
.timeline-year {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--terra);
  margin-bottom: 4px;
}
.timeline-text { font-size: 15px; color: var(--mid); line-height: 1.7; }

/* ── Contact ─────────────────────────────── */
.contact-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 64px;
  box-shadow: var(--shadow);
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.contact-box .section-title { margin-bottom: 16px; }
.contact-box .section-body { margin: 0 auto 36px; }
.contact-email {
  font-family: var(--font-display);
  font-size: 28px;
  font-style: italic;
  color: var(--teal);
  margin-bottom: 36px;
}
.contact-refs { font-size: 14px; color: var(--mid); }
.contact-refs a { color: var(--terra); }
.contact-refs a:hover { text-decoration: underline; }

/* ── Footer ──────────────────────────────── */
footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.5);
  padding: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  letter-spacing: 1px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 20px;
  color: rgba(255,255,255,0.8);
}
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-links a:hover { color: var(--terra); }

/* ── Page hero (inner pages) ─────────────── */
.page-hero {
  background: linear-gradient(160deg, var(--teal) 0%, #1a3d3a 100%);
  padding: 80px 48px 64px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 400px; height: 400px;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 50%;
}
.page-hero-label {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 12px;
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
}

/* ── Sand bg alternation ─────────────────── */
.bg-sand { background: var(--sand); }
.bg-white { background: var(--white); }

/* ── Responsive ──────────────────────────── */
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; flex-direction: column; gap: 0; position: absolute; top: 72px; left: 0; right: 0; background: var(--cream); border-bottom: 1px solid var(--sand-dark); padding: 16px 24px 24px; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 0; font-size: 13px; }
  .nav-toggle { display: block; }
  .hero-content { padding: 0 24px 56px; }
  section { padding: 64px 24px; }
  .page-hero { padding: 60px 24px 48px; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col.reverse { direction: ltr; }
  .two-col img { height: 320px; }
  .services-grid { grid-template-columns: 1fr; }
  .contact-box { padding: 36px 24px; }
  footer { flex-direction: column; gap: 20px; text-align: center; }
  .lang-bar { padding: 6px 24px; }
}

/* ── Language switching ───────────────────── */
[data-de], [data-en] { display: none; }
.lang-de [data-de] { display: initial; }
.lang-de li[data-de], .lang-de p[data-de], .lang-de h1[data-de], .lang-de h2[data-de], .lang-de h3[data-de], .lang-de span[data-de], .lang-de div[data-de] { display: block; }
.lang-en [data-en] { display: initial; }
.lang-en li[data-en], .lang-en p[data-en], .lang-en h1[data-en], .lang-en h2[data-en], .lang-en h3[data-en], .lang-en span[data-en], .lang-en div[data-en] { display: block; }

/* inline elements */
.lang-de span[data-de] { display: inline; }
.lang-en span[data-en] { display: inline; }
