/*! tailwindcss v4.1.18 | MIT License | https://tailwindcss.com */
@layer properties;
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/roboto-regular.ttf') format('truetype');
  font-display: swap;
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src: url('fonts/roboto-bold.ttf') format('truetype');
  font-display: swap;
}
@font-face {
  font-family: 'Michroma';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/michroma-regular.ttf') format('truetype');
  font-display: swap;
}
@font-face {
  font-family: 'Gloock';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/gloock-regular.ttf') format('truetype');
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Roboto', sans-serif;
  overflow-x: hidden;
}
h1, h2, h3 {
  font-family: 'Michroma', sans-serif;
}
.navbar-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  margin: 0 auto;
  transition: width 0.3s ease-in-out;
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 10px 5%;
  background-color: white;
  box-shadow: 0 5px 25px rgba(0, 70, 93, 0.1);
}
.body-container {
  margin-top: 20px;
}
nav {
  background-color: transparent;
  border: 1px solid #00465d;
  border-radius: 10px;
  flex-grow: 1;
  padding: 0;
}
nav ul {
  list-style: none;
  display: flex;
  padding: 0;
  margin: 0;
}
nav ul li {
  margin: 0;
  flex: 1;
}
nav ul li a {
  text-decoration: none;
  padding: 12px 20px;
  display: block;
  color: #00465d;
  border-right: 1px solid #00465d;
  text-align: center;
  font-family: Arial, sans-serif;
}
nav ul li:last-child a {
  border-right: none;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
nav ul li:first-child a {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
nav ul li a.active {
  background-color: #00465d;
  color: white;
}
#home {
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: block;
  padding: 0;
}
.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 63vh;
  z-index: 1;
}
.hero-video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-video-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 70, 93, 0.6);
  z-index: 2;
}
.hero-center-overlay {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 63vh;
  background-color: rgba(255, 255, 255, 0.2);
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: calc(90vh - 100px);
  margin-top: 0;
}
.logo-container {
  width: 40%;
  max-width: 380px;
  margin: 0 auto 50px auto;
  display: flex;
  justify-content: center;
  transition: transform 0.3s, opacity 0.3s;
}
.logo {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 8px rgba(224, 247, 250, 0.7)) drop-shadow(0 0 15px rgba(86, 180, 203, 0.5));
}
.hero-content h1 {
  text-align: center;
  font-size: 2.2em;
  color: #ffffff;
  margin-top: 40px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}
.hero-content p {
  text-align: center;
  font-size: 1.1em;
  padding: 0 20px;
  margin: 0 auto;
  max-width: 800px;
  color: #ffffff;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
}
.button-area-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 15vh;
}
.gradient-bar {
  position: absolute;
  width: 100%;
  height: 70px;
  background: linear-gradient(90deg, rgba(86, 180, 203, 0.0), rgba(224, 247, 250, 0.5), rgba(86, 180, 203, 0.0));
  z-index: 1;
}
.hero-button-container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.appointment-button {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  font-size: 1em;
  border-radius: 20px;
  padding: 10px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}
.appointment-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.appointment-button.primary {
  background-color: #ffffff;
  color: #00465d;
  border: 2px solid #00465d;
  width: 275px;
}
.appointment-button.primary:hover {
  background-color: #00465d;
  color: #ffffff;
}
.appointment-button.primary:hover .phone-icon {
  filter: brightness(0) invert(1);
}
.appointment-button.secondary {
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.8);
  width: auto;
  background-color: rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}
