/* ---------------------------------------------
   BASIC STYLES
---------------------------------------------- */

:root {
    --primary: #0070b8;
    --primary-dark: #005488;
    --bg-light: #f7f7f7;
    --text: #222;
    --muted: #777;
    --max-width: 1200px;
    --radius: 14px;
    --shadow: 0 10px 25px rgba(0,0,0,0.12);
}

* {
    box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Manrope, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif;
  color: var(--text);
  line-height: 1.6;
}


img {
    width: 100%;
    display: block;
}

h1 {
font-family: Manrope, sans-serif;
  font-weight: 700;
	
}

h2 {
	font-family: Manrope, sans-serif;
  font-weight: 600;
	text-align: left;
	font-size: 30px;
	line-hight: 0.5;
}

h3 {
    
}

/* ---------------------------------------------
   MANROPE FONT
---------------------------------------------- */

/* Thin */
@font-face {
  font-family: Manrope;
  src: url('/fonts/manrope-thin.otf') format(opentype);
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

/* Regular */
@font-face {
  font-family: Manrope;
  src: url('/fonts/manrope-regular.otf') format(opentype);
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Medium */
@font-face {
  font-family: Manrope;
  src: url('/fonts/manrope-medium.otf') format(opentype);
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* Bold */
@font-face {
  font-family: Manrope;
  src: url('/fonts/manrope-bold.otf') format(opentype);
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ExtraBold */
@font-face {
  font-family: Manrope;
  src: url('/fonts/manrope-extrabold.otf') format(opentype);
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}



/* ---------------------------------------------
   LAYOUT
---------------------------------------------- */

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 16px;
	padding-top: 10px;
	padding-bottom: 10px;
}

/* ---------------------------------------------
   HEADER & NAV
---------------------------------------------- */

header {
    position: fixed;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    width: 100%;
    top: 0;
    z-index: 50;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

/* Branding */

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
	padding-left: 10px;
}

.brand-logo {
    width: 52px;
    height: 52px;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: var(--shadow);
}

.brand-title {
    font-size: 20px;
    letter-spacing: 0.05em;
}

.brand-title span {
    font-size: 11px;
    color: #000;
}

/* NAV */

/* NAV BAR */
.main-nav {
  position: relative;
  display: flex;
  align-items: center;
}

/* ---------------- HAMBURGER ---------------- */

.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  cursor: pointer;
  padding: 10px;
}

.nav-toggle-label span {
  display: block;
  width: 22px;
  height: 2px;
  background: #000;
  margin: 5px 0;
}

/* ---------------- DESKTOP NAV ---------------- */

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding-right: 20px;

  li {
    position: relative;
	padding-left: 20px;

    a {
      text-decoration: none;
      /*font-size: 13px;*/
      /*text-transform: uppercase;*/
      letter-spacing: 0.08em;
      color: #444;
	 text-transform: uppercase;
    }

    a.active {
      color: #3b4aff;
    }
  }
}

/* SUBMENU DESKTOP */
.submenu {
  list-style: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: #fff;
  padding: 10px 0;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  display: none;
}

.has-submenu:hover .submenu {
  display: block;
}

/* ---------------- MOBILE ---------------- */

@media (max-width: 768px) {

  .nav-toggle-label {
    display: block;
    margin-left: auto;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    position: fixed;
    top: 100%;
    left: 0;

    background: #fff;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  }

  /* HIER passiert das Aufklappen */
  .nav-toggle:checked ~ .nav-links {
    display: flex;
  }

  .nav-links li a {
    padding: 14px 20px;
    display: block;
    border-top: 1px solid rgba(0,0,0,0.10);
  }

  /* Submenu Mobile immer sichtbar */
  .submenu {
    position: static;
    box-shadow: none;
    background: transparent;
    display: block;
  }
}

/* Pfeil */
.has-submenu > a::after {
  content: " ▼";
  font-size: 10px;
}

/* ---------------------------------------------
   HERO / SLIDER
---------------------------------------------- */

main {
    margin-top: 74px;
}

.hero {
  position: relative;
  min-height: 70vh;
  color: #fff;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #000;
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 900ms ease; /* weicher Übergang */
  pointer-events: none;
}

.hero-slide.is-active {
  opacity: 1;
}

/* Pfeile */
.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.5);
  background: rgba(0,0,0,0.35);
  color: #fff;
  font-size: 20px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  backdrop-filter: blur(4px);
}

