/* routen.css */
.routes-page{
  --routes-max: 1180px;
  --routes-text: 900px;
}

.routes-page .container{
  max-width: var(--routes-max);
  margin: 0 auto;
  padding: 0 24px;
}

.routes-page .content{
  max-width: var(--routes-text);
  margin: 0 auto;
}

.routes-page .content.center,
.routes-page .section-head.center{
  text-align: center;
}

.routes-page .section{
  padding: 84px 0;
}

@media (max-width: 768px){
  .routes-page .section{
    padding: 60px 0;
  }
}

/* HERO */
.routes-hero{
  position: relative;
  overflow: hidden;
  min-height: 68vh;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(900px 420px at 10% 0%, rgba(11,47,107,.16), transparent 55%),
    linear-gradient(180deg, rgba(246,247,251,1), rgba(255,255,255,1));
}

.routes-hero-bg{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(10,25,60,.35), rgba(10,25,60,.55)),
    url("img/Routen/3 Stunden Citytour.png") center/cover no-repeat;
  opacity: .6;
}

.routes-hero-content{
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: 90px 0;
}

.routes-page .eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 950;
  color: var(--navy);
  margin-bottom: 10px;
}

.routes-page .dot{
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: var(--navy);
  box-shadow: 0 0 0 6px rgba(11,47,107,.10);
}

.routes-hero h1{
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}

.routes-page .lead{
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
}

.routes-page .cta-row{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.routes-page .center-cta{
  justify-content: center;
}

/* ROUTE CARDS */
.routes-section{
  background:
    radial-gradient(1000px 420px at 20% 0%, rgba(11,47,107,.06), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,1), rgba(248,250,255,1));
}

.route-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 34px;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}


.route-card{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 16px;
  box-shadow: 0 18px 55px rgba(10,25,60,.06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  overflow: hidden;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.route-card:hover{
  transform: translateY(-5px);
  box-shadow: 0 28px 80px rgba(10,25,60,.10);
  border-color: rgba(11,47,107,.20);
}

.route-image{
  width: 100%;
  height: 220px;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 18px;
  flex-shrink: 0;
}

.route-image img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.route-content{
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.route-top{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.route-card h3{
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}

.route-card p{
  color: var(--muted);
  line-height: 1.85;
  margin: 0 0 14px;
}

.route-tags{
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: auto 0 0;
}

.route-tags li{
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--navy);
  background: rgba(11,47,107,.06);
  border: 1px solid rgba(11,47,107,.12);
  padding: 8px 10px;
  border-radius: 999px;
}

@media (max-width: 1100px){
  .route-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .route-image{
    height: 200px;
  }
}


/* DOCKS */
.split-layout{
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 28px;
  align-items: start;
}

.dock-list{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.dock-card{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 14px 40px rgba(10,25,60,.05);
}

.dock-card h3{
  font-size: 16px;
  margin-bottom: 8px;
}

.dock-card p{
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
}

.info-panel{
  display: grid;
  gap: 16px;
}

.panel-card{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 18px 50px rgba(10,25,60,.05);
}

.panel-card h3{
  font-size: 18px;
  margin-bottom: 10px;
}

.panel-card p{
  color: var(--muted);
  line-height: 1.85;
  margin: 0;
}

.panel-card.highlight{
  background: linear-gradient(180deg, rgba(11,47,107,.07), rgba(255,255,255,1));
}

@media (max-width: 980px){
  .split-layout{
    grid-template-columns: 1fr;
  }

  .dock-list{
    grid-template-columns: 1fr;
  }
}

/* SEO BLOCK */
.seo-block{
  border-top: 1px solid var(--line);
  background:
    radial-gradient(900px 420px at 20% 0%, rgba(11,47,107,.08), transparent 55%),
    linear-gradient(180deg, rgba(246,247,251,1), rgba(255,255,255,1));
}

.seo-block h2{
  margin-bottom: 16px;
}

.seo-block p{
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text);
  line-height: 1.95;
}
/* ROUTE SPLIT CARDS */

.route-card-split{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 32px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 18px 60px rgba(10,25,60,.06);
  overflow: hidden;
}

.route-text{
  min-width: 0;
}

.route-map{
  min-width: 0;
}

.route-map img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(0,0,0,.12);
  cursor: pointer;
  transition: transform .25s ease;
}

.route-map img:hover{
  transform: scale(1.02);
}

@media (max-width: 900px){
  .route-card-split{
    grid-template-columns: 1fr;
  }
}


.route-text h3{
font-size:28px;
margin-bottom:12px;
}

.route-text p{
line-height:1.9;
color:var(--muted);
margin-bottom:16px;
}

.route-map{
position:relative;
cursor:pointer;
}

.route-map img{
width:100%;
border-radius:18px;
box-shadow:0 18px 50px rgba(0,0,0,.15);
transition:transform .3s ease;
}

.route-map img:hover{
transform:scale(1.03);
}

/* MOBILE */

@media (max-width:900px){

.route-card-split{
grid-template-columns:1fr;
}

.route-map{
order:-1;
}

}
.route-lightbox{
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,.88);
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.lightbox-img{
  max-width: 90%;
  max-height: 85%;
  border-radius: 14px;
}

.lightbox-close{
  position: absolute;
  top: 24px;
  right: 34px;
  font-size: 42px;
  color: #fff;
  cursor: pointer;
}
