/* FANA Pension CSS */

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* FANA Brand Colors */
  --primary-color: #0c727e;
  --primary-light: #dbeaec;
  --text-dark: #222222;
  --text-gray: #706f6f;
  --text-light-gray: #cccccc;
  --white: #ffffff;

  /* Enhanced Design System */
  --shadow: 0 4px 20px rgba(12, 114, 126, 0.1);
  --shadow-hover: 0 8px 30px rgba(12, 114, 126, 0.15);
  --shadow-xl: 0 25px 50px -12px rgba(12, 114, 126, 0.25);
  --border-radius: 12px;
  --border-radius-lg: 16px;
  --border-radius-xl: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  /* Typography */
  --font-sans: "Arial, Helvetica, sans-serif ", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: "Arial, Helvetica, sans-serif ", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-size-modal-title: 1.75rem;
}

body {
  font-family: var(--font-sans);
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-sans);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}
h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}
h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

b, .b {
  font-weight: 600;
}

p {
  font-family: var(--font-serif);
  margin-bottom: 1rem;
  color: var(--text-gray);
  line-height: 1.7;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary-color) 0%, #2a9fb0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.text-gradient::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #2a9fb0 100%);
  border-radius: 2px;
  opacity: 0.6;
}

a {
  text-decoration: none;
  color: var(--primary-color);
}
a:hover {
  color: var(--secondary-color);
}

/* Enhanced Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.fade-in-up {
  animation: none;
  opacity: 1;
}

.delay-200,
.delay-400,
.delay-600 {
  animation: none;
  opacity: 1;
}

/* Enhanced Hover Effects */
.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.hover-glow:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-xl);
}

.hover-scale:hover {
  transform: scale(1.05);
}

.magnetic-button {
  position: relative;
  overflow: hidden;
}

.magnetic-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  transition: all 0.6s ease;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.magnetic-button:hover::before {
  width: 300px;
  height: 300px;
}

/* Gradient Backgrounds */
.gradient-bg {
  background: linear-gradient(135deg, rgba(12, 114, 126, 0.2) 0%, rgba(219, 234, 236, 0.3) 100%);
}

.gradient-placeholder {
  background: linear-gradient(135deg, rgba(12, 114, 126, 0.3) 0%, rgba(219, 234, 236, 0.5) 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-weight: 600;
  font-family: var(--font-sans);
}

.gradient-placeholder::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
  border-radius: inherit;
}

.gradient-overlay {
  position: relative;
}

.gradient-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(12, 114, 126, 0.05) 0%, rgba(219, 234, 236, 0.1) 100%);
  border-radius: inherit;
  pointer-events: none;
}