.hero-prev { left: 14px; }
.hero-next { right: 14px; }

.hero-nav:hover {
  background: rgba(0,0,0,0.5);
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
}

/* Hero content */

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 32px;
    padding: 40px 0;
}

.hero-text h2 {
    font-size: clamp(24px, 3vw, 32px);
    line-height: 1.3;
    margin: 0 0 10px;
}

.hero-badges {
    margin-top: 14px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.badge-pill {
    padding: 4px 12px;
    font-size: 11px;
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 999px;
}

/* ---------------------------------------------
   BOOKING CARD
---------------------------------------------- */

.booking-card {
    background: #fff;
    color: var(--text);
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.booking-card h3 {
    margin-top: 0;
}

.booking-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.form-field label {
    display: block;
    font-size: 11px;
    margin-bottom: 4px;
    text-transform: uppercase;
    color: var(--muted);
}

.form-field input,
.form-field select {
    width: 100%;
    padding: 8px 10px;
    border-radius: 999px;
    border: 1px solid #ccc;
}

.booking-card button {
    margin-top: 16px;
    width: 100%;
    padding: 12px;
    border-radius: 999px;
    background: var(--primary);
    color: #fff;
    border: none;
    cursor: pointer;
}

.booking-card button:hover {
    background: var(--primary-dark);
}



/* ---------------------------------------------
   SECTIONS
---------------------------------------------- */

.section {
    padding: 60px 0;
	line-height: 1.6;
}

.section--muted {
    background: #e1e1e1;
}

.section-header {
    text-align: center;
	font-size: 30px;
	line-height: 0.5;
}

/* Mobile */
@media (max-width: 768px) {
	.section-header {
		font-size: 20px;
	}
}



/* ---------------------------------------------
   SECTIONS Zweispaltigkeit
----------------------------------------------  */

.content-sections {
padding: 4rem 0;
}


/* Grundlayout */
.content-text-image {
	width: 100%;
}

.container {
	max-width: 1200px;
	margin: 0 auto;

}

/* Reihen-Layout */
.content-row {
	display: flex;
	align-items: flex-start; /* Text & Bild starten oben gleich */
	gap: 40px; /* Abstand zwischen Text & Bild */
	margin-bottom: 80px;
}

/* Wechsel links/rechts */
.content-row.reverse {
	flex-direction: row-reverse;
}

/* Text & Media */
.content-text,
.content-media {
	flex: 1;
	position: relative;
}

.content-text h2 {
	margin-bottom: 16px;
}

.content-text p {
	margin-bottom: 14px;
	line-height: 1.6;
}

/* Bilder & Videos */
.content-media img,
.video-wrapper iframe {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 6px;
}

/* Video Responsive */
.video-wrapper{
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 200px;     /* <-- wichtig für Mobile */
  overflow: hidden;
}

.video-wrapper iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* CTA Button */
.cta-button {
	display: inline-block;
	margin-top: 20px;
	padding: 12px 28px;
	background: #1c1c1c;
	color: #fff;
	text-decoration: none;
	border-radius: 4px;
	transition: background 0.3s ease;
}

.cta-button:hover {
	background: #444;
}

/* Zweispaltigkeit – Hintergrund über volle Breite */
.content-row.reverse {
	position: relative;
}

.content-row.reverse::before {
	content: "";
	position: absolute;
	top: -40px;
	left: 50%;
	transform: translateX(-50%);
	width: 100vw;
	height: calc(100% + 80px);
	background: #e1e1e1;
	z-index: -1;
}

/* Mobile */
@media (max-width: 768px) {
	.content-row,
	.content-row.reverse {
		flex-direction: column;
		gap: 24px;
	}

	.content-row.reverse::before {
		top: -20px;
		height: calc(100% + 40px);
	}
}



/* Video-Wrapper mit 16:9 Seitenverhältnis */
.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;      /* modern & sauber */
  background: #000;
  border-radius: 8px;
  overflow: hidden;
}

/* Fallback für ältere Browser */
@supports not (aspect-ratio: 16 / 9) {
  .video-wrapper {
    padding-top: 56.25%;
  }
}

/* iframe korrekt einpassen */
.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Bilder weiterhin normal */
.content-media img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Mobile */
@media (max-width: 768px) {
  .content-row,
  .content-row.reverse {
    flex-direction: column;
  }
}




/* ---------------------------------------------
   INTRO
---------------------------------------------- */

.intro-text {
    max-width: 880px;
    margin: 0 auto;
}

.intro-text .lead {
    font-size: 18px;
}

.intro-image {
    margin: 24px 0;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
	width: 100%;
}

.highlight-box {
    background: #fff;
    padding: 20px;
    border-radius: var(--radius);
    margin: 20px 0;
    border: 1px solid rgba(0,0,0,0.05);
}

.winter-box {
    background: #fff5e8;
    border: 1px solid rgba(255,150,40,0.4);
}

/* ---------------------------------------------
   APARTMENTS
---------------------------------------------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

/* Tablet */
@media (max-width: 1024px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 640px) {
  .card-grid {
    grid-template-columns: 1fr;
  }
}

.card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-image {
  position: relative;
}

.card-image img {
  width: 100%;          /* WICHTIG */
  height: 220px;
  object-fit: cover;
  display: block;
}

.card-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.6);
  padding: 4px 10px;
  color: #fff;
  border-radius: 999px;
  font-size: 11px;
}

