@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Inter",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Playfair Display",  sans-serif;
  --nav-font: "Inter",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #000000; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #444444; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #dcb437; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #ffffff;  /* The default color of the main navmenu links */
  --nav-hover-color: #dcb437; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #000000; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #ffffff; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #dcb437; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: rgba(255, 242, 204, 0.34);
  --default-color: #000000;
  --heading-color: #3b2e03;
  --accent-color: #dcb437;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}

.dark-background {
  --background-color: #0c0d0f;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #dcb437;
  --surface-color: #222427;
  --contrast-color: #000000;
}

.slider-back {
  --background-color: #201902;
  --default-color: #000000;
  --heading-color: #ffffff;
  --accent-color: #dcb437;
  --surface-color: #eeeeee;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
/* -----------------------------
1. global
------------------------------ */
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  font-size: 1.1rem;
  line-height: 28px;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

.bold {
  font-weight: 700;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.lead-muted {
  color: var(--gc-muted);
}

/* -----------------------------
2. anfrage
------------------------------ */
.info-cta .gc-card {
  max-width: 720px;
  margin: 0 auto;
}

/* -----------------------------
2. Hero Haupteseite (Jede Seite)
------------------------------ */
.hero {
  padding: 0;
  margin: 0;
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero .hero-content {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: end;
  padding: 0 0;
}

.hero .hero-bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero .hero-text {
  margin-top: 5rem;
  background: color-mix(in srgb, var(--default-color), transparent 75%);
  padding: 10px 0;
  margin-bottom: 60px;
}

.hero .hero-text h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  text-shadow: 2px 2px 2px var(--default-color);
}

@media (max-width: 992px) {
  .hero .hero-text h1 {
    font-size: 1.8rem;
  }
}

.hero .hero-text p {
  font-size: 1.1rem;
  color: var(--contrast-color);
  text-shadow: 2px 2px 2px var(--default-color);
  line-height: 1.6;
}

@media (max-width: 992px) {
  .hero .hero-text p {
    font-size: 1.2rem;
  }
}

.hero .hero-text .hero-subtitle {
  font-size: 1.4rem;
  color: var(--contrast-color);
  text-shadow: 2px 2px 2px var(--default-color);
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 992px) {
  .hero .hero-text .hero-subtitle {
    font-size: 1.2rem;
  }
}

.hero .hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .hero .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}

.hero .hero-actions .btn {
  border-radius: 50px;
  padding: 1rem 2rem;
  font-weight: 600;
  text-transform: uppercase;
  text-shadow: 1px 1px 1px var(--default-color);
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

@media (max-width: 992px) {
  .hero .hero-actions .btn {
    padding: 0.5rem 1rem;
    font-size: 1rem;
  }
}

.hero .hero-actions .btn i {
  margin-right: 0.5rem;
}

.hero .hero-actions .btn.btn-light {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
}

.hero .hero-actions .btn.btn-light:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 60%);
}

@media (max-width: 768px) {
  .hero {
    min-height: 100vh;
  }

  .hero .hero-text {
    margin-bottom: 1rem;
  }

  .hero .hero-actions {
    margin-bottom: 0.2rem;
  }
}

.gastgeber-haus-about .about-visuals {
  position: relative;
}

.gastgeber-haus-about .about-visuals .main-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.gastgeber-haus-about .about-visuals .main-image img {
  width: 100%;
  height: auto;
  transition: transform 0.5s;
}

.gastgeber-haus-about .about-visuals .main-image img:hover {
  transform: scale(1.03);
}

.gastgeber-haus-about .about-visuals .image-grid img {
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
  object-fit: cover;
}

.gastgeber-haus-about .history-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

@media (max-width: 767.98px) {
  .gastgeber-haus-about .history-grid {
    grid-template-columns: 1fr;
  }
}

.gastgeber-haus-about .history-item {
  position: relative;
  padding-left: 1.25rem;
}

.gastgeber-haus-about .history-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 2px;
  height: 100%;
  background: #c8a96b;
}

.gastgeber-haus-about .history-year {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #7a6133;
  letter-spacing: 0.04em;
}

.gastgeber-haus-about .history-title {
  margin: 0 0 0.4rem;
  font-size: 1.35rem;
  font-weight: 600;
  color: #2f3a45;
  line-height: 1.3;
}

.gastgeber-haus-about .history-text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #5a6470;
  max-width: 420px;
}

/* -----------------------------
4. event spots
------------------------------ */
.events-spots .spot-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-shadow: 0 5px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.events-spots .spot-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.14);
  border-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.events-spots .spot-card:hover .spot-media img {
  transform: scale(1.05);
  filter: saturate(1.05) contrast(1.05);
}

.events-spots .spot-card:hover .spot-cta i {
  transform: translateX(3px);
}

.events-spots .spot-card:focus-visible {
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color) 25%, transparent), 0 16px 34px rgba(0, 0, 0, 0.14);
  border-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.events-spots .spot-media {
  position: relative;
  overflow: hidden;
}

.events-spots .spot-media img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease, filter 0.35s ease;
}

@media (max-width: 576px) {
  .events-spots .spot-media img {
    height: 220px;
  }
}

.events-spots .spot-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  background: color-mix(in srgb, #000, transparent 55%);
  color: #fff;
  border: 1px solid color-mix(in srgb, #fff, transparent 75%);
}

.events-spots .spot-badge i {
  font-size: 1rem;
}

.events-spots .spot-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 18px;
}

.events-spots .spot-body h3 {
  margin-bottom: 0.45rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--heading-color);
}

.events-spots .spot-body p {
  margin-bottom: 0.9rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.events-spots .spot-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 0.7rem;
}

.events-spots .spot-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 12%);
}

.events-spots .spot-meta span i {
  font-size: 1rem;
  color: var(--accent-color);
}

.events-spots .spot-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
  color: var(--contrast-color);
}

.events-spots .spot-cta i {
  transition: transform 0.25s ease;
}

/* -----------------------------
5. Rooms (Detailansicht - neu)
------------------------------ */
.rooms-detail .row {
  align-items: center;
}

.rooms-detail .hero-banner {
  height: 100%;
}

.rooms-detail .hero-banner .banner-slider {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: var(--surface-color);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 90%);
}

.rooms-detail .hero-banner .swiper-slide {
  height: auto;
}

.rooms-detail .hero-banner img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 24px;
}

.rooms-detail .hero-banner .slider-controls {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 2;
}

.rooms-detail .hero-banner .slider-controls .swiper-button-prev,
.rooms-detail .hero-banner .slider-controls .swiper-button-next {
  position: static;
  width: 44px;
  height: 44px;
  margin: 0;
  border-radius: 50%;
  background: color-mix(in srgb, var(--surface-color), transparent 10%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  color: var(--heading-color);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.rooms-detail .hero-banner .slider-controls .swiper-button-prev::after,
.rooms-detail .hero-banner .slider-controls .swiper-button-next::after {
  font-size: 16px;
  font-weight: 700;
}

.rooms-detail .hero-banner .slider-controls .swiper-button-prev:hover,
.rooms-detail .hero-banner .slider-controls .swiper-button-next:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.rooms-detail .hero-banner .slider-controls .swiper-pagination {
  position: static;
  width: auto;
  min-width: 68px;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1;
  color: var(--heading-color);
  background: color-mix(in srgb, var(--surface-color), transparent 10%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  backdrop-filter: blur(8px);
}

.rooms-detail .sticky-sidebar {
  position: static;
  top: auto;
  height: 100%;
  display: flex;
  align-items: center;
}

.rooms-detail .client-card {
  width: 100%;
  padding: 2rem;
  border-radius: 24px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 92%);
}

.rooms-detail .client-card h4 {
  margin-bottom: 0.35rem;
  font-size: 2rem;
  font-weight: 600;
  color: var(--heading-color);
  letter-spacing: -0.02em;
}

.rooms-detail .client-card .description {
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--default-color);
  opacity: 0.9;
}

.rooms-detail .amenities-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem 1rem;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
}

.rooms-detail .amenity-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 48px;
  padding: 0.8rem 0.95rem;
  border-radius: 16px;
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
  color: var(--default-color);
}

.rooms-detail .amenity-item i {
  font-size: 1rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.rooms-detail .amenity-item span {
  font-size: 0.95rem;
  line-height: 1.4;
  color: var(--heading-color);
}

@media (max-width: 991.98px) {
  .rooms-detail .row {
    align-items: stretch;
  }

  .rooms-detail .sticky-sidebar {
    display: block;
  }

  .rooms-detail .client-card {
    padding: 1.5rem;
  }

  .rooms-detail .client-card h4 {
    font-size: 1.6rem;
  }
}

@media (max-width: 575.98px) {

  .rooms-detail .hero-banner .banner-slider,
  .rooms-detail .hero-banner img {
    border-radius: 18px;
  }

  .rooms-detail .hero-banner .slider-controls {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .rooms-detail .hero-banner .slider-controls .swiper-button-prev,
  .rooms-detail .hero-banner .slider-controls .swiper-button-next {
    width: 40px;
    height: 40px;
  }

  .rooms-detail .hero-banner .slider-controls .swiper-pagination {
    font-size: 0.85rem;
    padding: 0.5rem 0.75rem;
  }

  .rooms-detail .client-card {
    padding: 1.25rem;
    border-radius: 18px;
  }

  .rooms-detail .amenities-list {
    grid-template-columns: 1fr;
  }
}

/* -----------------------------
6. highlights (meistens rooms)
------------------------------ */
.highlights .premium-room-panel {
  background: transparent;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  border-radius: 28px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .highlights .premium-room-panel {
    border-radius: 20px;
  }
}

.highlights .intro-panel,
.highlights .room-facts {
  height: 100%;
  background: transparent;
}

.highlights .intro-panel {
  border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

@media (max-width: 991.98px) {
  .highlights .intro-panel {
    border-right: 0;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  }
}

.highlights .intro-content,
.highlights .room-facts {
  padding: 48px;
}

@media (max-width: 1199.98px) {

  .highlights .intro-content,
  .highlights .room-facts {
    padding: 40px;
  }
}

@media (max-width: 767.98px) {

  .highlights .intro-content,
  .highlights .room-facts {
    padding: 28px 22px;
  }
}

.highlights .room-header {
  margin-bottom: 14px;
}

.highlights .room-title h3 {
  margin: 0;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--heading-color);
}

.highlights .room-subtitle {
  margin-top: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent-color);
  line-height: 1.5;
}

.highlights .intro-highlights {
  margin: 1.5rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.highlights .intro-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--heading-color);
}