/* Glass Effects */
.glass-effect {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.glass-effect-dark {
  background: rgba(12, 114, 126, 0.1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(12, 114, 126, 0.2);
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-outline {
  padding: 12px 24px;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-family: var(--font-sans);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, #0a5f68 100%);
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #0a5f68 0%, var(--primary-color) 100%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  box-shadow: var(--shadow);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--white);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition);
}

.sticky-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(12, 114, 126, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 48px;
  width: auto;
}

.nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-family: var(--font-sans);
  padding: 8px 12px;
  border-radius: 8px;
  position: relative;
}

.nav-link:hover {
  color: var(--primary-color);
  background: rgba(12, 114, 126, 0.05);
  transform: scale(1.05);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  margin: 3px 0;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(219, 234, 236, 0.2) 0%,
    rgba(255, 255, 255, 0.9) 50%,
    rgba(219, 234, 236, 0.1) 100%
  );
  background-image: url('https://www.fana-pension.de/images/fana-pension-muenchen.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat; 
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
}

.floating-circle {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(12, 114, 126, 0.1) 0%, rgba(219, 234, 236, 0.2) 100%);
}

.circle-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.circle-2 {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.circle-3 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  left: 60%;
  animation-delay: 4s;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 10;
}

.hero-content .contact-info {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1rem;
  flex-direction: row;
}

.hero-content .contact-info > a {
  text-decoration: none;  
}

.hero-content .contact-info .slogan, .hero-content .contact-info .tel-nr, .hero-content .contact-info .email, .hero-content .contact-info .whatsapp {  
	font-size: 22px;
	line-height: 28px;
	
}
.hero-content strong {
    display: block;
}

.hero-content .whatsapp {
    background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIj8+PCFET0NUWVBFIHN2ZyAgUFVCTElDICctLy9XM0MvL0RURCBTVkcgMS4xLy9FTicgICdodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQnPjxzdmcgaGVpZ2h0PSIxMDAlIiBzdHlsZT0iZmlsbC1ydWxlOmV2ZW5vZGQ7Y2xpcC1ydWxlOmV2ZW5vZGQ7c3Ryb2tlLWxpbmVqb2luOnJvdW5kO3N0cm9rZS1taXRlcmxpbWl0OjI7IiB2ZXJzaW9uPSIxLjEiIHZpZXdCb3g9IjAgMCA1MTIgNTEyIiB3aWR0aD0iMTAwJSIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczpzZXJpZj0iaHR0cDovL3d3dy5zZXJpZi5jb20vIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+PGcgaWQ9IldoYXRzQXBwLUxvZ28tSWNvbiI+PHBhdGggZD0iTTExNi4yMjUsLTAuMDAxYy0xMS4yNjQsMC41MTIgLTI2LjExMiwxLjUzNiAtMzIuNzY4LDMuMDcyYy0xMC4yNCwyLjA0OCAtMTkuOTY4LDUuMTIgLTI3LjY0OCw5LjIxNmMtOS43MjgsNC42MDggLTE3LjkyLDEwLjc1MiAtMjUuMDg4LDE3LjkyYy03LjY4LDcuNjggLTEzLjgyNCwxNS44NzIgLTE4LjQzMiwyNS42Yy00LjA5Niw3LjY4IC03LjE2OCwxNy40MDggLTkuMjE2LDI3LjY0OGMtMS41MzYsNi42NTYgLTIuNTYsMjEuNTA0IC0yLjU2LDMyLjc2OGMtMC41MTIsNC42MDggLTAuNTEyLDEwLjc1MiAtMC41MTIsMTMuODI0bDAsMjUxLjkwNWwwLDEzLjgyNGMwLjUxMiwxMS4yNjQgMS41MzYsMjYuMTEyIDMuMDcyLDMyLjc2OGMyLjA0OCwxMC4yNCA1LjEyLDE5Ljk2OCA5LjIxNiwyNy42NDhjNC42MDgsOS43MjggMTAuNzUyLDE3LjkyIDE3LjkyLDI1LjA4OGM3LjY4LDcuNjggMTUuODcyLDEzLjgyNCAyNS42LDE4LjQzMmM3LjY4LDQuMDk2IDE3LjQwOCw3LjE2OCAyNy42NDgsOS4yMTZjNi42NTYsMS41MzYgMjEuNTA0LDIuNTYgMzIuNzY4LDIuNTZjNC42MDgsMC41MTIgMTAuNzUyLDAuNTEyIDEzLjgyNCwwLjUxMmwyNTEuOTA0LDBsMTMuODI0LDBjMTEuMjY0LC0wLjUxMiAyNi4xMTIsLTEuNTM2IDMyLjc2OCwtMy4wNzJjMTAuMjQsLTIuMDQ4IDE5Ljk2OCwtNS4xMiAyNy42NDgsLTkuMjE2YzkuNzI4LC00LjYwOCAxNy45MiwtMTAuNzUyIDI1LjA4OCwtMTcuOTJjNy42OCwtNy42OCAxMy44MjQsLTE1Ljg3MiAxOC40MzIsLTI1LjZjNC4wOTYsLTcuNjggNy4xNjgsLTE3LjQwOCA5LjIxNiwtMjcuNjQ4YzEuNTM2LC02LjY1NiAyLjU2LC0yMS41MDQgMi41NiwtMzIuNzY4YzAuNTEyLC00LjYwOCAwLjUxMiwtMTAuNzUyIDAuNTEyLC0xMy44MjRsMCwtMjY1LjcyOWMtMC41MTIsLTExLjI2NCAtMS41MzYsLTI2LjExMiAtMy4wNzIsLTMyLjc2OGMtMi4wNDgsLTEwLjI0IC01LjEyLC0xOS45NjggLTkuMjE2LC0yNy42NDhjLTQuNjA4LC05LjcyOCAtMTAuNzUyLC0xNy45MiAtMTcuOTIsLTI1LjA4OGMtNy42OCwtNy42OCAtMTUuODcyLC0xMy44MjQgLTI1LjYsLTE4LjQzMmMtNy42OCwtNC4wOTYgLTE3LjQwOCwtNy4xNjggLTI3LjY0OCwtOS4yMTZjLTYuNjU2LC0xLjUzNiAtMjEuNTA0LC0yLjU2IC0zMi43NjgsLTIuNTZjLTQuNjA4LC0wLjUxMiAtMTAuNzUyLC0wLjUxMiAtMTMuODI0LC0wLjUxMmwtMjY1LjcyOCwwWiIgc3R5bGU9ImZpbGw6dXJsKCNfTGluZWFyMSk7ZmlsbC1ydWxlOm5vbnplcm87Ii8+PHBhdGggZD0iTTM0NC43NTQsMjg5LjY5OGMtNC41NiwtMi4yODIgLTI2Ljk4LC0xMy4zMTEgLTMxLjE2MSwtMTQuODMyYy00LjE4LC0xLjUyMSAtNy4yMTksLTIuMjgyIC0xMC4yNTksMi4yODJjLTMuMDQxLDQuNTY0IC0xMS43OCwxNC44MzIgLTE0LjQ0LDE3Ljg3NWMtMi42NiwzLjA0MiAtNS4zMiwzLjQyMyAtOS44OCwxLjE0Yy00LjU2MSwtMi4yODEgLTE5LjI1NCwtNy4wOTUgLTM2LjY3MiwtMjIuNjI3Yy0xMy41NTYsLTEyLjA4NyAtMjIuNzA5LC0yNy4wMTcgLTI1LjM2OSwtMzEuNTgxYy0yLjY2LC00LjU2NCAtMC4yODMsLTcuMDMxIDIsLTkuMzA0YzIuMDUxLC0yLjA0MSA0LjU2LC01LjMyNCA2Ljg0LC03Ljk4NmMyLjI4LC0yLjY2MiAzLjA0LC00LjU2NCA0LjU2LC03LjYwNmMxLjUyLC0zLjA0MiAwLjc2LC01LjcwNSAtMC4zOCwtNy45ODdjLTEuMTQsLTIuMjgyIC0xMC4yNiwtMjQuNzIgLTE0LjA2LC0zMy44NDhjLTMuNzAxLC04Ljg4OSAtNy40NjEsLTcuNjg2IC0xMC4yNiwtNy44MjZjLTIuNjU3LC0wLjEzMiAtNS43LC0wLjE2IC04Ljc0LC0wLjE2Yy0zLjA0MSwwIC03Ljk4LDEuMTQxIC0xMi4xNjEsNS43MDRjLTQuMTgsNC41NjQgLTE1Ljk2LDE1LjU5NCAtMTUuOTYsMzguMDMyYzAsMjIuNDM4IDE2LjM0LDQ0LjExNiAxOC42Miw0Ny4xNTljMi4yODEsMy4wNDMgMzIuMTU3LDQ5LjA4OSA3Ny45MDIsNjguODM2YzEwLjg4LDQuNjk3IDE5LjM3NCw3LjUwMSAyNS45OTcsOS42MDNjMTAuOTI0LDMuNDY5IDIwLjg2NiwyLjk4IDI4LjcyMywxLjgwNmM4Ljc2MSwtMS4zMDkgMjYuOTgsLTExLjAyOSAzMC43ODEsLTIxLjY3N2MzLjc5OSwtMTAuNjQ5IDMuNzk5LC0xOS43NzcgMi42NTksLTIxLjY3OGMtMS4xMzksLTEuOTAyIC00LjE3OSwtMy4wNDMgLTguNzQsLTUuMzI1bS04My4yMDcsMTEzLjU3M2wtMC4wNjEsMGMtMjcuMjIsLTAuMDExIC01My45MTcsLTcuMzIgLTc3LjIwNywtMjEuMTM3bC01LjUzOSwtMy4yODdsLTU3LjQxMywxNS4wNTZsMTUuMzI1LC01NS45NTlsLTMuNjA4LC01LjczNmMtMTUuMTg0LC0yNC4xNDUgLTIzLjIwMywtNTIuMDUxIC0yMy4xOTIsLTgwLjcwNGMwLjAzMywtODMuNjExIDY4LjA4MywtMTUxLjYzNSAxNTEuNzU2LC0xNTEuNjM1YzQwLjUxNywwLjAxNiA3OC42MDMsMTUuODExIDEwNy4yNDMsNDQuNDc0YzI4LjY0LDI4LjY2MyA0NC40MDQsNjYuNzY0IDQ0LjM4OSwxMDcuMjgzYy0wLjAzNSw4My42MTcgLTY4LjA4MywxNTEuNjQ1IC0xNTEuNjkzLDE1MS42NDVtMTI5LjEwMiwtMjgwLjcwOWMtMzQuNDU3LC0zNC40ODYgLTgwLjI4MSwtNTMuNDg3IC0xMjkuMTAzLC01My41MDdjLTEwMC41OTUsMCAtMTgyLjQ2OCw4MS44NDEgLTE4Mi41MDgsMTgyLjQzN2MtMC4wMTMsMzIuMTU2IDguMzksNjMuNTQ2IDI0LjM2MSw5MS4yMTJsLTI1Ljg5Miw5NC41NDVsOTYuNzUsLTI1LjM3YzI2LjY1NywxNC41MzUgNTYuNjcsMjIuMTk0IDg3LjIxNiwyMi4yMDdsMC4wNzUsMGMxMDAuNTg2LDAgMTgyLjQ2NSwtODEuODUyIDE4Mi41MDYsLTE4Mi40NDhjMC4wMTksLTQ4Ljc1MSAtMTguOTQ2LC05NC41OSAtNTMuNDA1LC0xMjkuMDc2IiBzdHlsZT0iZmlsbDojZmZmOyIvPjwvZz48ZGVmcz48bGluZWFyR3JhZGllbnQgZ3JhZGllbnRUcmFuc2Zvcm09Im1hdHJpeCgwLC01MTIsLTUxMiwwLDI1Ni4wMDEsNTEyKSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIGlkPSJfTGluZWFyMSIgeDE9IjAiIHgyPSIxIiB5MT0iMCIgeTI9IjAiPjxzdG9wIG9mZnNldD0iMCIgc3R5bGU9InN0b3AtY29sb3I6IzI1Y2Y0MztzdG9wLW9wYWNpdHk6MSIvPjxzdG9wIG9mZnNldD0iMSIgc3R5bGU9InN0b3AtY29sb3I6IzYxZmQ3ZDtzdG9wLW9wYWNpdHk6MSIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjwvc3ZnPg==');
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 28px;
    padding-left: 35px;
    font-weight: 700;
}
.hero-content .tel-nr {
    background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIj8+PHN2ZyBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMjAgMTAuOTk5aDJDMjIgNS44NjkgMTguMTI3IDIgMTIuOTkgMnYyQzE3LjA1MiA0IDIwIDYuOTQzIDIwIDEwLjk5OXoiLz48cGF0aCBkPSJNMTMgOGMyLjEwMyAwIDMgLjg5NyAzIDNoMmMwLTMuMjI1LTEuNzc1LTUtNS01djJ6bTMuNDIyIDUuNDQzYTEuMDAxIDEuMDAxIDAgMCAwLTEuMzkxLjA0M2wtMi4zOTMgMi40NjFjLS41NzYtLjExLTEuNzM0LS40NzEtMi45MjYtMS42Ni0xLjE5Mi0xLjE5My0xLjU1My0yLjM1NC0xLjY2LTIuOTI2bDIuNDU5LTIuMzk0YTEgMSAwIDAgMCAuMDQzLTEuMzkxTDYuODU5IDMuNTEzYTEgMSAwIDAgMC0xLjM5MS0uMDg3bC0yLjE3IDEuODYxYTEgMSAwIDAgMC0uMjkuNjQ5Yy0uMDE1LjI1LS4zMDEgNi4xNzIgNC4yOTEgMTAuNzY2QzExLjMwNSAyMC43MDcgMTYuMzIzIDIxIDE3LjcwNSAyMWMuMjAyIDAgLjMyNi0uMDA2LjM1OS0uMDA4YS45OTIuOTkyIDAgMCAwIC42NDgtLjI5MWwxLjg2LTIuMTcxYTEgMSAwIDAgMC0uMDg2LTEuMzkxbC00LjA2NC0zLjY5NnoiLz48L3N2Zz4=');
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 28px;
    padding-left: 35px;
    font-weight: 700;
}
.hero-content .email {
    background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIj8+PHN2ZyBpZD0iSWNvbnMiIHZpZXdCb3g9IjAgMCAyNCAyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzIzMjMyMzt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjAsMkg0QTQsNCwwLDAsMCwwLDZWMThhNCw0LDAsMCwwLDQsNEgyMGE0LDQsMCwwLDAsNC00VjZBNCw0LDAsMCwwLDIwLDJabTIsMTZhMiwyLDAsMCwxLTIsMkg0YTIsMiwwLDAsMS0yLTJWNkEyLDIsMCwwLDEsNCw0SDIwYTIsMiwwLDAsMSwyLDJaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTkuNzQsNy4wMTdhMSwxLDAsMCwwLTEuNDEzLS4wNjdMMTMuMzUsMTEuNDc5YTIuMDA1LDIuMDA1LDAsMCwxLTIuNywwTDUuNjczLDYuOTVBMSwxLDAsMSwwLDQuMzI3LDguNDNsMy45NTcsMy42TDQuMzI4LDE1LjYyQTEsMSwwLDEsMCw1LjY3MiwxNy4xbDQuMTQzLTMuNzZhMy45MzcsMy45MzcsMCwwLDAsNC4zNywwbDQuMTQzLDMuNzZhMSwxLDAsMSwwLDEuMzQ0LTEuNDhsLTMuOTU1LTMuNTkxLDMuOTU2LTMuNkExLDEsMCwwLDAsMTkuNzQsNy4wMTdaIi8+PC9zdmc+');
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 28px;
    padding-left: 35px;
    font-weight: 700;
}

.hero-content .standorte {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}
.hero-content .standorte .box {
    background-color: #fff;
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    line-height: 1.5;
}


.hero-text {
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
  padding: 40px 20px 55px;
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: var(--border-radius);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
}

.hero-title {
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1;
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  line-height: 1.3;
  color: var(--text-gray);  
  max-width: 600px;
  margin: 2rem auto 2rem;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-family: var(--font-sans);
  border-radius: var(--border-radius);
  padding-right: 1rem;
  transition: var(--transition);
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  transition: var(--transition);
}

.feature-item:hover .feature-icon {
  transform: scale(1.1);
  box-shadow: var(--shadow);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* Sections */
section {
  padding: 6rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto;
}

/* Rooms Section */
.rooms {
  background: var(--white);
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.room-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(12, 114, 126, 0.1);
  position: relative;
}

.featured-room {
  border: 2px solid rgba(12, 114, 126, 0.3);
  transform: scale(1.02);
}

.popular-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #2a9fb0 100%);
  color: var(--white);
  padding: 8px 13px 5px 6px;
  border-radius: 0 0 0 16px;
  font-size: 0.875rem;
  font-weight: 600;
  z-index: 10;
}

.room-image {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-content {
  padding: 2rem;
}

.room-features {
  list-style: none;
  margin: 1.5rem 0;
}

.room-features li {
  padding: 0.5rem 0;
  color: var(--text-gray);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.feature-check {
  color: var(--primary-color);
  font-weight: bold;
  width: 20px;
}

.room-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 2rem 0;
  padding: 1.5rem;
  background: rgba(12, 114, 126, 0.05);
  border-radius: var(--border-radius);
}

.price-label {
  font-size: 0.875rem;
  color: var(--text-gray);
  font-family: var(--font-serif);
}

.price-main {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  font-family: var(--font-sans);
}

.price-period {
  font-size: 0.875rem;
  color: var(--text-gray);
  font-family: var(--font-serif);
}

.room-btn {
  width: 100%;
  margin-top: 1rem;
}

.pricing-note {
  text-align: center;
  margin-top: 3rem;
}

.note-content {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(12, 114, 126, 0.05);
  padding: 1rem 2rem 0 1rem;
  border-radius: 50px;
  backdrop-filter: blur(10px);
}

/* Gallery Section */
.gallery {
  background: linear-gradient(135deg, rgba(219, 234, 236, 0.2) 0%, rgba(255, 255, 255, 0.9) 100%);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  height: 250px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: var(--white);
  padding: 2rem;
  transform: translateY(100%);
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.overlay-content h3 {
  margin-bottom: 0.5rem;
  font-family: var(--font-sans);
}

.overlay-content p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* Amenities Section */
.amenities {
  background: var(--white);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.amenity-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(12, 114, 126, 0.1);
}

.amenity-icon {
  width: 80px;
  height: 80px;
  border-radius: var(--border-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--primary-color);
  transition: var(--transition);
}

.amenity-card:hover .amenity-icon {
  transform: scale(1.1);
  box-shadow: var(--shadow);
}

.amenity-card h3 {
  font-family: var(--font-sans);
  margin-bottom: 1rem;
}

.amenity-card p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
  background: linear-gradient(135deg, rgba(219, 234, 236, 0.2) 0%, rgba(255, 255, 255, 0.9) 100%);
}

.rating-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.stars {
  display: flex;
  gap: 0.25rem;
}

.star {
  color: var(--primary-color);
  font-size: 1.5rem;
  animation: pulse 2s infinite;
}

.star:nth-child(1) {
  animation-delay: 0s;
}
.star:nth-child(2) {
  animation-delay: 0.1s;
}
.star:nth-child(3) {
  animation-delay: 0.2s;
}
.star:nth-child(4) {
  animation-delay: 0.3s;
}
.star:nth-child(5) {
  animation-delay: 0.4s;
}

.rating-text {
  font-family: var(--font-serif);
  color: var(--text-gray);
  font-size: 1.125rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(12, 114, 126, 0.1);
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.testimonial-stars .star {
  font-size: 1.25rem;
  animation: none;
}

.testimonial-content p {
  font-style: italic;
  color: var(--text-dark);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(12, 114, 126, 0.2) 0%, rgba(219, 234, 236, 0.3) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary-color);
  font-family: var(--font-sans);
}

/* Locations Section */
.locations {
  background: var(--white);
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
}

.location-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(12, 114, 126, 0.1);
}

.location-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 2rem 2rem 1rem;
}