.card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.btn-link {
  margin-top: auto;     /* Button immer unten */
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}


.site-footer {
  background: #0f172a;
  color: #fff;
}

/* Oberer Footer */
.footer-main {
  padding: 48px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* Spalten */
.footer-column h3 {
  margin-bottom: 12px;
  font-size: 15px;
  text-transform: uppercase;
}

.footer-column p {
  margin: 6px 0;
  font-size: 14px;
}

.footer-center {
  text-align: left;
}

.footer-right {
  text-align: right;
}

/* Links */
.site-footer a {
  color: #cbd5e1;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

/* Unterer Footer */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 16px 0;
}

.footer-bottom p {
  margin: 0;
  text-align: center;
  font-size: 13px;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .footer-right {
    text-align: center;
  }
}

/* ---------------------------------------------
   GALERIE: Slider (Bootstrap 3) + Thumbnail-Grid
---------------------------------------------- */

/* ===== Slider ===== */
#cieloCarousel, #marCarousel, #solCarousel, #terraCarousel {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  margin-bottom: 16px;
  background: #000; /* wirkt bei langsamen Bild-Ladesituationen sauber */
}

#cieloCarousel, #marCarousel, #solCarousel, #terraCarousel .item img {
  width: 100%;
  height: auto;
  display: block;
}

/* Pfeile etwas besser sichtbar */
#cieloCarousel, #marCarousel, #solCarousel, #terraCarousel .carousel-control {
  border-radius: 14px;
}

#cieloCarousel, #marCarousel, #solCarousel, #terraCarousel .carousel-control.left,
#cieloCarousel, #marCarousel, #solCarousel, #terraCarousel .carousel-control.right {
  background-image: none;          /* Bootstrap-Gradient aus */
  opacity: 0.9;
}

#cieloCarousel, #marCarousel, #solCarousel, #terraCarousel:hover .carousel-control.left,
#cieloCarousel, #marCarousel, #solCarousel, #terraCarousel:hover .carousel-control.right {
  opacity: 1;
}