.highlights .intro-highlights i {
  flex: 0 0 auto;
  margin-top: 3px;
  font-size: 1rem;
  color: var(--accent-color);
}

.highlights .room-facts {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.highlights .room-facts-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

@media (max-width: 575.98px) {
  .highlights .room-facts-grid {
    grid-template-columns: 1fr;
  }
}

.highlights .fact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  min-height: 132px;
  padding: 26px 20px;
  background: transparent;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  border-radius: 18px;
  transition: all 0.28s ease;
}

.highlights .fact-card:first-child {
  border-color: color-mix(in srgb, var(--accent-color), transparent 55%);
  background: color-mix(in srgb, var(--accent-color), transparent 94%);
}

.highlights .fact-card:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--default-color), transparent 86%);
}

.highlights .fact-card i {
  font-size: 1.35rem;
  color: var(--accent-color);
  margin-bottom: 4px;
  line-height: 1;
}

.highlights .fact-card h4 {
  margin: 0 0 4px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--heading-color);
}

.highlights .fact-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--default-color);
  opacity: 0.88;
}

@media (max-width: 768px) {
  .highlights .room-title h3 {
    font-size: 1.45rem;
  }

  .highlights .room-subtitle,
  .highlights .intro-highlights li,
  .highlights .fact-card p {
    font-size: 0.95rem;
  }

  .highlights .fact-card {
    min-height: 118px;
    padding: 22px 18px;
    border-radius: 16px;
  }
}

/* -----------------------------
7. cta Buttons für alle
------------------------------ */
.cta-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 992px) {
  .cta-buttons {
    gap: 10px;
  }
}

.cta-buttons .btn {
  padding: 12px 26px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0.25rem;
  transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
  border: 1px solid transparent;
}

@media (max-width: 992px) {
  .cta-buttons .btn {
    flex: 1;
    text-align: center;
    min-width: 140px;
  }
}

.cta-buttons .btn.btn-primary {
  background-color: var(--accent-color);
  color: var(--surface-color);
  border-color: var(--accent-color);
}

.cta-buttons .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), var(--default-color) 10%);
  transform: translateY(-2px);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.cta-buttons .btn.btn-outline-primary {
  background: transparent;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.cta-buttons .btn.btn-outline-primary:hover {
  background: color-mix(in srgb, var(--contrast-color) 10%, transparent);
  transform: translateY(-1px);
}

/* -----------------------------
8. content-teaser (Winter oder Sommer)
------------------------------ */
.content-teaser .about-image {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
}

.content-teaser .about-image .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  z-index: 2;
  width: 94px;
  height: 94px;
  display: block;
  border-radius: 50%;
}

.content-teaser .about-image img {
  display: block;
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.1);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

@media (max-width: 991px) {
  .content-teaser .about-image img {
    min-height: auto;
  }
}

.content-teaser .about-image:hover img {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.14);
}

.content-teaser .subtitle {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-color);
  opacity: 0.8;
}

.content-teaser h2 {
  margin-bottom: 12px;
  font-size: 1.85rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--heading-color);
}

@media (max-width: 992px) {
  .content-teaser h2 {
    font-size: 1.6rem;
  }
}

.content-teaser .lead {
  margin-bottom: 22px;
  font-size: 1.05rem;
  line-height: 1.65;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.content-teaser .cta-buttons {
  margin-top: 18px;
}

@media (max-width: 992px) {
  .content-teaser .cta-buttons {
    justify-content: center;
  }
}

/* einfache Feature-Liste */
.features-list {
  margin-bottom: 28px;
}

.features-list .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.features-list .feature-item i {
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 20px;
  color: var(--accent-color);
}

.features-list .feature-item span {
  font-size: 1rem;
  line-height: 1.55;
  color: var(--default-color);
}

/* Feature-Cards */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.features-grid .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border-radius: 16px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.features-grid .feature-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
  border-color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.features-grid .feature-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 10%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 20%);
  transition: background 0.25s ease, border-color 0.25s ease;
}

.features-grid .feature-icon i {
  font-size: 18px;
  line-height: 1;
  color: var(--surface-color);
  transition: color 0.25s ease;
}

.features-grid .feature-item:hover .feature-icon {
  background: var(--surface-color);
  border-color: color-mix(in srgb, var(--accent-color), transparent 30%);
}

.features-grid .feature-item:hover .feature-icon i {
  color: var(--accent-color);
}

.features-grid .feature-content {
  flex: 1;
}

.features-grid .feature-content h4 {
  margin: 0 0 6px;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--heading-color);
}

.features-grid .feature-content p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 55%);
}

/* kleine Tags */
.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 1rem;
}

.tech-tags span {
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.tech-tags span:hover {
  transform: translateY(-1px);
  background: var(--contrast-color);
  color: #fff;
}

/* Sondervariante Preise / Infos */
@media (max-width: 992px) {
  .content-teaser.preise-info-angebote-overview .about-image {
    margin-bottom: 8px;
  }
}

.content-teaser.preise-info-angebote-overview .lage-channels {
  display: grid;
  gap: 14px;
  margin-top: 8px;
}

.content-teaser.preise-info-angebote-overview .channel-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  border-radius: 16px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.content-teaser.preise-info-angebote-overview .channel-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.1);
  border-color: color-mix(in srgb, var(--contrast-color), transparent 25%);
}

.content-teaser.preise-info-angebote-overview .channel-card:hover .channel-icon {
  background: var(--contrast-color);
  border-color: var(--contrast-color);
}

.content-teaser.preise-info-angebote-overview .channel-card:hover .channel-icon i {
  color: var(--surface-color);
}

.content-teaser.preise-info-angebote-overview .channel-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: color-mix(in srgb, var(--contrast-color) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--contrast-color), transparent 65%);
  transition: background 0.25s ease, border-color 0.25s ease;
}

.content-teaser.preise-info-angebote-overview .channel-icon i {
  font-size: 20px;
  line-height: 1;
  color: var(--contrast-color);
  transition: color 0.25s ease;
}

.content-teaser.preise-info-angebote-overview .channel-info {
  flex: 1;
}

.content-teaser.preise-info-angebote-overview .channel-info h5 {
  margin: 0 0 4px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--heading-color);
}

.content-teaser.preise-info-angebote-overview .channel-info p {
  margin: 0 0 6px;
  font-size: 0.97rem;
  color: color-mix(in srgb, var(--default-color), transparent 18%);
}

.content-teaser.preise-info-angebote-overview .channel-info .channel-meta {
  font-size: 0.92rem;
  line-height: 1.5;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
}

.content-teaser.preise-info-angebote-overview .pulsating-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  transform: translate(-50%, -50%);
}

/* ---------------------------------
9. Topic highlights summer + winter
------------------------------------ */
.topic-highlights {
  /* RESPONSIVE */
}

.topic-highlights .topic-highlights-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.topic-highlights .topic-highlights-card {
  grid-column: span 4;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.35s ease;
  cursor: default;
}

.topic-highlights .topic-highlights-card:hover {
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}

.topic-highlights .topic-highlights-card:hover .topic-highlights-media img {
  transform: scale(1.04);
}

.topic-highlights.fluid .topic-highlights-card {
  grid-column: span 3;
  border-radius: 18px;
}

.topic-highlights.fluid .topic-highlights-media img {
  height: 260px;
}

.topic-highlights.fluid .topic-highlights-body {
  padding: 20px;
}

.topic-highlights.fluid .topic-highlights-body h3 {
  font-size: 1.25rem;
}

.topic-highlights.fluid .topic-highlights-body p {
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.topic-highlights .topic-highlights-media {
  position: relative;
  overflow: hidden;
}

.topic-highlights .topic-highlights-media img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

.topic-highlights .topic-highlights-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.topic-highlights .topic-highlights-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 24px;
}

.topic-highlights .topic-highlights-kicker {
  margin-bottom: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-color);
}

.topic-highlights .topic-highlights-body h3 {
  margin: 0 0 12px;
  font-size: 1.4rem;
  color: var(--default-color);
}

.topic-highlights .topic-highlights-body h3 a {
  color: var(--default-color);
  text-decoration: none;
}

.topic-highlights .topic-highlights-body p {
  margin: 0 0 18px;
  line-height: 1.6;
  color: rgba(34, 34, 34, 0.8);
}

.topic-highlights .topic-highlights-cta,
.topic-highlights .cta-buttons {
  margin-top: auto;
}

.topic-highlights .cta-buttons .btn {
  position: relative;
  z-index: 2;
}