.location-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  transition: var(--transition);
}

.location-header h3 {
  margin: 0;
  font-family: var(--font-sans);
}

.location-image {
  height: 200px;
  margin: 0 2rem;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.location-content {
  padding: 2rem;
}

.location-description {
  margin-bottom: 2rem;
  font-size: 1rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(12, 114, 126, 0.05);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.contact-item:hover {
  background: rgba(12, 114, 126, 0.1);
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(12, 114, 126, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
}

/* Contact CTA Section */
.contact-cta {
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #0c727e 0%, #1a8a9a 25%, #0c727e 50%, #2a9fb0 75%, #0c727e 100%);
  background-size: 400% 400%;
  animation: gradientShift 8s ease infinite;
}

.cta-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(219, 234, 236, 0.1) 0%, transparent 50%);
}

.cta-background::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg at 50% 50%,
    transparent 0deg,
    rgba(255, 255, 255, 0.03) 60deg,
    transparent 120deg
  );
  animation: rotate 20s linear infinite;
}

.floating-light {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  filter: blur(20px);
  animation: float 6s ease-in-out infinite;
}

.light-1 {
  width: 120px;
  height: 120px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.light-2 {
  width: 80px;
  height: 80px;
  top: 30%;
  right: 20%;
  animation-delay: 2s;
}

.light-3 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 25%;
  animation-delay: 4s;
}

