/* ============== Fonts   ============== */
/* Montserrat */
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat/montserrat-v31-latin-300.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat/montserrat-v31-latin-regular.woff2")
    format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat/montserrat-v31-latin-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat/montserrat-v31-latin-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat/montserrat-v31-latin-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Playfair Display */
@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/playfair-display/playfair-display-v40-latin-regular.woff2")
    format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/playfair-display/playfair-display-v40-latin-700.woff2")
    format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ============== Für alle Seiten   ============== */
html,
body {
  overflow-x: hidden;
}

body {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  background: #fff;
  color: #333;
  line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  /* font-family: "Playfair Display", serif;
  font-weight: 700; */
  color: #222;
}

/* ============== NAVBAR ============== */
.navbar {
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
  padding: 1.2rem 0;
}
.navbar.scrolled {
  padding: 0.6rem 0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}
.navbar .navbar-brand,
.navbar .nav-link {
  color: #222 !important;
  font-weight: 600;
  transition: color 0.3s;
}
.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: #e60050 !important;
}
.navbar-brand img {
  height: 55px;
  width: auto;
  transition: height 0.3s ease;
}
.navbar.scrolled .navbar-brand img {
  height: 45px;
}
.navbar-brand {
  padding: 8px 0;
}

/* Reiseanfrage-Button im Navbar*/
.navbar .nav-link.reiseanfrage-btn {
  background: #e60050 !important;
  color: white !important;
  padding: 0.65rem 1.6rem !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
  margin-left: 0.75rem;
}

.navbar .nav-link.reiseanfrage-btn:hover {
  background: #cc0044 !important;
  box-shadow: 0 10px 25px rgba(230, 0, 80, 0.35);
}

/* auf kleinen Bildschirmen (mobil) etwas kleiner */
@media (max-width: 991px) {
  .navbar .nav-link.reiseanfrage-btn {
    margin-left: 0;
    margin-top: 0.5rem;
    display: inline-block;
  }
}

/* ============== HERO VIDEO ============== */
.hero-video {
  position: relative;
  height: 100vh;
  min-height: 650px;
  overflow: hidden;
}
.hero-video video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3),
    rgba(0, 0, 0, 0.65)
  );
  z-index: 2;
}
.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  z-index: 10;
  width: 90%;
  max-width: 1100px;
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.7);
}

.hero-text h1 {
  color: #fff;
}

/* ============== ALLGEMEINE SECTIONS ============== */
.section-padding {
  padding: 110px 0;
}
.bg-light {
  background-color: #f8f9fa !important;
}

/* Datenschutz und Impressum Überschrift padding mobile */
@media (max-width: 767px) {
  .imp-dat-mobile {
    padding-top: 150px;
  }
}

/* ============== ÜBER UNS ============== */
/* Telefonnummer groß */
.tel-big {
  color: #e60050;
}

/* ============== TEAM ============== */
.team-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
}
.team-img:hover {
  transform: scale(1.06);
}
.text-muted a {
  color: #212529bf;
  text-decoration: none;
}

/* ============== FOOTER ============== */
footer {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  color: #333;
  padding: 110px 0 50px;
  border-top: 1px solid #dee2e6;
}
footer h4 {
  color: #222;
  font-size: 1.5rem;
}
footer p,
footer a,
footer small {
  color: #444;
}
footer a {
  color: #e60050;
  text-decoration: none;
  font-weight: 500;
}
footer a:hover {
  color: #cc0044;
  text-decoration: underline;
}
footer hr {
  border-color: #ced4da;
  opacity: 0.6;
}

/* ============== BUTTONS ============== */
.btn-primary {
  background: #e60050;
  border: none;
  border-radius: 50px;
  padding: 0.9rem 2.8rem;
  font-weight: 600;
  transition: all 0.3s;
}
.btn-primary:hover {
  background: #cc0044;
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(230, 0, 80, 0.4);
}

/* ============== IMPRESSUM & DATENSCHUTZ ============== */
.page-header {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)),
    url("../bilder/logo_baden_baden.png") center / contain no-repeat #f8f9fa;
  color: white;
  padding: 130px 0 90px;
  text-align: center;
}
.page-header h1 {
  font-size: 3.8rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}
.content h2 {
  font-size: 2rem;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  display: inline-block;
}
.content ul {
  padding-left: 1.4rem;
}
.content a {
  color: #e60050;
}
.content a:hover {
  text-decoration: underline;
}

/* ============== Modal ============== */
#reiseanfrageModal .modal-content {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

/* ============== Formular ============== */
.error {
  color: #d32f2f;
  font-size: 0.9em;
  margin-top: 5px;
  display: block;
}
.field-error {
  border-color: #d32f2f !important;
}
input,
textarea,
select {
  width: 100%;
  padding: 8px;
  margin: 5px 0 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

.kontakt {
  position: absolute;
  left: -9999px;
}