@media (max-width: 991.98px) {
  .topic-highlights .topic-highlights-card {
    grid-column: span 6;
  }

  .topic-highlights.fluid .topic-highlights-card {
    grid-column: span 6;
  }

  .topic-highlights .topic-highlights-media img {
    height: 240px;
  }
}

@media (max-width: 767.98px) {
  .topic-highlights .topic-highlights-grid {
    grid-template-columns: 1fr;
  }

  .topic-highlights .topic-highlights-card,
  .topic-highlights.fluid .topic-highlights-card {
    grid-column: auto;
  }

  .topic-highlights .topic-highlights-media img {
    height: 220px;
  }
}

.topic-highlights.rooms-spots .topic-highlights-media img {
  height: 290px;
}

.topic-highlights.garni-crepaz-spots .topic-highlights-media img {
  height: 260px;
}

/* -----------------------------
10. Gallery-elegant (Jede Seite - neu)
------------------------------ */
.gallery-elegant {
  /* Mobile */
}

.gallery-elegant .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: var(--surface-color);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 92%);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gallery-elegant .gallery-item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 1.2s ease, filter 0.6s ease;
}

.gallery-elegant .gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px color-mix(in srgb, var(--default-color), transparent 88%);
}

.gallery-elegant .gallery-item:hover img {
  transform: scale(1.05);
  filter: saturate(1.05) contrast(1.04);
}

.gallery-elegant .gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-elegant .gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.4));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.gallery-elegant .preview-link {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #fff;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.gallery-elegant .preview-link i {
  color: #000;
  line-height: 1;
  transition: color 0.3s ease;
}

.gallery-elegant .preview-link:hover {
  background: var(--accent-color);
  color: #000;
  transform: scale(1.08);
}

.gallery-elegant .preview-link:hover i {
  color: #000;
}

@media (max-width: 992px) {
  .gallery-elegant .gallery-item img {
    height: 260px;
  }
}

@media (max-width: 576px) {
  .gallery-elegant .gallery-item img {
    height: 220px;
  }

  .gallery-elegant .preview-link {
    width: 48px;
    height: 48px;
    font-size: 1.15rem;
  }
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(0, 0, 0, 0.22);
  --default-color: #000000;
  --heading-color: #ffffff;
  --accent-color: #dcb437;
  --surface-color: #ffffff;
  --contrast-color: #000000;
  color: var(--default-color);
  min-height: 110px;
  background: linear-gradient(180deg, rgb(0, 0, 0), transparent);
  padding: 25px 0 15px 0;
  z-index: 997;
  transition: background 0.5s, min-height 0.5s, box-shadow 0.5s;
}

.header .container-xl {
  gap: 5px;
  /* 40–60px je nach Geschmack */
}

.header .logo img {
  max-height: 70px;
  transition: max-height 0.5s;
}

@media (max-width: 480px) {
  .header .logo img {
    max-height: 50px;
  }
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--surface-color);
  background: var(--accent-color);
  font-size: 1rem;
  font-weight: 500;
  padding: 8px 25px;
  margin: 0 0 0 0px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 60px 0 0;
    padding: 8px 14px;
    border-radius: 10px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  background: color-mix(in srgb, var(--contrast-color), transparent 30%);
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.1);
  min-height: 80px;
}

.scrolled .header .logo img {
  max-height: 50px;
}

.scrolled .header .btn-getstarted,
.scrolled .header .btn-getstarted:focus {
  color: var(--contrast-color);
}

/* Mobile toggle wrapper */
.mobile-nav-toggle-wrapper {
  display: none;
}

@media (max-width: 1200px) {
  .mobile-nav-toggle-wrapper {
    display: flex;
    align-items: center;
    order: 4;
  }
}

.mobile-nav-toggle-wrapper .mobile-nav-toggle {
  line-height: 1;
  cursor: pointer;
}

/* Offcanvas premium */
.offcanvas {
  --bs-offcanvas-width: 320px;
}

.offcanvas .accordion-item {
  border: 0;
  border-bottom: 1px solid #eee;
}

.offcanvas .accordion-button {
  padding: 1rem 0;
  font-weight: 500;
  background: transparent;
  color: var(--accent-color);
  box-shadow: none;
}

.offcanvas .accordion-button:not(.collapsed) {
  color: var(--gc-dark);
  background: transparent;
  box-shadow: none;
}

.offcanvas .accordion-button:focus {
  box-shadow: none;
}

.offcanvas .accordion-body {
  padding: 0 0 0.75rem 0;
}

.offcanvas .nav-link {
  display: block;
  padding: 0.35rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
}

.offcanvas .nav-link:hover {
  color: var(--gc-dark);
}

.offcanvas .nav-link.active {
  font-weight: 600;
  color: var(--gc-dark);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 1rem;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    visibility: hidden;
    transition: width 0.3s ease-in-out, visibility 0.3s ease-in-out;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 500;
    text-transform: none;
    color: var(--contrast-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }

  .mobile-nav-toggle {
    display: none !important;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    top: 30px;
    right: 10px;
    font-size: 45px;
    line-height: 1;
    cursor: pointer;
    display: block !important;
    z-index: 998;
    transition: 0.3s;
  }

  .mobile-nav-toggle:hover {
    color: var(--nav-hover-color);
  }

  .navmenu {
    position: fixed;
    top: 0;
    bottom: 0;
    right: -300px;
    z-index: 997;
    width: 300px;
    overflow: hidden;
    transition: 0.3s;
  }

  .navmenu ul {
    display: block;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--nav-dropdown-color), transparent 90%);
  }

  .navmenu .dropdown>.dropdown-active a {
    color: var(--contrast-color);
    font-size: 0.95rem;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 1rem;
  position: relative;
}

.footer .footer-top {
  background-color: color-mix(in srgb, var(--default-color), transparent 97%);
}

.footer .footer-top .amenities {
  padding: 30px;
}

.footer .footer-top .amenities .amenity-card {
  background-color: var(--surface-color);
  padding: 20px 10px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-top .amenities .amenity-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  border-color: var(--accent-color);
}

.footer .footer-top .amenities .amenity-icon {
  margin-bottom: 10px;
}

.footer .footer-top .amenities .amenity-icon i {
  font-size: 40px;
  min-height: 40px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.footer .footer-top .amenities .amenity-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color);
}

.footer .footer-top .amenities .btn-amenities {
  display: inline-block;
  padding: 15px 35px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}

.footer .footer-top .amenities .btn-amenities:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .footer .footer-top .amenities .amenity-card {
    padding: 10px 1px;
  }

  .footer .footer-top .amenities .amenity-icon i {
    font-size: 30px;
  }

  .footer .footer-top .amenities .amenity-content h4 {
    font-size: 1rem;
  }

  .footer .footer-top .amenities .btn-amenities {
    padding: 12px 28px;
    font-size: 15px;
  }
}

.footer .footer-main {
  padding: 70px 0 40px;
}

.footer .footer-main .footer-widget {
  margin-bottom: 30px;
}

.footer .footer-main .footer-widget .logo {
  display: inline-block;
  margin-bottom: 20px;
}

.footer .footer-main .footer-widget .logo span {
  color: var(--heading-color);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-family: var(--heading-font);
}

.footer .footer-main .footer-widget p {
  margin-bottom: 20px;
  line-height: 1.7;
}

.footer .footer-main .footer-widget h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
}

.footer .footer-main .footer-widget h5 {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 15px;
}

.footer .footer-main .footer-contact .contact-item {
  display: flex;
  align-items: baseline;
  margin-bottom: 15px;
  justify-content: flex-start;
}

.footer .footer-main .footer-contact .contact-item i {
  color: var(--accent-color);
  font-size: 18px;
  margin-right: 12px;
  margin-top: 3px;
}

.footer .footer-main .footer-contact .contact-item span {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.5;
}

.footer .footer-main .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-main .footer-links li {
  margin-bottom: 12px;
}

.footer .footer-main .footer-links a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
  display: inline-block;
}

.footer .footer-main .footer-links a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}

.footer .footer-main .footer-links a:before {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: var(--accent-color);
  transition: all 0.3s ease;
}

.footer .footer-main .footer-links a:hover:before {
  width: 100%;
}

.footer .footer-main .social-icons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer .footer-main .social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--default-color);
  font-size: 16px;
  transition: all 0.3s ease;
}

.footer .footer-main .social-icons a:hover {
  background-color: var(--accent-color);
  transform: rotate(360deg);
  color: var(--contrast-color);
}

.footer .footer-bottom {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 25px 0;
}

.footer .footer-bottom .partner {
  text-align: center;
}

.footer .footer-bottom .partner img {
  margin: 5px 8px;
  max-width: 150px;
  filter: grayscale(100%);
}

.footer .footer-bottom .partner img:hover {
  filter: grayscale(0%);
}

.footer .footer-bottom .copyright div {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 1rem;
}

.footer .footer-bottom .copyright div strong {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.footer .footer-bottom .copyright a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 1rem;
  transition: color 0.3s ease;
}

.footer .footer-bottom .copyright a:hover {
  color: var(--accent-color);
}

.footer .footer-bottom .credits {
  text-align: center;
  padding-top: 5px;
}

.footer .footer-languages {
  margin-top: 28px;
}

.footer .footer-languages .lang-label {
  display: block;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer .footer-languages .lang-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer .footer-languages .lang-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(255, 193, 7, 0.35);
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #f5f5f5;
  background: rgba(255, 255, 255, 0.03);
  transition: all 0.25s ease;
}

.footer .footer-languages .lang-link:hover {
  color: #000;
  background: #ffc107;
  border-color: #ffc107;
  transform: translateY(-2px);
}