.light-4 {
  width: 100px;
  height: 100px;
  bottom: 30%;
  right: 30%;
  animation-delay: 1s;
}

.cta-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
  color: var(--white);
}

.cta-subtitle {
  font-size: 1.25rem;
  margin-bottom: 3rem;
  opacity: 0.9;
  color: var(--white);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.cta-info {
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.info-item {
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  text-align: center;
  transition: var(--transition);
}

.info-item h3 {
  font-size: 1.25rem;
  font-family: var(--font-sans);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
}

.info-item p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* Footer */
.footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 3rem 0;
}

.footer p {
  font-family: var(--font-serif);
  color: var(--text-light-gray);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.footer-logo .logo {
  opacity: 0.8;
  transition: var(--transition);
}

.footer-logo .logo:hover {
  opacity: 1;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
  font-family: var(--font-serif);
}

.footer-links a:hover {
  color: var(--primary-light);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #444;
  color: #ccc;
  font-family: var(--font-serif);
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
}

.modal-content {
  background-color: var(--white);
  margin: 5% auto;
  padding: 0;
  border-radius: var(--border-radius-lg);
  width: 90%;
  max-width: 500px;
  box-shadow: var(--shadow-xl);
  animation: modalSlideIn 0.3s ease-out;
  border: 1px solid rgba(12, 114, 126, 0.1);
  max-height: 90vh;
  overflow-y: auto;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  border-bottom: 1px solid rgba(12, 114, 126, 0.1);
}

.modal-header h2 {
  font-size: var(--font-size-modal-title);
  margin: 0;
  color: var(--text-dark);
  font-family: var(--font-sans);
}

.close {
  color: var(--text-gray);
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;  
  justify-content: center;
  border-radius: 50%;
  line-height: 1;
}

.close:hover {
  color: var(--text-dark);
  background: rgba(12, 114, 126, 0.1);
}

.modal-body {
  padding: 2rem;
}

/* Form Styles */
.form-group {
  margin-bottom: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.form-row textarea {
	width: 432px;
	min-height: 150px;
	padding: 2px;
	display: block;
	border-radius: 8px;
}

.form-group label, .form-row label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-dark);
  font-family: var(--font-sans);
}

.form-group textarea {
  display: block;
  width: 100%;
  padding: 1rem;
  border: 2px solid rgba(12, 114, 126, 0.1);
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-family: var(--font-serif);
  transition: var(--transition);
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 1rem;
  border: 2px solid rgba(12, 114, 126, 0.1);
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-family: var(--font-serif);
  transition: var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(12, 114, 126, 0.1);
}

/* Standort-Auswahl als Karten */
.location-options {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.location-option {
  flex: 1 1 0;
  min-width: 0;
  padding: 1rem 1.25rem;
  border-radius: var(--border-radius-lg);
  border: 2px solid rgba(12, 114, 126, 0.15);
  background: rgba(12, 114, 126, 0.02);
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  transition: var(--transition);
  font-family: var(--font-sans);
}

.location-option .location-title {
  font-weight: 700;
}

.location-option .location-subtitle {
  font-size: 0.875rem;
  color: var(--text-gray);
}

.location-option:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: rgba(12, 114, 126, 0.4);
  background: rgba(12, 114, 126, 0.06);
}

.location-option.active {
  border-color: var(--primary-color);
  background: rgba(12, 114, 126, 0.1);
  box-shadow: var(--shadow-hover);
}

.location-option.active .location-title {
  color: var(--primary-color);
}

.availability-result {
  margin-top: 2rem;
}

.result-success {
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  text-align: center;
  border: 2px solid var(--primary-color);
}

.legal-page {
  padding-top: 120px;
}

.legal-page h1 {
  margin-bottom: 1.25rem;
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--text-dark);
}