/* Indicators etwas dezenter */
#cieloCarousel, #marCarousel, #solCarousel, #terraCarousel .carousel-indicators {
  bottom: 10px;
}

#cieloCarousel, #marCarousel, #solCarousel, #terraCarousel .carousel-indicators li {
  border: 1px solid rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.25);
}

#cieloCarousel, #marCarousel, #solCarousel, #terraCarousel .carousel-indicators .active {
  background: rgba(255,255,255,0.95);
}

/* ===== Thumbnails Grid ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

/* Responsive Breakpoints */
@media (max-width: 991px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
}

.gallery-item {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
  transform: translateY(0);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  background: #f3f3f3;
}

/* Thumbnails: gleichmäßige Kachel-Höhe ohne Verzerrung */
.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3; /* passe gern an: 1/1, 3/2, 16/9 */
  height: auto;
  display: block;
  object-fit: cover;
}

/* Hover */
.gallery-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.18);
}

/* Optional: kleine visuelle Trennung zwischen Slider und Grid */
.gallery-thumbs {
  margin-top: 14px;
}

/* Optional: Fokus-Stil für Tastatur-Navigation */
.gallery-item:focus {
  outline: 3px solid rgba(0,0,0,0.25);
  outline-offset: 3px;
}


/* ==============================
   Thumbnail-Kassette unter Slider
============================== */

.thumbs-wrap {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  gap: 10px;
  align-items: center;
  margin-top: 14px;
}

.thumbs-nav {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 28px;
  line-height: 44px;
  cursor: pointer;
  user-select: none;
}

.thumbs-nav:hover { background: rgba(0,0,0,0.8); }
.thumbs-nav:disabled { opacity: 0.35; cursor: default; }

.thumbs-viewport {
  overflow: hidden;
  border-radius: 14px;
  padding: 6px;
  background: rgba(0,0,0,0.04);
}

.thumbs-track {
  display: flex;
  gap: 10px;
  transform: translateX(0);
  transition: transform 220ms ease;
  will-change: transform;
}

.thumb {
  flex: 0 0 calc((100% - 4 * 10px) / 5); /* 5 Thumbs sichtbar, 4 gaps */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
  transform: translateY(0);
  transition: transform 140ms ease, box-shadow 140ms ease;
  background: #f3f3f3;
  display: block;
}

.thumb img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.thumb:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.16);
}

/* Aktives Thumbnail (zur aktuellen Slide) */
.thumb.is-active {
  outline: 3px solid rgba(0,0,0,0.25);
  outline-offset: 2px;
}

/* Responsive: auf kleineren Screens nur 4 bzw. 3 sichtbar */
@media (max-width: 991px) {
  .thumb { flex-basis: calc((100% - 3 * 10px) / 4); }
}
@media (max-width: 520px) {
  .thumb { flex-basis: calc((100% - 2 * 10px) / 3); }
}

/* Layout für iFrame und Buchungstool */

/* Wrapper für die beiden Module */
.iframe-wrapper {
    display: flex;
    flex-wrap: wrap; /* damit es auf mobilen Geräten umbrechen kann */
    gap: 20px;       /* Abstand zwischen den Modulen */
    justify-content: center; /* zentriert die Module horizontal */
}

/* Beide Iframe-Module */
.iframe-module {
    flex: 1 1 450px; /* flexible Breite, min 450px */
    min-width: 280px; /* Minimum für kleine Geräte */
    max-width: 600px; /* Optional: Limit für große Bildschirme */
}

/* Iframe responsive */
.iframe-module iframe {
    width: auto;
    /*height: auto;  passt Höhe automatisch an */
}

/* Desktop vs Mobile */
.smallDevices {
    display: none;
}

.bigDevices {
    display: block;
}

/* Mobile Anpassung */
@media (max-width: 768px) {
    .smallDevices {
        display: block;
    }
    .bigDevices {
        display: none;
    }
    
    .iframe-wrapper {
        flex-direction: column; /* Module untereinander */
        gap: 15px;
    }
}
/* Amenities 2-Spalten-Layout */

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.amenities-grid ul {
    padding-left: 18px;
    font-size: 16px;
}