.footer .footer-languages .lang-link.active {
  color: #000;
  background: #ffc107;
  border-color: #ffc107;
  box-shadow: 0 0 0 4px rgba(255, 193, 7, 0.12);
}

@media (max-width: 991.98px) {
  .footer .footer-main {
    padding: 60px 0 30px;
  }
}

@media (max-width: 767.98px) {
  .footer .footer-bottom .copyright {
    font-size: 13px;
    text-align: center;
  }

  .footer .social-icons {
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  text-align: center;
  padding: 20px 0;
}

.page-title .breadcrumbs {
  margin-bottom: 1.5rem;
}

.page-title .breadcrumbs .breadcrumb {
  justify-content: center;
  margin: 0;
  padding: 0;
  background: none;
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item.active {
  color: var(--accent-color);
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item a:hover {
  color: var(--accent-color);
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item a i {
  font-size: 0.9rem;
  margin-right: 0.2rem;
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item+.breadcrumb-item::before {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.page-title .title-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem 0;
}

.page-title .title-wrapper h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--heading-color);
}

.page-title .title-wrapper p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .page-title .title-wrapper h1 {
    font-size: 2rem;
  }

  .page-title .title-wrapper p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .page-title .title-wrapper h1 {
    font-size: 1.75rem;
  }
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 30px 10px;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 30px;
  position: relative;
}

.section-title h2 {
  font-size: 2.4rem;
  font-weight: 300;
  line-height: 1.2;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

@media (max-width: 768px) {
  .section-title h2 {
    font-size: 1.7rem;
  }
}

.section-title .subtitle {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  position: relative;
}

.section-title .subtitle::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background: var(--accent-color);
}

.section-title p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  max-width: 900px;
  margin: 0 auto;
  text-wrap: balance;
}

/*--------------------------------------------------------------
# Hero Index Section
--------------------------------------------------------------*/
.hero-index {
  padding-top: 0px;
  padding-bottom: 0px;
}

/*--------------------------------------------------------------
# Startseite Title Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Starseite Gastgeberin Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Startseite About Section
--------------------------------------------------------------*/
.startseite-about {
  padding-top: 30px;
  padding-bottom: 30px;
}

.startseite-about .image-section {
  position: relative;
}

.startseite-about .image-section .primary-image {
  position: relative;
  margin-bottom: 2rem;
}

.startseite-about .image-section .primary-image img {
  border-radius: 6px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.startseite-about .image-section .image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.startseite-about .image-section .image-grid .grid-img {
  border-radius: 6px;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.startseite-about .image-section .image-grid .grid-img:hover {
  transform: translateY(-3px);
}

@media (max-width: 992px) {
  .startseite-about .image-section {
    margin-bottom: 3rem;
  }
}

.startseite-about .content-section {
  padding-left: 2rem;
}

@media (max-width: 992px) {
  .startseite-about .content-section {
    padding-left: 0;
  }
}

.startseite-about .action-section {
  display: flex;
  align-items: center;
  gap: 2rem;
}

@media (max-width: 992px) {
  .startseite-about .action-section {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
  }
}

.startseite-about .action-section .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.startseite-about .action-section .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  border-color: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-1px);
}

.startseite-about .action-section .contact-info .contact-label {
  display: block;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0.25rem;
}

.startseite-about .action-section .contact-info .phone-number {
  font-size: 1.125rem;
  color: var(--heading-color);
  font-weight: 600;
}

/*--------------------------------------------------------------
# Startseite Rooms Section
--------------------------------------------------------------*/
.startseite-rooms {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: var(--background-color);
}

.startseite-rooms .room-showcase-card {
  background-color: var(--surface-color);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 86%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  height: 100%;
}

.startseite-rooms .room-showcase-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.14);
  border-color: color-mix(in srgb, var(--accent-color), transparent 55%);
}

.startseite-rooms .room-showcase-card.featured .room-hero-image {
  position: relative;
  height: 550px;
  overflow: hidden;
}

@media (max-width: 992px) {
  .startseite-rooms .room-showcase-card.featured .room-hero-image {
    height: 250px;
  }
}

.startseite-rooms .room-showcase-card.featured .room-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.startseite-rooms .room-showcase-card.featured .room-hero-image:hover img {
  transform: scale(1.06);
}

.startseite-rooms .room-showcase-card.featured .room-info {
  padding: 30px;
}

.startseite-rooms .room-showcase-card.featured .room-info .room-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.startseite-rooms .room-showcase-card.featured .room-info .room-header h3 {
  color: var(--heading-color);
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0;
}

.startseite-rooms .room-showcase-card.featured .room-info .room-excerpt {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 20px;
}

.startseite-rooms .room-showcase-card.featured .room-info .room-amenities {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.startseite-rooms .room-showcase-card.featured .room-info .room-amenities i {
  color: var(--accent-color);
  font-size: 1.1rem;
  padding: 10px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.startseite-rooms .room-showcase-card.featured .room-info .room-amenities i:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.startseite-rooms .room-showcase-card.featured .room-info .room-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.startseite-rooms .room-showcase-card.featured .room-info .room-bottom .explore-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.startseite-rooms .room-showcase-card.featured .room-info .room-bottom .explore-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 12%);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.startseite-rooms .room-showcase-card.compact {
  display: flex;
  align-items: stretch;
  min-height: 190px;
}

.startseite-rooms .room-showcase-card.compact .compact-image {
  position: relative;
  width: 320px;
  flex-shrink: 0;
  overflow: hidden;
  background-color: var(--background-color);
}

.startseite-rooms .room-showcase-card.compact .compact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.startseite-rooms .room-showcase-card.compact .compact-image:hover img {
  transform: scale(1.08);
}

.startseite-rooms .room-showcase-card.compact .compact-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.16) 100%);
  pointer-events: none;
}

.startseite-rooms .room-showcase-card.compact .compact-image .quick-view {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.92);
  color: var(--accent-color);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 2;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.startseite-rooms .room-showcase-card.compact .compact-image:hover .quick-view {
  opacity: 1;
}

.startseite-rooms .room-showcase-card.compact .compact-content {
  padding: 28px 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 10px;
  border-left: 1px solid color-mix(in srgb, var(--default-color), transparent 91%);
}

.startseite-rooms .room-showcase-card.compact .compact-content>a {
  text-decoration: none;
}

.startseite-rooms .room-showcase-card.compact .compact-content h4 {
  color: var(--heading-color);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
}

.startseite-rooms .room-showcase-card.compact .compact-content p {
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  font-size: 0.98rem;
  line-height: 1.5;
  margin: 0;
}

.startseite-rooms .room-showcase-card.compact .compact-content .compact-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 8px;
}