.legal-page p {
  max-width: 700px;
}

.legal-page h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 500;
}

.legal-page h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  font-weight: 500;
}

.legal-page hr {
  margin: 2.5rem 0;
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

/* Listen innerhalb von Legal-Seiten */
.legal-page ul,
.legal-page ol {
  max-width: 700px;
  padding-left: 1.25rem;
  margin: 0 0 1rem 0;
}

.legal-page li {
  margin-bottom: 0.4rem;
  line-height: 1.6;
}

.success-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.result-success h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-family: var(--font-sans);
}

.result-details {
  margin: 2rem 0;
  padding: 1.5rem;
  background: rgba(12, 114, 126, 0.05);
  border-radius: var(--border-radius);
}

.result-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Gallery Modal */
.gallery-modal .modal-content {
  max-width: 96vw;
  max-height: 96vh;
  margin: 2vh auto;
  overflow: hidden;
  position: relative;
}

.gallery-modal-content {
  display: flex;
  flex-direction: column;
  height: 96vh;
}

.gallery-modal-body {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: 0.75rem;
  min-height: 400px;
}

.gallery-image-container {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.gallery-modal-image {
  width: 100%;
  max-width: 100%;
  max-height: 80vh;
  height: auto;
  border-radius: var(--border-radius-lg);
  object-fit: contain;
  background: #fff;
  margin-bottom: 0.5rem;
}

.gallery-caption {
  padding: 0.75rem 1rem;
  border-radius: var(--border-radius);
  max-width: 480px;
}

.gallery-caption h3 {
  margin-bottom: 0.5rem;
  color: var(--white);
  font-family: var(--font-sans);
}

.gallery-caption p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 1rem;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Galerie-Modal: Close Button oben rechts und über allem */
.gallery-modal .close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 3000;
}