/* RESPONSIVE ANPASSUNGEN */

@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .info-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .amenities-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}



/* ---------------------------------------------
   Call To Action Button
---------------------------------------------- */

.cta-button {
	background-color: #3b4aff;
	display: inline-flex;              /* wichtig */
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: #fff;
	font-family: Manrope, sans-serif;
	font-weight: 600;
	font-size: 17px;
	padding: 10px 30px;                /* bestimmt die Größe */
	text-decoration: none;
	width: fit-content;                /* exakt Textbreite */
	max-width: 100%;
	border-radius: 5px;

	/* Animation */
  	transition:
	background-color 0.25s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
	
}

/* Hover */
.cta-button:hover {
	background-color: #FFDAB9;
	transform: translateY(-2px);
	color: #000;
}

/* Active / Click */
.cta-button:active {
	transform: translateY(0);
	box-shadow: 0 4px 10px rgba(68, 199, 103, 0.25);
}

/* ===============================
   Footer Sprach-Dropdown
================================ */

.footer-language-switcher {
  position: relative;
}

/* Button */
.footer-lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.25);
  border-radius: 8px;
  cursor: pointer;
  font-size: 15px;
}

/* Flaggen */
.footer-lang-btn img,
.footer-lang-dropdown img {
  width: 25px;
  height: 25px;
  object-fit: cover;
  border-radius: 3px;
}

/* Dropdown */
.footer-lang-dropdown {
  display: none;
  right: 0;
  top: 110%;
  width: 140px;
  list-style: none;
  margin: 0;
  padding: 6px 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  z-index: 50;
}

.footer-lang-dropdown li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  text-decoration: none;
  color: #222;
  font-size: 15px;
}

.footer-lang-dropdown li a:hover {
  background: #f3f3f3;
}

.footer-lang-dropdown .active a {
  font-weight: 600;
}

/* Desktop Hover */
.footer-language-switcher:hover .footer-lang-dropdown {
  display: block;
}

/* Mobile */
@media (max-width: 768px) {
  .footer-language-switcher:hover .footer-lang-dropdown {
    display: none;
  }

  .footer-language-switcher:focus-within .footer-lang-dropdown {
    display: block;
  }
}


/* ===============================
   Navigation Sprach-Dropdown
================================ */

.nav-language-switcher {
  position: relative;
	padding-right: 5px;
}

/* Button */
.nav-lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 6px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.25);
  border-radius: 8px;
  cursor: pointer;
  font-size: 15px;
}

/* Flaggen */
.nav-lang-btn img,
.nav-lang-dropdown img {
  width: 25px;
  height: 25px;
  object-fit: cover;
  border-radius: 3px;
}

/* Dropdown */
.nav-lang-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  list-style: none;
  margin: 0;
  padding: 4px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  z-index: 999;
}

.nav-lang-dropdown li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 8px;
  text-decoration: none;
  color: #222;
  font-size: 15px;
}

.nav-lang-dropdown li a:hover {
  background: #f3f3f3;
}

.nav-lang-dropdown .active a {
  font-weight: 600;
}

/* Desktop Hover */
.nav-language-switcher:hover .nav-lang-dropdown {
  display: block;
}

/* Mobile */
@media (max-width: 768px) {
  .footer-language-switcher:hover .footer-lang-dropdown {
    display: none;
  }

  .nav-language-switcher:focus-within .nav-lang-dropdown {
    display: block;
  }
}

/* Social Media Icons im Footer */
.footer-social {
  margin-top: 14px;
  display: flex;
  gap: 14px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  transition: all 0.25s ease;
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: #cbd5e1;
}

.footer-social a:hover {
  background: #0070b8;
  transform: translateY(-2px);
}

.footer-social a:hover svg {
  fill: #fff;
}