.startseite-rooms .room-showcase-card.compact .compact-content .compact-bottom .explore-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: var(--accent-color);
  font-size: 0.95rem;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 60%);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.startseite-rooms .room-showcase-card.compact .compact-content .compact-bottom .explore-btn:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .startseite-rooms .room-showcase-card.compact {
    flex-direction: column;
    min-height: auto;
  }

  .startseite-rooms .room-showcase-card.compact .compact-image {
    width: 100%;
    height: 220px;
  }

  .startseite-rooms .room-showcase-card.compact .compact-content {
    border-left: 0;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 91%);
    padding: 24px 22px;
  }

  .startseite-rooms .room-showcase-card.compact .compact-content h4,
  .startseite-rooms .room-showcase-card.compact .compact-content p {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .startseite-rooms .room-showcase-card {
    border-radius: 16px;
  }

  .startseite-rooms .room-showcase-card.featured .room-info {
    padding: 20px;
  }

  .startseite-rooms .room-showcase-card.featured .room-info .room-header {
    flex-direction: column;
    gap: 10px;
  }

  .startseite-rooms .room-showcase-card.featured .room-info .room-bottom {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .startseite-rooms .room-showcase-card.featured .room-info .room-amenities {
    justify-content: center;
  }

  .startseite-rooms .room-showcase-card.compact .compact-image {
    height: 200px;
  }

  .startseite-rooms .room-showcase-card.compact .compact-content {
    padding: 22px 18px;
    gap: 8px;
  }

  .startseite-rooms .room-showcase-card.compact .compact-content .compact-bottom {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
}

/*--------------------------------------------------------------
# Startseite Winter Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Startseite Newsnews Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Startseite Summer Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Hero Garni Crepaz Section
--------------------------------------------------------------*/
.hero-garni-crepaz {
  padding: 0;
}

/*--------------------------------------------------------------
# Garni Crepaz Title Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Garni Crepaz Gastgeber Section
--------------------------------------------------------------*/
.garni-crepaz-gastgeber {
  padding-top: 30px;
  padding-bottom: 30px;
}

/*--------------------------------------------------------------
# Garni Crepaz Spots Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Hero Gastgeber Section
--------------------------------------------------------------*/
.hero-gastgeber {
  padding: 0;
}

/*--------------------------------------------------------------
# Gastgeber Title Section
--------------------------------------------------------------*/
.gastgeber-title {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Gastgeber Haus About Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Hero Fruehstueck Genuss Section
--------------------------------------------------------------*/
.hero-fruehstueck-genuss {
  padding: 0;
}

/*--------------------------------------------------------------
# Fruehstueck Genuss Title Section
--------------------------------------------------------------*/
.fruehstueck-genuss-title {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Fruehstueck Genuss Teaser Section
--------------------------------------------------------------*/
.fruehstueck-genuss-teaser {
  background-color: var(--surface-color);
  position: relative;
}

.fruehstueck-genuss-teaser .about-image {
  position: relative;
}

.fruehstueck-genuss-teaser .about-image img {
  border-radius: 12px;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 85%);
}

.fruehstueck-genuss-teaser .about-content {
  padding-left: 40px;
}

@media (max-width: 992px) {
  .fruehstueck-genuss-teaser .about-content {
    padding-left: 0;
    margin-top: 40px;
  }
}

.fruehstueck-genuss-teaser .about-content .story-text {
  margin-bottom: 30px;
}

.fruehstueck-genuss-teaser .about-content .story-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--default-color);
}

.fruehstueck-genuss-teaser .about-content .story-text p:last-child {
  margin-bottom: 0;
}

.fruehstueck-genuss-teaser .about-content .chef-quote {
  background: color-mix(in srgb, var(--contrast-color), transparent 95%);
  padding: 25px;
  border-radius: 12px;
  border-left: 4px solid var(--contrast-color);
  margin-bottom: 40px;
}

.fruehstueck-genuss-teaser .about-content .chef-quote blockquote {
  font-style: italic;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 10px;
  color: var(--default-color);
}

.fruehstueck-genuss-teaser .about-content .chef-quote cite {
  font-weight: 600;
  color: var(--heading-color);
  font-style: normal;
}

/*--------------------------------------------------------------
# Fruehstueck Genuss Services Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Fruehstueck Genuss Gallery Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Hero Ambiente Section
--------------------------------------------------------------*/
.hero-ambiente {
  padding: 0;
}

/*--------------------------------------------------------------
# Ambiente Title Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Ambiente Teaser Section
--------------------------------------------------------------*/
.ambiente-teaser {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Ambiente Gallery Section
--------------------------------------------------------------*/
.ambiente-gallery {
  padding-top: 30px;
  padding-bottom: 30px;
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Hero Impressionen Section
--------------------------------------------------------------*/
.hero-impressionen {
  padding: 0;
}

/*--------------------------------------------------------------
# Impressionen Title Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Impressionen Gallerie Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Hero Zimmer Wolkenstein Section
--------------------------------------------------------------*/
.hero-zimmer-wolkenstein {
  padding: 0;
}

/*--------------------------------------------------------------
# Rooms Title Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Rooms Overview Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Rooms Spots Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Hero Zimmer Economy Section
--------------------------------------------------------------*/
.hero-zimmer-economy {
  padding: 0px;
}

/*--------------------------------------------------------------
# Economy Zimmer Start Section
--------------------------------------------------------------*/
.economy-zimmer-start {
  padding-bottom: 0;
}

/*--------------------------------------------------------------
# Economy Zimmer Details Section
--------------------------------------------------------------*/
.economy-zimmer-details .row {
  align-items: center;
}

.economy-zimmer-details .hero-banner {
  height: 100%;
}

.economy-zimmer-details .hero-banner .banner-slider {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: var(--surface-color);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 90%);
}

.economy-zimmer-details .hero-banner .swiper-slide {
  height: auto;
}

.economy-zimmer-details .hero-banner img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 24px;
}

.economy-zimmer-details .hero-banner .slider-controls {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 2;
}

.economy-zimmer-details .hero-banner .slider-controls .swiper-button-prev,
.economy-zimmer-details .hero-banner .slider-controls .swiper-button-next {
  position: static;
  width: 44px;
  height: 44px;
  margin: 0;
  border-radius: 50%;
  background: color-mix(in srgb, var(--surface-color), transparent 10%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  color: var(--heading-color);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.economy-zimmer-details .hero-banner .slider-controls .swiper-button-prev::after,
.economy-zimmer-details .hero-banner .slider-controls .swiper-button-next::after {
  font-size: 16px;
  font-weight: 700;
}

.economy-zimmer-details .hero-banner .slider-controls .swiper-button-prev:hover,
.economy-zimmer-details .hero-banner .slider-controls .swiper-button-next:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.economy-zimmer-details .hero-banner .slider-controls .swiper-pagination {
  position: static;
  width: auto;
  min-width: 68px;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1;
  color: var(--heading-color);
  background: color-mix(in srgb, var(--surface-color), transparent 10%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  backdrop-filter: blur(8px);
}

.economy-zimmer-details .sticky-sidebar {
  position: static;
  top: auto;
  height: 100%;
  display: flex;
  align-items: center;
}

.economy-zimmer-details .client-card {
  width: 100%;
  padding: 2rem;
  border-radius: 24px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 92%);
}

.economy-zimmer-details .client-card h4 {
  margin-bottom: 0.35rem;
  font-size: 2rem;
  font-weight: 600;
  color: var(--heading-color);
  letter-spacing: -0.02em;
}

.economy-zimmer-details .client-card .description {
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--default-color);
  opacity: 0.9;
}

.economy-zimmer-details .amenities-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem 1rem;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
}

.economy-zimmer-details .amenity-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 48px;
  padding: 0.8rem 0.95rem;
  border-radius: 16px;
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
  color: var(--default-color);
}

.economy-zimmer-details .amenity-item i {
  font-size: 1rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.economy-zimmer-details .amenity-item span {
  font-size: 0.95rem;
  line-height: 1.4;
  color: var(--heading-color);
}

.economy-zimmer-details .cta-buttons {
  margin-top: 1.75rem !important;
}

.economy-zimmer-details .cta-buttons .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  padding: 0.9rem 1.4rem;
  border: none;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.01em;
  background: var(--accent-color);
  color: var(--surface-color);
  transition: all 0.3s ease;
}

.economy-zimmer-details .cta-buttons .btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  color: var(--contrast-color);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px color-mix(in srgb, var(--accent-color), transparent 65%);
}

.economy-zimmer-details .cta-buttons .btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px color-mix(in srgb, var(--accent-color), transparent 75%);
}

@media (max-width: 991.98px) {
  .economy-zimmer-details .row {
    align-items: stretch;
  }

  .economy-zimmer-details .sticky-sidebar {
    display: block;
  }

  .economy-zimmer-details .client-card {
    padding: 1.5rem;
  }

  .economy-zimmer-details .client-card h4 {
    font-size: 1.6rem;
  }
}

@media (max-width: 575.98px) {

  .economy-zimmer-details .hero-banner .banner-slider,
  .economy-zimmer-details .hero-banner img {
    border-radius: 18px;
  }

  .economy-zimmer-details .hero-banner .slider-controls {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .economy-zimmer-details .hero-banner .slider-controls .swiper-button-prev,
  .economy-zimmer-details .hero-banner .slider-controls .swiper-button-next {
    width: 40px;
    height: 40px;
  }

  .economy-zimmer-details .hero-banner .slider-controls .swiper-pagination {
    font-size: 0.85rem;
    padding: 0.5rem 0.75rem;
  }

  .economy-zimmer-details .client-card {
    padding: 1.25rem;
    border-radius: 18px;
  }

  .economy-zimmer-details .amenities-list {
    grid-template-columns: 1fr;
  }
}

/*--------------------------------------------------------------
# Economy Zimmer Highlights Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Economy Zimmer Gallery Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Hero Zimmer Standard Section
--------------------------------------------------------------*/
.hero-zimmer-standard {
  padding: 0px;
}

/*--------------------------------------------------------------
# Standard Zimmer Start Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Standard Zimmer Details Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Standard Zimmer Highlights Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Standard Zimmer Gallery Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Hero Zimmer Komfort Section
--------------------------------------------------------------*/
.hero-zimmer-komfort {
  padding: 0px;
}

/*--------------------------------------------------------------
# Zimmer Komfort Start Section
--------------------------------------------------------------*/
.zimmer-komfort-start {
  padding-bottom: 0;
}

/*--------------------------------------------------------------
# Zimmer Komfort Details Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Zimmer Komfort Highlights Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Zimmer Komfort Gallery Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Hero Zimmer Mehrbett Section
--------------------------------------------------------------*/
.hero-zimmer-mehrbett {
  padding: 0px;
}

/*--------------------------------------------------------------
# Zimmer Mehrbett Start Section
--------------------------------------------------------------*/
.zimmer-mehrbett-start {
  padding-bottom: 0;
}

/*--------------------------------------------------------------
# Zimmer Mehrbett Details Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Zimmer Mehrbett Highlights Section
--------------------------------------------------------------*/
.zimmer-mehrbett-highlights {
  padding-top: 29px;
  padding-bottom: 30px;
}

/*--------------------------------------------------------------
# Zimmer Mehrbett Gallery Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Hero Wolkenstein Lage Section
--------------------------------------------------------------*/
.hero-wolkenstein-lage {
  padding: 0;
}

/*--------------------------------------------------------------
# Wolkenstein Lage Title Section
--------------------------------------------------------------*/
.wolkenstein-lage-title {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Wolkenstein Lage Teaser Section
--------------------------------------------------------------*/
.wolkenstein-lage-teaser {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Wolkenstein Lage Spots Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Hero Lage Section
--------------------------------------------------------------*/
.hero-lage {
  padding: 0;
}

/*--------------------------------------------------------------
# Lage Title Section
--------------------------------------------------------------*/
.lage-title {
  padding-top: 48px;
  font-size: 1rem;
  padding-bottom: 10px;
}

/*--------------------------------------------------------------
# Lage Anreise Teaser Section
--------------------------------------------------------------*/
.lage-anreise-teaser .lage-channels {
  display: grid;
  gap: 14px;
}

.lage-anreise-teaser .lage-channels .channel-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 84%);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.lage-anreise-teaser .lage-channels .channel-card .channel-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  flex: 0 0 46px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 78%);
}

.lage-anreise-teaser .lage-channels .channel-card .channel-icon i {
  font-size: 1.25rem;
  color: var(--accent-color);
}

