@charset "UTF-8";
/* Smooth scroll */
html {
  scroll-behavior: smooth;
}
/* ========== NAVBAR ========== */
.navbar .navbar-brand {
  color: black;
  font-size: 25px;
  font-weight: bold;
  text-transform: lowercase;
  font-family: "Dancing Script", "Poppins", "Montserrat", Arial, monospace;
  padding-right: 110px;
}
.navbar-nav .nav-item {
  padding-right: 40px;
  padding-left: 10px;
  font-size: 18px;
  font-family: "Montserrat", "Assistant", "Gill Sans MT", "Myriad Pro", Helvetica, Arial, sans-serif;
  text-transform: capitalize;
}
/* ========== TIMELAPSE SECTION ========== */
.mycss-tl-home {
  width: 100vw;
  height: 80vh; /* ← Adjust this value to change section height */
  overflow: hidden;
  display: flex;
}
/* Left 1/3 black box */
.mycss-tl-blackBox {
  width: 33.3333%;
  background-color: #000;
  color: #fff;
  padding: 2rem;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.mycss-tl-blackBox h1 {
  font-size: 2rem; /* ~32px */
  font-family: Futura, Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.mycss-tl-blackBox h2 {
  font-size: 1.3rem; /* ~21px */
  font-family: "Montserrat", sans-serif;
  margin-bottom: 0.5rem;
}
.mycss-tl-blackBox .tagline {
  font-size: 1rem; /* ~16px */
  font-family: "Montserrat", sans-serif;
  margin: 1.5rem 0;
  line-height: 1.6;
  padding: 0 10%;
}
/* Button */
.mycss-tl-blackBox .button {
  border: 0.2rem solid #FFDEAD;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  padding: 0.625rem 1.875rem; /* 10px 30px */
  font-size: 0.9rem;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}
.mycss-tl-blackBox .button:hover {
  background-color: #FFDEAD;
  color: #000;
}
/* Right 2/3 video area */
.mycss-tl-video {
  width: 66.6667%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.mycss-tl-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
/* responsiveness for mobile */
@media (max-width: 768px) {
  .mycss-tl-blackBox {
    padding: 1.5rem 1rem;
    width: 100vw; /* Full width on mobile */
    height: auto; /* Let it expand naturally */
  }
  .mycss-tl-video {
    display: none; /* Hide video on small screens for speed/responsiveness */
  }
  .mycss-tl-blackBox h1 {
    font-size: 1.5rem;
  }
  .mycss-tl-blackBox h2 {
    font-size: 1.1rem;
  }
  .mycss-tl-blackBox .tagline {
    font-size: 0.95rem;
    padding: 0 5%;
  }
  .mycss-tl-blackBox .button {
    font-size: 0.85rem;
    padding: 0.5rem 1.5rem;
  }
  .mycss-tl-home {
    flex-direction: column;
    height: auto;
  }
}
/* ========== CAROUSEL INDEX-/MAIN-PAGE ========== */
/* TILE GRID LAYOUT */
.tile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Responsive */
  gap: 50px; /* <<< Change this value to adjust spacing between tiles */
  justify-content: center;
  align-items: start;
}
/* TILE CONTAINER */
.tile {
  position: relative;
  overflow: hidden;
}
/* IMAGE STYLE */
.tile img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
/* OVERLAY CAPTION STYLE */
.tile-caption {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: white;
  width: 100%;
  padding: 0 10px;
}
/* TYPOGRAPHY INSIDE CAPTION */
.tile-caption h5, .tile-caption h6 {
  font-family: Futura, Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  margin: 0;
}
.tile-caption h5 {
  font-size: 22px;
  padding: 3px;
}
.tile-caption h6 {
  font-size: 14px;
  padding-bottom: 17px;
}



/* ========== BUTTONS ========== */
.buttonLink {
  outline: 3px solid #FFDEAD;
  display: inline-block;
  font-family: "Montserrat", "Assistant", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  margin: auto;
  text-align: center;
  width: 170px;
  padding: 6px 20px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, color 0.3s ease;
}
/* Extra with transparent background  */
.buttonLink.transparent {
  color: black;
  background-color: transparent;
}
.buttonLink:hover {
  background-color: #FFDEAD;
  color: #fff;
  text-decoration: none;
}
.button-fixed {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 100%; /* Set a fixed height */
  width: 100%; /* Fill column */
  white-space: nowrap; /* Prevent multi-line wrapping */
  overflow: hidden;
  text-overflow: ellipsis; /* Optional: cut off long text */
  background-color: transparent;
  color: black;
  font-size: 11pt;
}

.button-solo {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.button-fixed-width {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 40px; /* Set a fixed height */
  width: 190px; /* Fill column */
  white-space: nowrap; /* Prevent multi-line wrapping */
  overflow: hidden;
  text-overflow: ellipsis; /* Optional: cut off long text */
  background-color: transparent;
  color: black;
  font-size: 11pt;
}


/* ========== SUBPAGES HEADERS WITH COORDINATES ========== */
.countryHeader h5 {
  text-align: center;
  font-size: 35px;
  padding-top: 35px;
  padding-left: 30px;
  font-family: Futura, Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
}
.countryHeader h3 {
  text-align: center;
  font-size: 30px;
  padding-left: 30px;
  padding-top: 15px;
  padding-bottom: 15px;
  font-family: Consolas, "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", Monaco, "Courier New", "monospace";
}
.countryHeader h1 {
  text-align: center;
  font-size: 30px;
  padding-left: 30px;
  padding-top: 15px;
  padding-bottom: 15px;
  font-family: Consolas, "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", Monaco, "Courier New", "monospace";
}
/* ========== RESPONSIVE ========== */
@media (max-width: 1340px) {
  .navbar .navbar-brand {
    padding-right: 20px;
  }
  .navbar-nav .nav-item {
    padding-right: 40px;
  }
}
@media (max-width: 1140px) {
  .navbar .navbar-brand {
    padding-right: 10px;
  }
  .navbar-nav .nav-item {
    padding-right: 20px;
  }
}
@media(max-width:410px) {
  .containerNM .image-landscape-containerNM .landscapeNM {
    height: 248px;
    width: 330px;
  }
  .navbar .navbar-brand {
    font-size: 20px;
    padding-right: 5px;
  }
}
@media (max-width: 768px) {
  .mycss-tl-homeContent h1 {
    font-size: 2rem;
  }
  .mycss-tl-homeContent h2 {
    font-size: 1rem;
    padding: 0 10%;
  }
  .mycss-tl-home .button {
    padding: 10px 25px;
    font-size: 0.9rem;
  }
}
/* ========== TEXTBLOCK SECTION ========== */
.myccs-textBlock, .myccs-textBlock2 {
  font-family: "Futura", Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", serif, Helvetica, Arial;
  text-align: justify;
  padding-left: 5vw;
  padding-right: 5vw;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.myccs-textBlock {
  text-align: center;
}
.myccs-textBlock h2, .myccs-textBlock h3 {
  font-family: "Futura", Consolas, "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", Monaco, "Courier New", monospace;
  padding-top: 2rem;
}
.myccs-textBlock h2 {
  font-size: 2.5rem;
}
.myccs-textBlock h3 {
  font-size: 1.5rem;
  padding: 0.75rem 0;
  color: #ebcca0;
}
.myccs-textBlock p {
  font-family: "Inter", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  text-align: justify;
  padding-top: 1rem;
  padding-left: 5vw;
  padding-right: 5vw;
}
.myccs-textBlock2 {
  padding: 2rem 10vw;
}
/* ------ Responsive tweaks ------- */
@media (max-width: 992px) {
  .myccs-textBlock h2 {
    font-size: 2rem;
  }
  .myccs-textBlock h3 {
    font-size: 1.25rem;
  }
  .myccs-textBlock2 {
    padding: 2rem 5vw;
  }
}
@media (max-width: 576px) {
  .myccs-textBlock h2 {
    font-size: 1.6rem;
  }
  .myccs-textBlock h3 {
    font-size: 1.1rem;
  }
  .myccs-textBlock, .myccs-textBlock2, .myccs-textBlock p {
    padding-left: 4vw;
    padding-right: 4vw;
    text-align: left;
  }
}
/* ========== BLOCKPOSTS SNEAK PREVIEW ========== */
.card-post {
  background: #fff;
  border: 1px solid #ddd;
  transition: all 0.2s ease-in-out;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.card-post:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}
.card-img {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
}
.card-body {
  flex: 1;
}
.badge {
  font-size: 0.7rem;
  padding: 0.4em 0.6em;
  margin-right: 0.3em;
  background-color: #333;
  color: #fff;
  letter-spacing: 0.05em;
}
/* ========== BLOCKPOSTS SNEAK PREVIEW ========== */
.button {
  border: 4px solid #FFDEAD;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  padding: 10px 39px;
  color: #fff;
  text-decoration: none;
  transition: background 0.3s ease;
}
.mycss-tl-home .button:hover {
  background-color: #FFDEAD;
  color: #000;
}
/* ========== GENERAL HEADER BLOCK ( BLACK H1 AND GOLDEN H2 ) ========== */
.custom-grey-background {
  background-color: #f7f7f5;
}
.custom-60pc-middle {
  padding-left: 20vw;
  padding-right: 20vw;
}
.general-page-start, .general-page-headline {
  font-family: "Futura", "Montserrat", "Assistant", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
  text-align: center;
}
.general-page-start h1, .general-page-headline h2 {
  font-size: 35px;
}
.general-page-start h2, .general-page-headline h3 {
  font-size: 19px;
  padding: 10px 0;
  color: #c4b787;
}
.general-page-start p, .general-page-headline p {
  line-height: 1.6;
  font-size: 12pt;
}
/* Alternative font for paragraph */
.general-page-start-alt-font p {
  font-family: 'Montserrat', sans-serif;
}
@media (max-width: 575.98px) {
  .custom-60pc-middle {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
}
/* ========== GENERAL PARAGRAPH BLOCK (H2 AND PARAGRAPH) ========== */
.mycss-paragraph-background {
  background-color: #f7f7f5;
}
.mycss-paragraph-block, .mycss-paragraph-block-headline {
  font-family: "Montserrat", "Assistant", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
  text-align: justify;
}
.mycss-paragraph-block h2 {
  font-size: 30px;
  padding: 10px 0;
  color: black;
}

.mycss-paragraph-block h3 {
  font-size: 18px;
  padding: 1px 0 15px 0;
  color: #c4b787;
	font-weight: 550;
}

.mycss-paragraph-block p {
  line-height: 1.6;
  font-size: 12pt;
}
/* Alternative font for paragraph */
.general-page-start-alt-font p {
  font-family: 'Montserrat', sans-serif;
}
@media (max-width: 575.98px) {
  .custom-grey-background {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
}
/* ========== HIKING MAP ========== */
#hike-info h2 {
  font-family: 'Futura', Arial, sans-serif;
}
#map {
  width: 100%;
  height: 500px;
  border-radius: 12px;
  margin-bottom: 1rem;
}
#elevation {
  width: 100%;
  height: 200px;
}
#hike-info h1 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
#hike-info ul li {
  margin-bottom: 0.5rem;
}
#elevationChart {
  width: 100%;
  height: 250px !important;
}
.info-box i {
  margin-right: 5px;
  color: #c4aa86;
}
/* ========== A PICTURE SHOWN OVER THE WHOLE WIDTH WITH ADJUSTABLE HEIGHT ========== */
.mycss-image-wrapper {
  width: 100%;
  height: 20rem; /* Customize this height */
  overflow: hidden;
  position: relative;
}
/* Responsive adjustments */
@media (max-width: 575.98px) {
  .mycss-image-wrapper {
    height: 10rem;
  }
}
.mycss-full-width-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* ========== BLOGPOST FIRST HEADER GIVING THE BACK TO POSTS LINK AND THE TAGS ========== */
.mycss-blog-meta-wrapper {
  width: 100%;
  background-color: #f4f4f4;
  font-family: 'Helvetica Neue', sans-serif;
  padding: 10px 0;
}
.mycss-back-link {
  font-weight: bold;
  text-decoration: none;
  color: #5e5e5e;
  white-space: nowrap;
}
.mycss-back-link:hover {
  text-decoration: underline;
}
.mycss-blog-meta-line {
  font-size: 0.95rem;
  color: #5e5e5e;
  white-space: nowrap;
  overflow-x: auto;
}
.bi {
  margin-right: 4px;
}
/* Responsive adjustments */
@media (max-width: 575.98px) {
  .mycss-blog-meta-line {
    white-space: normal;
    font-size: 0.85rem;
  }
}
/* ========== 5 IMAGE SQUARES FOR PHOTOSWIPE ========== */
.mycss-photoswipe-wrapper {
  display: flex;
  gap: 10px;
  max-width: 1000px;
  margin: auto;
  align-items: stretch;
  padding-top: 40px; /* z.B. 20px oben */
  padding-bottom: 40px; /* z.B. 20px unten */
}
/* Linkes großes Bild */
.mycss-photoswipe-main {
  flex: 1;
  aspect-ratio: 1 / 1;
}
.mycss-photoswipe-main a, .mycss-photoswipe-main img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Rechte Spalte */
.mycss-photoswipe-thumbs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  /* Wichtig: Höhe an das linke Bild anpassen */
  height: 100%;
  flex: 1;
}
/* Rechtes Bild: quadratisch skalieren, aber insgesamt Höhe beachten */
.mycss-photoswipe-thumbs a {
  aspect-ratio: 1 / 1;
  width: 100%;
  overflow: hidden;
  display: block;
}
.mycss-photoswipe-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* ========== 2 IMAGE VERTICAL IN 4:3 FOR PHOTOSWIPE ========== */
.mycss-photoswipe-2portrait {
  display: flex;
  gap: 80px;
  max-width: 1000px;
  margin: 40px auto; /* Abstand zu anderen Inhalten */
  padding: 0 10px;
}
.mycss-photoswipe-2portrait a {
  flex: 1;
  aspect-ratio: 3 / 4;
  display: block;
  overflow: hidden;
}
.mycss-photoswipe-2portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* ========== HIKE FINDER ========== */
/* === Layout Sidebar === */
.mycss-sidebar {
  background: #f0e8d9;
  border-right: 1px solid #ddd;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 16px;
  font-family: 'Montserrat', 'Futura', sans-serif;
}

