/* ========== Base ========== */
:root{
  --bg: #f4f4f4;
  --panel: #ffffff;
  --text: #1f1f1f;
  --muted: #666666;

  --tab: #cfcfcf;
  --tabText: #2a2a2a;
  --tabActive: #4b0f0f;       /* dunkel bordeaux */
  --tabActiveText: #ffffff;

  --border: #d7d7d7;
  --shadow: 0 10px 30px rgba(0,0,0,.08);

  --btn: #4b0f0f;
  --btnText: #ffffff;

  --radius: 4px;
  --max: 1180px;

  --tap: 44px;
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }
body{
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.45;
}

img{ max-width: 100%; display: block; }

.container{
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

/* Optional: Skip link */
.skip-link{
  position: absolute;
  left: -999px;
  top: 10px;
  background: #000;
  color: #fff;
  padding: 10px 12px;
  z-index: 9999;
}
.skip-link:focus{ left: 10px; }

/* ========== Header/Nav ========== */
.site-header{
  background: var(--panel);
  border-bottom: 1px solid var(--border);
}
.header-inner{
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand{
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  letter-spacing: .2px;
}
.site-main{
  padding: 22px 0 44px;
}

/* Desktop nav */
.site-nav{ display: block; }
.nav-list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 8px;
  align-items: center;
}
.nav-link{
  text-decoration: none;
  color: var(--text);
  padding: 10px 12px;
  border: 1px solid transparent;
  font-weight: 600;
}
.nav-link:hover{ border-color: var(--border); }
.nav-link.is-active{ font-weight: 700; }

/* Burger button */
.nav-toggle{
  display: none;
  width: var(--tap);
  height: var(--tap);
  border: 1px solid var(--border);
  background: #eee;
  cursor: pointer;
}
.nav-toggle-bars{
  position: relative;
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--text);
}
.nav-toggle-bars::before,
.nav-toggle-bars::after{
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--text);
}
.nav-toggle-bars::before{ top: -6px; }
.nav-toggle-bars::after{ top: 6px; }

@media (max-width: 820px){
  .nav-toggle{ display: inline-flex; align-items: center; justify-content: center; }

  .site-nav{
    position: fixed;
    inset: 0;
    display: none;
    background: rgba(0,0,0,.25);
  }
  .site-nav.is-open{ display: block; }

  .site-nav .nav-list{
    position: absolute;
    left: 12px;
    right: 12px;
    top: 72px;
    background: var(--panel);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    padding: 12px;
    display: grid;
    gap: 6px;
  }

  body.menu-open{ overflow: hidden; }
}

/* ========== Footer ========== */
.site-footer{
  background: var(--panel);
  border-top: 1px solid var(--border);
  padding: 18px 0;
  color: var(--muted);
}
.footer-inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.footer-nav a{
  color: var(--muted);
  text-decoration: none;
  margin-left: 12px;
}
.footer-nav a:hover{ color: var(--text); }

/* ========== Touren: Titel + Tabs ========== */
.page-title{
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: .5px;
  color: var(--tabActive);
  text-align: center;
  margin: 18px 0 12px;
  font-size: clamp(1.4rem, 2.4vw, 2.1rem);
  text-transform: uppercase;
}

.tabs{
  margin: 10px auto 18px;
}

.tabs__scroller{
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.tab{
  appearance: none;
  border: 1px solid var(--border);
  background: var(--tab);
  color: var(--tabText);
  padding: 12px 18px;
  min-width: 110px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .6px;
  font-weight: 700;
  font-size: .85rem;
  cursor: pointer;
  border-radius: 0; /* kantig wie Screenshot */
}
.tab:hover{ filter: brightness(0.98); }

.tab.is-active{
  background: var(--tabActive);
  color: var(--tabActiveText);
  border-color: #2f0a0a;
}

@media (max-width: 900px){
  /* Mobile: Tabs horizontal scroll */
  .tabs__scroller{
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
  }
  .tab{ min-width: 120px; }
}

/* Panels */
.tabpanel{ display: none; }
.tabpanel.is-active{ display: block; }

.empty-hint{
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 18px;
  color: var(--muted);
}

.small{ color: var(--muted); font-size: .95rem; }

/* ========== Tour Card ========== */
.tourcard{
  background: var(--panel);
  border: 1px solid var(--border);
  box-shadow: none;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  min-height: 360px;
}

.tourcard__media{
  background: #ddd;
  overflow: hidden;
}
.tourcard__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tourcard__body{
  padding: 26px 26px 22px;
  border-left: 1px solid var(--border);
  display: grid;
  gap: 10px;
  align-content: start;
}

.tourcard__title{
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 600;
}

.tourcard__subtitle{
  font-weight: 700;
  margin-top: -6px;
}

.stars{
  color: #c28a00; /* gold */
  letter-spacing: 3px;
  font-size: 1.1rem;
  margin: 4px 0 6px;
}

.section-label{
  margin-top: 6px;
  font-weight: 700;
  font-size: 1.25rem;
}

/* Preise */
.pricegrid{
  margin-top: 10px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.priceblock .priceblock__title{
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.priceblock .priceblock__values{
  display: grid;
  gap: 3px;
  color: var(--muted);
}

/* Button wie Screenshot */
.btn{
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 18px;
  background: var(--btn);
  color: var(--btnText);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .4px;
  font-weight: 700;
  border: 1px solid #2f0a0a;
  width: fit-content;
  border-radius: 0;
}
.btn:hover{ filter: brightness(1.03); }

/* Responsive: Card stapeln */
@media (max-width: 980px){
  .tourcard{
    grid-template-columns: 1fr;
  }
  .tourcard__body{
    border-left: none;
    border-top: 1px solid var(--border);
  }
  .btn{
    width: 100%;
  }
}

/* ========== Tour-Detail ========== */
.detail{
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 22px;
}

.detail-hero{
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 18px;
  border: 1px solid var(--border);
  background: #fff;
}

.detail-hero__img{
  min-height: 320px;
  background: #ddd;
}
.detail-hero__img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-hero__body{
  padding: 20px;
  display: grid;
  gap: 10px;
  align-content: start;
}

.badges{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.badge{
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #f3f3f3;
  font-weight: 700;
  font-size: .85rem;
}

.detail-title{
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.1rem;
  font-weight: 600;
}

.detail-subtitle{
  margin-top: -6px;
  font-weight: 700;
}

.detail-kv{
  display: grid;
  gap: 6px;
  color: var(--muted);
}

.detail-grid{
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
}

.card{
  border: 1px solid var(--border);
  background: #fff;
  padding: 16px;
}

.card h3{
  margin: 0 0 10px;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: .4px;
  color: var(--tabActive);
}

.list{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.cta{
  display: grid;
  gap: 10px;
}
.cta .btn{
  width: 100%;
}

.smallprint{
  color: var(--muted);
  font-size: .95rem;
}

@media (max-width: 980px){
  .detail-hero{ grid-template-columns: 1fr; }
  .detail-grid{ grid-template-columns: 1fr; }
}