.lage-anreise-teaser .lage-channels .channel-card .channel-info h5 {
  margin: 0 0 2px 0;
  font-size: 1.05rem;
  font-weight: 600;
}

.lage-anreise-teaser .lage-channels .channel-card .channel-info p {
  margin: 0 0 6px 0;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  font-weight: 500;
}

.lage-anreise-teaser .lage-channels .channel-card .channel-info .channel-meta {
  font-size: 0.95rem;
  line-height: 1.45;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.lage-anreise-teaser .lage-channels .channel-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  border-color: color-mix(in srgb, var(--accent-color), transparent 68%);
}

.lage-anreise-teaser .trust-indicators {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.lage-anreise-teaser .trust-indicators .indicator-item {
  padding: 14px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 84%);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.035);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.lage-anreise-teaser .trust-indicators .indicator-item .indicator-value {
  font-weight: 700;
  font-size: 1.05rem;
}

.lage-anreise-teaser .trust-indicators .indicator-item .indicator-label {
  margin-top: 4px;
  font-size: 0.92rem;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
}

.lage-anreise-teaser .trust-indicators .indicator-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

@media (max-width: 991.98px) {
  .lage-anreise-teaser .trust-indicators {
    grid-template-columns: 1fr;
  }
}

.lage-anreise-teaser .anreise-accordion {
  margin-top: 18px;
}

.lage-anreise-teaser .anreise-accordion .accordion-item {
  border-radius: 18px;
  background: #fff;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 84%);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.lage-anreise-teaser .anreise-accordion .accordion-item+.accordion-item {
  margin-top: 12px;
}

.lage-anreise-teaser .anreise-accordion .accordion-button {
  gap: 10px;
  padding: 16px 18px;
  font-weight: 600;
  background: #fff;
  box-shadow: none;
}

.lage-anreise-teaser .anreise-accordion .accordion-button i {
  color: var(--accent-color);
}

.lage-anreise-teaser .anreise-accordion .accordion-button:not(.collapsed) {
  background: color-mix(in srgb, var(--accent-color), transparent 94%);
}

.lage-anreise-teaser .anreise-accordion .accordion-body {
  padding: 0 18px 18px;
}

.lage-anreise-teaser .anreise-accordion .accordion-body .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  padding: 10px 0 12px;
  font-size: 0.92rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.lage-anreise-teaser .anreise-accordion .accordion-body ul {
  margin: 0;
  padding-left: 1.15rem;
}

.lage-anreise-teaser .anreise-accordion .accordion-body ul li {
  margin: 8px 0;
  color: color-mix(in srgb, var(--default-color), transparent 18%);
}

/*--------------------------------------------------------------
# Hero Sommer Section
--------------------------------------------------------------*/
.hero-sommer {
  padding: 0;
}

/*--------------------------------------------------------------
# Summer Title Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Summer Wandern Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Summer Highlights Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Hero Wandern Section
--------------------------------------------------------------*/
.hero-wandern {
  padding: 0;
}