.appointment-button.secondary:hover {
  background-color: rgba(0, 0, 0, 0.4);
  border-color: #fff;
}
.phone-icon, .map-icon {
  width: 22px;
  height: 22px;
  margin-right: 10px;
  transition: filter 0.3s;
}
.small-logo-container {
  width: 60px;
  height: 60px;
  margin-right: 15px;
  display: block;
}
.small-logo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
section {
  padding: 20px 5%;
  min-height: 50vh;
  color: #00465d;
  max-width: 100%;
  margin: 0 auto;
}
.services-section {
  background: #fff;
  color: #00465d;
  padding-top: 2rem;
  padding-bottom: 0;
}
.section-heading {
  text-align: center;
  font-family: 'Gloock', serif;
  font-weight: 400;
  font-size: 3.5rem;
  color: #2c2a29;
  margin-bottom: 3rem;
}
.static-cards-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.static-cards-container .service-card {
  flex: 1 1 300px;
  max-width: 350px;
}
.service-card {
  background-color: white;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  border: 1px solid #e2e8f0;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 70, 93, 0.1), 0 10px 10px -5px rgba(0, 70, 93, 0.04);
}
.card-accent {
  height: 6px;
  background-color: #56B4CB;
}
.icon-container {
  background-color: #e0f7fa;
  color: #00465d;
  border-radius: 50%;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.info-section {
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 5%;
  min-height: 70vh;
}
.info-container {
  display: flex;
  align-items: center;
  gap: 4rem;
  max-width: 1100px;
  width: 100%;
}
.portrait-placeholder {
  width: 320px;
  height: 400px;
  background-color: #e2e8f0;
  border-radius: 1rem;
  flex-shrink: 0;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.07), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
.portrait-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-me-text {
  flex-grow: 1;
}
.about-me-subheading {
  font-family: 'Roboto', sans-serif;
  color: #56B4CB;
  font-size: 1.25rem;
  font-weight: 400;
  margin-top: -0.5rem;
  margin-bottom: 1.5rem;
}
.about-me-text p {
  font-family: 'Roboto', sans-serif;
  color: #334155;
  line-height: 1.7;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
.anfahrt-section {
  background: #f8fafc;
  padding: 6rem 5%;
}
.anfahrt-container {
  display: flex;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.map-widget {
  position: relative;
  flex: 1;
  height: 450px;
  width: 100%;
  border-radius: 1.5rem;
  overflow: hidden;
}
.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 10;
  cursor: pointer;
}
.map-overlay:hover {
  opacity: 0.98;
}
.map-widget iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.contact-info {
  flex: 1;
  padding-left: 2rem;
}
.contact-info h2 {
  margin-bottom: 1.5rem;
}
.contact-details p {
  font-family: 'Roboto', sans-serif;
  color: #334155;
  line-height: 1.8;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}
.closing-text {
  text-align: center;
  margin-top: 3rem;
  font-size: 1.25rem;
  font-family: 'Michroma', sans-serif;
  color: #00465d;
}
@media (max-width: 991px) {
  .info-container, .anfahrt-container {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  .contact-info {
    padding-left: 0;
    text-align: center;
  }
  .portrait-placeholder {
    width: 280px;
    height: 350px;
  }
  .map-widget {
    flex: none;
    width: 100%;
    height: 400px;
  }
}
@media (max-width: 767px) {
  .hero-content h1 {
    font-size: 2em;
    padding: 0 10px;
  }
  .anfahrt-section {
    padding-left: 0;
    padding-right: 0;
  }
  .anfahrt-container {
    padding: 0;
    background: transparent;
    box-shadow: none;
  }
  .map-widget {
    height: auto;
    padding-top: 100%;
    border-radius: 0;
  }
}
@media (max-width: 550px) {
  .hero-button-container {
    flex-direction: column;
    width: 80%;
    gap: 15px;
  }
  .appointment-button {
    width: 100% !important;
  }
  .appointment-button.secondary {
    background-color: #f0f0f0;
    color: #333;
    border: 1px solid #ddd;
    backdrop-filter: none;
  }
  .services-section {
    padding-left: 0;
    padding-right: 0;
  }
  .section-heading, .static-cards-container {
    padding-left: 5%;
    padding-right: 5%;
  }
  .slider {
    width: 100%;
    border-radius: 0;
  }
}
@media (max-width: 320px) {
  .hero-content h1 {
    font-size: 1.5em;
    word-wrap: break-word;
  }
  .navbar-container {
    padding: 10px 2.5%;
  }
}
.slider {
  position: relative;
  width: 80%;
  max-width: 1600px;
  height: 500px;
  margin: auto;
  border-radius: 20px;
  overflow: hidden;
}
.slider:hover .slider-btn {
  opacity: 1;
}
.slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease-in-out;
}
.slide {
  min-width: 100%;
  height: 100%;
  width: 100%;
  object-fit: cover;
  flex-shrink: 0;
  user-select: none;
  pointer-events: none;
}
.slide.active {
  pointer-events: auto;
}
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background-color: rgba(255, 255, 255, 0.7);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  transition: all 0.3s ease;
  opacity: 0;
}
.slider-btn:hover {
  background-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-50%) scale(1.1);
}
.slider-btn svg {
  width: 24px;
  height: 24px;
}
.prev-btn {
  left: 20px;
}
.next-btn {
  right: 20px;
}
.indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 8px;
  padding: 0;
  background: none;
}
.dot {
  height: 5px;
  width: 25px;
  background-color: #fff;
  border-radius: 5px;
  display: inline-block;
  cursor: pointer;
  opacity: 0.6;
  transition: all 0.4s ease;
}
.dot.active {
  opacity: 1;
  width: 40px;
  background-color: #56B4CB;
}
.sticky {
  position: sticky;
}
.container {
  width: 100%;
}
.mx-auto {
  margin-inline: auto;
}
.block {
  display: block;
}
.flex {
  display: flex;
}
.grid {
  display: grid;
}
.hidden {
  display: none;
}
.flex-grow {
  flex-grow: 1;
}
.transform {
  transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,);
}
.resize {
  resize: both;
}
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.flex-col {
  flex-direction: column;
}
.items-center {
  align-items: center;
}
.border {
  border-style: var(--tw-border-style);
  border-width: 1px;
}
.text-center {
  text-align: center;
}
.transition {
  transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to, opacity, box-shadow, transform, translate, scale, rotate, filter, -webkit-backdrop-filter, backdrop-filter, display, content-visibility, overlay, pointer-events;
  transition-timing-function: var(--tw-ease, ease);
  transition-duration: var(--tw-duration, 0s);
}
@property --tw-rotate-x {
  syntax: "*";
  inherits: false;
}
@property --tw-rotate-y {
  syntax: "*";
  inherits: false;
}
@property --tw-rotate-z {
  syntax: "*";
  inherits: false;
}
@property --tw-skew-x {
  syntax: "*";
  inherits: false;
}
@property --tw-skew-y {
  syntax: "*";
  inherits: false;
}
@property --tw-border-style {
  syntax: "*";
  inherits: false;
  initial-value: solid;
}
@layer properties {
  @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
    *, ::before, ::after, ::backdrop {
      --tw-rotate-x: initial;
      --tw-rotate-y: initial;
      --tw-rotate-z: initial;
      --tw-skew-x: initial;
      --tw-skew-y: initial;
      --tw-border-style: solid;
    }
  }
}