.mycss-filter-scroll {
  flex-grow: 1;
  overflow-y: auto;
  padding-right: 10px;
}

.mycss-filter-buttons {
  padding: 12px 16px;
  background: #f0e8d9;
  position: sticky;
  bottom: 0;
  z-index: 10;
  border-top: 1px solid #ddd;
}

/* === Box für jeden Filterabschnitt === */
.filter__box {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 12px 14px;
  margin-bottom: 14px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}

/* === Schriften === */
.mycss-sidebar h4,
.filter__box label,
.card-title {
  font-weight: 600;
}

/* === Hike Card === */
.mycss-hike-card {
  transition: transform 0.2s ease;
  font-family: 'Montserrat', 'Futura', sans-serif;
}
.mycss-hike-card:hover {
  transform: scale(1.01);
}
.mycss-hike-stats i {
  margin-right: 4px;
}
.mycss-tag {
  margin: 2px 2px 0 0;
}

/* === Apply/Reset Buttons === */
#hikeFilters .btn-primary {
  background-color: #333;
  border-color: #333;
  color: white;
}
#hikeFilters .btn-primary:hover {
  background-color: #000;
  border-color: #000;
}
#hikeFilters .btn-secondary {
  margin-left: 8px;
}

/* === noUiSlider Optimierung === */
.noUi-target {
  background: #e0e0e0;
  border-radius: 6px;
  border: none;
  height: 6px;
  box-shadow: none;
  margin-top: 8px;
  margin-bottom: 4px;
}

.noUi-connect {
  background: #ebcca0;
}

.noUi-horizontal .noUi-handle {
  width: 14px;
  height: 14px;
  top: -4px;
  right: -7px;
  border-radius: 50%;
  background: #555;
  border: 2px solid #fff;
  cursor: grab;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
}

.noUi-tooltip {
  background: #333;
  color: white;
  border: none;
  font-size: 12px;
  border-radius: 4px;
  padding: 2px 6px;
}