/*--------------------------------------------------------------
# Wandern Title Section
--------------------------------------------------------------*/
.wandern-title {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Wandern Teaser Section
--------------------------------------------------------------*/
.wandern-teaser {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Wandern Touren Section
--------------------------------------------------------------*/
.wandern-touren {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Wandern Gallery Section
--------------------------------------------------------------*/
.wandern-gallery {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Hero Sommersport Section
--------------------------------------------------------------*/
.hero-sommersport {
  padding: 0;
}

/*--------------------------------------------------------------
# Sommersport Title Section
--------------------------------------------------------------*/
.sommersport-title {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Sommersport Walking Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Sommersport Activities Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Hero Klettern Section
--------------------------------------------------------------*/
.hero-klettern {
  padding: 0;
}

/*--------------------------------------------------------------
# Klettern Title Section
--------------------------------------------------------------*/
.klettern-title {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Klettern Overview Section
--------------------------------------------------------------*/
.klettern-overview {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Klettern Highlights Section
--------------------------------------------------------------*/
.klettern-highlights {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Hero Bike Day Section
--------------------------------------------------------------*/
.hero-bike-day {
  padding: 0;
}

/*--------------------------------------------------------------
# Bike Day Title Section
--------------------------------------------------------------*/
.bike-day-title {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Bike Day Overview Section
--------------------------------------------------------------*/
.bike-day-overview {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Bike Day Events Section
--------------------------------------------------------------*/
.bike-day-events {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Hero Hero Dolomites Section
--------------------------------------------------------------*/
.hero-hero-dolomites {
  padding: 0;
}

/*--------------------------------------------------------------
# Hero Dolomites Title Section
--------------------------------------------------------------*/
.hero-dolomites-title {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Hero Dolomites Overview Section
--------------------------------------------------------------*/
.hero-dolomites-overview {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Hero Dolomites Strecken Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Hero Motorrad Biker Section
--------------------------------------------------------------*/
.hero-motorrad-biker {
  padding: 0;
}

/*--------------------------------------------------------------
# Motorrad Biker Title Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Motorrad Biker Overview Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Motorrad Biker Routen Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Hero Winter Section
--------------------------------------------------------------*/
.hero-winter {
  padding: 0;
}

/*--------------------------------------------------------------
# Winter Title Section
--------------------------------------------------------------*/
.winter-title {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Winter Skifahren Section
--------------------------------------------------------------*/
.winter-skifahren {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Winter Highlights Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Hero Skifahren Val Gardena Section
--------------------------------------------------------------*/
.hero-skifahren-val-gardena {
  padding: 0;
}

/*--------------------------------------------------------------
# Skifahren Valgardena Title Section
--------------------------------------------------------------*/
.skifahren-valgardena-title {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Skigebiet Overview Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Skifahren Valgardena Highlights Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Minigallery Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Hero Wintersport Section
--------------------------------------------------------------*/
.hero-wintersport {
  padding: 0;
}

/*--------------------------------------------------------------
# Winter Aktiv Title Section
--------------------------------------------------------------*/
.winter-aktiv-title {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Wintersports Langlauf Section
--------------------------------------------------------------*/
.wintersports-langlauf {
  font-size: 1.1rem;
}

/*--------------------------------------------------------------
# Winter Aktiv Rodeln Section
--------------------------------------------------------------*/
.winter-aktiv-rodeln {
  font-size: 1.1rem;
}

/*--------------------------------------------------------------
# Wintersports Offpiste Section
--------------------------------------------------------------*/
.wintersports-offpiste {
  font-size: 1.1rem;
}

/*--------------------------------------------------------------
# Wintersports Skitouren Section
--------------------------------------------------------------*/
.wintersports-skitouren {
  font-size: 1.1rem;
}

/*--------------------------------------------------------------
# Winter Aktiv Freeride Section
--------------------------------------------------------------*/
.winter-aktiv-freeride {
  font-size: 1.1rem;
}

/*--------------------------------------------------------------
# Hero Sellaronda Section
--------------------------------------------------------------*/
.hero-sellaronda {
  padding: 0;
}

/*--------------------------------------------------------------
# Sellaronda Title Section
--------------------------------------------------------------*/
.sellaronda-title {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Sellaronda Teaser Section
--------------------------------------------------------------*/
.sellaronda-teaser {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Sellaronda Routen Section
--------------------------------------------------------------*/
.sellaronda-routen .sellaronda-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  height: 100%;
}

.sellaronda-routen .sellaronda-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.1);
}

.sellaronda-routen .sellaronda-media {
  position: relative;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
}

.sellaronda-routen .sellaronda-media img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.sellaronda-routen .route-badge {
  position: absolute;
  left: 14px;
  top: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.sellaronda-routen .route-badge.orange {
  background: #ff7a00;
}

.sellaronda-routen .route-badge.green {
  background: #2fa84f;
}

.sellaronda-routen .gc-card {
  background: #fff;
  border: none;
  border-radius: 0 0 16px 16px;
  padding: 2rem 2rem 1.8rem;
}

.sellaronda-routen .sellaronda-features {
  margin-top: 1.2rem;
}

.sellaronda-routen .sellaronda-features li {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
}

.sellaronda-routen .sellaronda-features li i {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Hero Dolomiti Superski Section
--------------------------------------------------------------*/
.hero-dolomiti-superski {
  padding: 0;
}

/*--------------------------------------------------------------
# Dolomiti Superski Title Section
--------------------------------------------------------------*/
.dolomiti-superski-title {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Dolomiti Superski Teaser 1 Section
--------------------------------------------------------------*/
.dolomiti-superski-teaser-1 {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Dolomiti Superski Teaser 3 Section
--------------------------------------------------------------*/
.dolomiti-superski-teaser-3 {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Dolomiti Superski Areas Top Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Hero Skilehrer Im Haus Section
--------------------------------------------------------------*/
.hero-skilehrer-im-haus {
  padding: 0;
}

/*--------------------------------------------------------------
# Skilehrer Im Haus Title Section
--------------------------------------------------------------*/
.skilehrer-im-haus-title {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Skilehrer Im Haus Overview Section
--------------------------------------------------------------*/
.skilehrer-im-haus-overview {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Skilehrer Im Haus Offers Section
--------------------------------------------------------------*/
.skilehrer-im-haus-offers {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Hero Events Section
--------------------------------------------------------------*/
.hero-events {
  padding: 0;
}

/*--------------------------------------------------------------
# Events Winter Section
--------------------------------------------------------------*/
.events-winter {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Events Calendar Section
--------------------------------------------------------------*/
.events-calendar .about-image {
  position: relative;
}

.events-calendar .mini-label {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
}

.events-calendar .mini-label i {
  font-size: 0.95rem;
}

/*--------------------------------------------------------------
# Events Summer Section
--------------------------------------------------------------*/
.events-summer {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Hero Preise Info Angebote Section
--------------------------------------------------------------*/
.hero-preise-info-angebote {
  padding: 0;
}

/*--------------------------------------------------------------
# Preise Info Angebote Title Section
--------------------------------------------------------------*/
.preise-info-angebote-title {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Preise Info Angebote Overview Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Preise Info Angebote Kacheln Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Hero Preise Section
--------------------------------------------------------------*/
.hero-preise {
  padding: 0;
}

/*--------------------------------------------------------------
# Preise Title Section
--------------------------------------------------------------*/
.preise-title {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Preise Season Cards Section
--------------------------------------------------------------*/
.preise-season-cards .price-card .spot-body {
  padding: 28px;
}

.preise-season-cards .price-card .spot-body p {
  margin-bottom: 1.2rem;
}

.preise-season-cards .price-list {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  margin-top: 10px;
}

.preise-season-cards .price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 1.02rem;
}

.preise-season-cards .price-row span {
  color: #2f3a45;
  font-weight: 500;
}

.preise-season-cards .price-row strong {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1f2d3d;
  white-space: nowrap;
}

.preise-season-cards .price-note {
  border-radius: 18px;
}

.preise-season-cards #preise-cta .gc-card {
  border-radius: 24px;
}

@media (max-width: 575.98px) {
  .preise-season-cards .price-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .preise-season-cards .price-row strong {
    white-space: normal;
  }
}

/*--------------------------------------------------------------
# Preise Inklusive Leistungen Section
--------------------------------------------------------------*/
.preise-inklusive-leistungen .price-card .spot-body {
  padding: 28px;
}

.preise-inklusive-leistungen .price-card .spot-body p {
  margin-bottom: 1.2rem;
}

.preise-inklusive-leistungen .price-list {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  margin-top: 10px;
}

.preise-inklusive-leistungen .price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 1.02rem;
}

.preise-inklusive-leistungen .price-row span {
  color: #2f3a45;
  font-weight: 500;
}

.preise-inklusive-leistungen .price-row strong {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1f2d3d;
  white-space: nowrap;
}

.preise-inklusive-leistungen .price-note {
  border-radius: 18px;
}

.preise-inklusive-leistungen #preise-cta .gc-card {
  border-radius: 24px;
}

@media (max-width: 575.98px) {
  .preise-inklusive-leistungen .price-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .preise-inklusive-leistungen .price-row strong {
    white-space: normal;
  }
}

/*--------------------------------------------------------------
# Hero Informationen Section
--------------------------------------------------------------*/
.hero-informationen {
  padding: 0;
}

/*--------------------------------------------------------------
# Informationen Title Section
--------------------------------------------------------------*/
.informationen-title {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Informationen Cards Section
--------------------------------------------------------------*/
.informationen-cards {
  /* responsive */
}

.informationen-cards .section-title {
  margin-bottom: 3rem;
}

.informationen-cards .section-title h1 {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.4rem;
}

.informationen-cards .section-title h2 {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.informationen-cards .section-title p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--default-color);
  opacity: 0.9;
}

.informationen-cards .gc-card {
  background: #fff;
  border-radius: 18px;
  padding: 2.2rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.06);
}

@media (max-width: 768px) {
  .informationen-cards .gc-card {
    padding: 1.4rem;
  }
}

.informationen-cards .info-group:not(:last-child) {
  margin-bottom: 2.4rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.informationen-cards .info-group h3 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 1.4rem;
}

.informationen-cards .info-group h3 i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

.informationen-cards .info-list {
  display: grid;
  gap: 1rem;
}

.informationen-cards .info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: #fafafa;
  transition: all 0.3s ease;
}

.informationen-cards .info-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  background: #fff;
}

.informationen-cards .info-icon {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.04);
  color: var(--accent-color);
}

.informationen-cards .info-icon i {
  font-size: 1.2rem;
}

.informationen-cards .info-content strong {
  display: block;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 0.25rem;
}

.informationen-cards .info-content p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--default-color);
  opacity: 0.9;
}

.informationen-cards .cta-box {
  margin-top: 2rem;
  padding: 1.4rem 1.5rem;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.05);
  text-align: center;
}

.informationen-cards .cta-box p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--default-color);
}

.informationen-cards .cta-box strong {
  color: var(--heading-color);
}

@media (max-width: 991px) {
  .informationen-cards {
    padding: 70px 0;
  }

  .informationen-cards .section-title h1 {
    font-size: 2rem;
  }

  .informationen-cards .info-group h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .informationen-cards {
    padding: 60px 0;
  }

  .informationen-cards .section-title {
    margin-bottom: 2rem;
  }

  .informationen-cards .section-title h1 {
    font-size: 1.7rem;
  }

  .informationen-cards .info-item {
    padding: 0.95rem;
  }
}

/*--------------------------------------------------------------
# Informationen Cta Section
--------------------------------------------------------------*/
.informationen-cta {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Hero Winterspecials Section
--------------------------------------------------------------*/
.hero-winterspecials {
  padding: 0;
}

/*--------------------------------------------------------------
# Winterspecials Title Section
--------------------------------------------------------------*/
.winterspecials-title {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Winterspecials Teaser Section
--------------------------------------------------------------*/
.winterspecials-teaser .spot-card {
  border-radius: 16px;
}

.winterspecials-teaser .spot-card .spot-body {
  padding: 22px 22px 18px;
}

.winterspecials-teaser .spot-card .spot-body p+p {
  margin-top: 0.15rem;
}

.winterspecials-teaser .spot-card .spot-body a:not(.btn) {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
}

.winterspecials-teaser .spot-card .spot-body a:not(.btn):hover {
  text-decoration: underline;
}

.winterspecials-teaser .spot-card .spot-body .cta-buttons {
  margin-top: 0.8rem;
}

.winterspecials-teaser .spot-meta {
  margin-bottom: 0.9rem;
}

.winterspecials-teaser .spot-badge {
  backdrop-filter: blur(4px);
}

.winterspecials-teaser .spot-media img {
  height: 260px;
}

/*--------------------------------------------------------------
# Winterspecials Cta Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Hero Summerspecials Section
--------------------------------------------------------------*/
.hero-summerspecials {
  padding: 0;
}

/*--------------------------------------------------------------
# Summerspecials Title Section
--------------------------------------------------------------*/
.summerspecials-title {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Summerspecials Overview Section
--------------------------------------------------------------*/
.summerspecials-overview {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Summerspecials Kunst Section
--------------------------------------------------------------*/
.summerspecials-kunst {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Summerspecials Bike Section
--------------------------------------------------------------*/
.summerspecials-bike {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Summerspecials Active Section
--------------------------------------------------------------*/
.summerspecials-active {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Summerspecials Card Section
--------------------------------------------------------------*/
.summerspecials-card {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Summerspecials Cta Section
--------------------------------------------------------------*/
.summerspecials-cta {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Hero Bike Friendly Section
--------------------------------------------------------------*/
.hero-bike-friendly {
  padding: 0;
}

/*--------------------------------------------------------------
# Bike Friendly Title Section
--------------------------------------------------------------*/
.bike-friendly-title {
  padding-top: 48px;
  font-size: 1rem;
  padding-bottom: 10px;
}

/*--------------------------------------------------------------
# Bike Friendly Details Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Bike Friendly Bike Base Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Bike Friendly Bike Events Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Hero Kunst Kultur Section
--------------------------------------------------------------*/
.hero-kunst-kultur {
  padding: 0;
}

/*--------------------------------------------------------------
# Kunst Kultur Title Section
--------------------------------------------------------------*/
.kunst-kultur-title {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Kunst Kultur Geschichte Section
--------------------------------------------------------------*/
.kunst-kultur-geschichte {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Kunst Kultur Sehenswerte Orte Section
--------------------------------------------------------------*/
.kunst-kultur-sehenswerte-orte {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Kunst Kultur Tracht Section
--------------------------------------------------------------*/
.kunst-kultur-tracht {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Kunst Kultur Holz Section
--------------------------------------------------------------*/
.kunst-kultur-holz {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Kunst Kultur Spots Section
--------------------------------------------------------------*/
.kunst-kultur-spots {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Hero Kontakt Section
--------------------------------------------------------------*/
.hero-kontakt {
  padding: 0;
}

/*--------------------------------------------------------------
# Kontakt Title Section
--------------------------------------------------------------*/
.kontakt-title {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Kontakt Content Section
--------------------------------------------------------------*/
.kontakt-content {
  padding-top: 30px;
  padding-bottom: 30px;
}

.kontakt-content .contact-info-panel {
  padding-right: 32px;
}

@media (max-width: 992px) {
  .kontakt-content .contact-info-panel {
    padding-right: 0;
  }
}

.kontakt-content .contact-info-panel .info-intro {
  margin-bottom: 48px;
}

.kontakt-content .contact-info-panel .info-intro h2 {
  font-size: 32px;
  font-weight: 600;
  color: var(--heading-color);
  letter-spacing: 0.01em;
  line-height: 1.35;
  margin-bottom: 20px;
}

.kontakt-content .contact-info-panel .info-intro p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--default-color);
  opacity: 0.85;
  margin-bottom: 0;
}

.kontakt-content .contact-info-panel .info-items {
  margin-bottom: 48px;
}

.kontakt-content .contact-info-panel .info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
}

.kontakt-content .contact-info-panel .info-item:first-child {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
}

.kontakt-content .contact-info-panel .info-item .info-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.kontakt-content .contact-info-panel .info-item .info-icon i {
  font-size: 18px;
  color: var(--accent-color);
}

.kontakt-content .contact-info-panel .info-item .info-content {
  flex: 1;
}

.kontakt-content .contact-info-panel .info-item .info-content h5 {
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-color);
  margin-bottom: 6px;
}

.kontakt-content .contact-info-panel .info-item .info-content p {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--default-color);
  margin-bottom: 0;
}

.kontakt-content .contact-info-panel .info-item .info-content a {
  color: var(--default-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.kontakt-content .contact-info-panel .info-item .info-content a:hover {
  color: var(--accent-color);
}

.kontakt-content .contact-info-panel .info-social .social-heading {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--heading-color);
  margin-bottom: 16px;
}

.kontakt-content .contact-info-panel .info-social .social-icons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.kontakt-content .contact-info-panel .info-social .social-icons .social-icon {
  width: 40px;
  height: 40px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--default-color);
  text-decoration: none;
  transition: all 0.35s ease;
}

.kontakt-content .contact-info-panel .info-social .social-icons .social-icon i {
  font-size: 16px;
}

.kontakt-content .contact-info-panel .info-social .social-icons .social-icon:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  transform: translateY(-2px);
}

.kontakt-content .map-wrapper {
  width: 100%;
  min-height: 320px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  background: var(--surface-color);
}

.kontakt-content .map-wrapper iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
}

@media (min-width: 992px) {
  .kontakt-content .map-wrapper {
    min-height: 100%;
    height: 540px;
    position: sticky;
    top: 100px;
  }

  .kontakt-content .map-wrapper iframe {
    height: 540px;
  }
}

@media (max-width: 991.98px) {
  .kontakt-content .map-wrapper {
    position: relative;
    top: auto;
    height: 380px;
  }

  .kontakt-content .map-wrapper iframe {
    height: 380px;
  }
}

@media (max-width: 767.98px) {
  .kontakt-content .map-wrapper {
    height: 300px;
  }

  .kontakt-content .map-wrapper iframe {
    height: 300px;
  }
}

@media (max-width: 992px) {
  .kontakt-content .contact-info-panel .info-intro {
    margin-bottom: 40px;
  }

  .kontakt-content .contact-info-panel .info-items {
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .kontakt-content .contact-info-panel .info-intro h2 {
    font-size: 26px;
  }

  .kontakt-content .contact-info-panel .info-item {
    padding: 20px 0;
  }
}

/*--------------------------------------------------------------
# Hero Anfrage Section
--------------------------------------------------------------*/
.hero-anfrage {
  padding: 0;
}

/*--------------------------------------------------------------
# Anfrage Title Section
--------------------------------------------------------------*/
.anfrage-title {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Anfrage Section
--------------------------------------------------------------*/
.anfrage {
  background: color-mix(in srgb, var(--surface-color), var(--background-color) 50%);
}

.anfrage .reservation-wrapper {
  max-width: 1400px;
  margin: 0 auto;
}

.anfrage .booking-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 991.98px) {
  .anfrage .booking-grid {
    grid-template-columns: 1fr;
  }
}

.anfrage .booking-form-section .form-container {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 18px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

@media (max-width: 767.98px) {
  .anfrage .booking-form-section .form-container {
    padding: 1.25rem;
  }
}

.anfrage .reservation-form .form-section,
.anfrage .php-email-form .form-section {
  margin-bottom: 2rem;
}

.anfrage .reservation-form .form-section:last-child,
.anfrage .php-email-form .form-section:last-child {
  margin-bottom: 0;
}

.anfrage .reservation-form .form-section h4,
.anfrage .php-email-form .form-section h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--heading-color);
}

.anfrage .reservation-form .form-grid,
.anfrage .php-email-form .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.25rem;
}

@media (max-width: 575.98px) {

  .anfrage .reservation-form .form-grid,
  .anfrage .php-email-form .form-grid {
    grid-template-columns: 1fr;
  }
}

.anfrage .reservation-form .full-width,
.anfrage .php-email-form .full-width {
  grid-column: 1/-1;
}

.anfrage .reservation-form .form-group,
.anfrage .php-email-form .form-group {
  margin-bottom: 0;
}

.anfrage .reservation-form .form-label,
.anfrage .php-email-form .form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--heading-color);
}

.anfrage .reservation-form .form-control,
.anfrage .reservation-form .form-select,
.anfrage .php-email-form .form-control,
.anfrage .php-email-form .form-select {
  width: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  background: var(--surface-color);
  color: var(--default-color);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  transition: 0.25s ease;
}

.anfrage .reservation-form .form-control:focus,
.anfrage .reservation-form .form-select:focus,
.anfrage .php-email-form .form-control:focus,
.anfrage .php-email-form .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.15rem color-mix(in srgb, var(--accent-color), transparent 82%);
  outline: none;
}

.anfrage .reservation-form .form-control::placeholder,
.anfrage .reservation-form .form-select::placeholder,
.anfrage .php-email-form .form-control::placeholder,
.anfrage .php-email-form .form-select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 55%);
}

.anfrage .reservation-form textarea.form-control,
.anfrage .php-email-form textarea.form-control {
  min-height: 130px;
  resize: vertical;
}

.anfrage .reservation-form .invalid-feedback,
.anfrage .php-email-form .invalid-feedback {
  font-size: 0.85rem;
}

.anfrage .reservation-form .privacy-box,
.anfrage .php-email-form .privacy-box {
  padding: 1rem 1rem 0.9rem;
  border-radius: 12px;
  background: color-mix(in srgb, var(--surface-color), var(--background-color) 35%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.anfrage .reservation-form .privacy-box p,
.anfrage .php-email-form .privacy-box p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.anfrage .reservation-form .privacy-box .form-check,
.anfrage .php-email-form .privacy-box .form-check {
  padding-left: 1.8rem;
}

.anfrage .reservation-form .privacy-box .form-check-input,
.anfrage .php-email-form .privacy-box .form-check-input {
  margin-top: 0.2rem;
}

.anfrage .reservation-form .privacy-box .form-check-label,
.anfrage .php-email-form .privacy-box .form-check-label {
  font-size: 0.95rem;
  line-height: 1.5;
}

.anfrage .reservation-form .loading,
.anfrage .reservation-form .error-message,
.anfrage .reservation-form .sent-message,
.anfrage .php-email-form .loading,
.anfrage .php-email-form .error-message,
.anfrage .php-email-form .sent-message {
  display: none;
  margin-top: 15px;
  padding: 0.9rem 1rem;
  border-radius: 10px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.anfrage .reservation-form .loading,
.anfrage .php-email-form .loading {
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--heading-color);
}

.anfrage .reservation-form .error-message,
.anfrage .php-email-form .error-message {
  background: color-mix(in srgb, #dc3545, transparent 92%);
  color: #dc3545;
  border: 1px solid color-mix(in srgb, #dc3545, transparent 75%);
}

.anfrage .reservation-form .sent-message,
.anfrage .php-email-form .sent-message {
  background: color-mix(in srgb, #198754, transparent 92%);
  color: #198754;
  border: 1px solid color-mix(in srgb, #198754, transparent 75%);
}

.anfrage .reservation-form .loading.d-block,
.anfrage .reservation-form .error-message.d-block,
.anfrage .reservation-form .sent-message.d-block,
.anfrage .php-email-form .loading.d-block,
.anfrage .php-email-form .error-message.d-block,
.anfrage .php-email-form .sent-message.d-block {
  display: block;
}

.anfrage .reservation-form .form-actions,
.anfrage .php-email-form .form-actions {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.anfrage .reservation-form .form-actions .btn,
.anfrage .php-email-form .form-actions .btn {
  width: 100%;
}

.anfrage .hotel-showcase .showcase-image {
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.anfrage .hotel-showcase .showcase-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

@media (max-width: 767.98px) {
  .anfrage .hotel-showcase .showcase-image img {
    height: 240px;
  }
}

.anfrage .hotel-showcase .hotel-highlights {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 18px;
  padding: 1.75rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.anfrage .hotel-showcase .hotel-highlights h3 {
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
  color: var(--heading-color);
}

.anfrage .hotel-showcase .highlights-grid {
  display: grid;
  gap: 1rem;
}

.anfrage .hotel-showcase .highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}

.anfrage .hotel-showcase .highlight-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.anfrage .hotel-showcase .highlight-icon i {
  font-size: 1.1rem;
  color: var(--accent-color);
}

.anfrage .hotel-showcase .highlight-content h5 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: var(--heading-color);
}

.anfrage .hotel-showcase .highlight-content p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.anfrage .hotel-showcase .highlight-content a {
  word-break: break-word;
}

.anfrage .hotel-showcase .booking-guarantees {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.anfrage .hotel-showcase .guarantee-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--heading-color);
}

.anfrage .hotel-showcase .guarantee-item i {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Hero Datenschutz Section
--------------------------------------------------------------*/
.hero-datenschutz {
  padding: 0;
}

/*--------------------------------------------------------------
# Datenschutz Title Section
--------------------------------------------------------------*/
.datenschutz-title {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Datenschutz Teaser Section
--------------------------------------------------------------*/
.datenschutz-teaser {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Hero Impressum Section
--------------------------------------------------------------*/
.hero-impressum {
  padding: 0;
}

/*--------------------------------------------------------------
# Impressum Title Section
--------------------------------------------------------------*/
.impressum-title {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Impressum Content Section
--------------------------------------------------------------*/
.impressum-content {
  /* Add your styles here */
}