.gallery-nav:hover {
  background: #0a5f68;
  transform: translateY(-50%) scale(1.1);
  box-shadow: var(--shadow-hover);
}

.gallery-nav.prev {
  left: 1rem;
}

.gallery-nav.next {
  right: 1rem;
}

.gallery-thumbnails {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem;
  border-top: 1px solid rgba(12, 114, 126, 0.1);
  flex-wrap: wrap;
}

.thumbnail {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.875rem;
  font-family: var(--font-sans);
  background: rgba(12, 114, 126, 0.05);
  border: 2px solid transparent;
}

.thumbnail:hover,
.thumbnail.active {
  background: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
  transform: scale(1.05);
}

.thumbnail-image {
  width: 60px;
  height: 40px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.75rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .hamburger {
    display: flex;
  }
  .hero-subtitle {
    margin-bottom: 1.5rem;
  }

  .hero-text {
    padding: 20px 0;
    border-radius: 0;
    box-shadow: none;
    background-color: transparent;
  }
  .hero-background {
    background-image: none;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  /* Galerie-Modal: einfache Pfeilnavigation und ohne Thumbnails auf Smartphones */
  .gallery-thumbnails {
    display: none;
  }

  .gallery-nav {
    width: 40px;
    height: 40px;
    padding: 0.5rem;
    background: rgba(0, 0, 0, 0.45);
    box-shadow: none;
  }

  .gallery-nav svg {
    width: 20px;
    height: 20px;
  }

  .modal-content {
    margin: 10% auto;
    width: 95%;
  }

  /* Galerie-Modal: kompakter auf Mobile */
  .gallery-modal .modal-content {
    width: 95vw;
    max-height: 85vh;
    margin: 6vh auto;
  }
  .gallery-modal-content {
    height: auto;
  }
  .gallery-modal-body {
    padding: 0.5rem 0.75rem;
  }
  .gallery-modal-image {
    max-height: 55vh;
    background: transparent;
  }
  .gallery-caption {
    padding: 0.5rem 0.75rem;
    max-width: 90%;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .locations-grid {
    grid-template-columns: 1fr;
  }

  .rooms-grid {
    grid-template-columns: 1fr;
  }

  .amenities-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 700px) {  
  .hero-features {
    gap: 1rem;
  }
  .hero-features .feature-icon {
    width: 32px;
    height: 32px;
  }
}
@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .hero-features {
    gap: 1rem;
  }

  .hero-buttons {
    gap: 1rem;
  }

  .result-actions {
    flex-direction: column;
  }

  .gallery-thumbnails {
    gap: 0.5rem;
  }

  .thumbnail {
    padding: 0.5rem;
  }

  .modal-header,
  .modal-body {
    padding: 1.5rem;
  }

  /* Galerie-Modal: Caption auf sehr kleinen Bildschirmen ausblenden,
     damit kein unnötiger Leerraum unter dem Bild entsteht */
  .gallery-caption {
    display: none;
  }

  /* Zimmer-Features auf Smartphones kompakter darstellen */
  .room-features li {
    padding: 0.3rem 0;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .modal,
  .floating-elements,
  .cta-background {
    display: none !important;
  }

  body {
    font-size: 12pt;
    line-height: 1.4;
  }

  .hero {
    min-height: auto;
    padding: 2rem 0;
  }
}
