.macos {
  width: 100px;
  height: 50px;
  border: 1px solid black;
  border-radius: 50px;
}

/* ===============================
   Custom Fonts
   =============================== */
@font-face {
  font-family: "Gunplay";
  src: url("/assets/fonts/gunplay rg.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ===============================
   Variables & Reset
   =============================== */
:root {
  /* === Dark Mode Farben (Standard) === */
  --primary-color: #007bff;
  --primary-hover: #0056b3;
  --bg-color: #0a0a0a;
  --card-bg: rgba(20, 20, 20, 0.8);
  --text-color: #ffffff;
  --text-muted: #aaaaaa;
  --border-color: rgba(255, 255, 255, 0.1);
  --shadow-color: rgba(0, 0, 0, 0.3);
  --navbar-bg: rgba(255, 255, 255, 0.08);
  --navbar-text: #ffffff;
  --navbar-border: rgba(255, 255, 255, 0.25);
  --glass-bg: rgba(255, 255, 255, 0.12);
  --glass-border: rgba(255, 255, 255, 0.3);
  --glass-shadow: rgba(0, 0, 0, 0.1);
  --secondary-color: #6b7280;
  --accent-color: #ffffff;
  --transition: all 0.3s ease;

  /* Partner Logo Colors (Dark Mode) */
  --hubyte-text-color: #ffffff;
  --hubyte-box-color: #618bff;

  /* Brand Logo (Dark Mode) */
  --brand-logo-filter: brightness(0) invert(1)
    drop-shadow(0 2px 10px rgba(0, 0, 0, 0.3));
}

/* === Light Mode === */
[data-theme="light"] {
  /* Light Mode Farben */
  --primary-color: #0056b3;
  --primary-hover: #003d82;
  --bg-color: #f5f7fa;
  --card-bg: rgba(255, 255, 255, 0.9);
  --text-color: #1a1a1a;
  --text-muted: #6c757d;
  --border-color: rgba(0, 0, 0, 0.1);
  --shadow-color: rgba(0, 0, 0, 0.1);
  --navbar-bg: rgba(255, 255, 255, 0.85);
  --navbar-text: #1a1a1a;
  --navbar-border: rgba(0, 0, 0, 0.15);
  --glass-bg: rgba(255, 255, 255, 0.8);
  --glass-border: rgba(0, 0, 0, 0.15);
  --glass-shadow: rgba(0, 0, 0, 0.08);
  --accent-color: #1a1a1a;

  /* Partner Logo Colors (Light Mode) */
  --hubyte-text-color: #1a1a1a;
  --hubyte-box-color: #007bff;

  /* Brand Logo (Light Mode) */
  --brand-logo-filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.15));
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-y: scroll;
}

body {
  font-family: "Roboto Condensed", "Segoe UI", Tahoma, Geneva, Verdana,
    sans-serif;
  overflow-x: hidden;
  background: linear-gradient(
    135deg,
    #000000 0%,
    #0a0a0a 25%,
    #121212 50%,
    #1a1a1a 75%,
    #1f1f1f 100%
  );
  background-attachment: fixed;
  color: var(--text-color);
  min-height: 100vh;
  transition: background 0.5s ease, color 0.5s ease;
}

/* Light Mode Body Background */
[data-theme="light"] body {
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    #f8f9fa 25%,
    #f0f2f5 50%,
    #e9ecef 75%,
    #dee2e6 100%
  );
}

/* ===============================
   Progress Bar
   =============================== */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0.5));
  z-index: 9999;
  transition: width 0.1s ease;
}

/* ===============================
   Navigation - Liquid Glass Style
   =============================== */
.navbar {
  position: fixed !important;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 80px);
  max-width: 1400px;
  z-index: 1030;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(40px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(40px) saturate(180%) !important;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 20px !important;
  padding: 10px 20px !important;
  position: relative;
  overflow: hidden;
}

.navbar::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.5) 0%,
    rgba(255, 255, 255, 0.1) 25%,
    rgba(255, 255, 255, 0.05) 50%,
    rgba(255, 255, 255, 0.1) 75%,
    rgba(255, 255, 255, 0.5) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.6;
}

.navbar.scrolled {
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(50px) saturate(200%) !important;
  -webkit-backdrop-filter: blur(50px) saturate(200%) !important;
  background: rgba(255, 255, 255, 0.12) !important;
}

@media (max-width: 991px) {
  .navbar {
    width: calc(100% - 40px);
    top: 15px;
  }
}

.navbar-brand {
  font-size: 1.5rem;
  color: var(--navbar-text) !important;
  text-shadow: 0 2px 10px var(--shadow-color);
  transition: var(--transition);
}

.navbar-brand span {
  font-family: "Gunplay", sans-serif;
  letter-spacing: 1px;
}

.navbar-brand:hover {
  opacity: 0.8;
}

.brand-logo {
  transition: var(--transition);
  height: 40px;
  width: auto;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.3));
}

.navbar-brand:hover .brand-logo {
  transform: scale(1.05);
}

/* Logo styling with theme support */
.brand-logo {
  filter: var(--brand-logo-filter);
}

@media (max-width: 576px) {
  .navbar-brand {
    font-size: 1.1rem;
  }

  .brand-logo {
    height: 32px;
  }
}

.navbar-toggler-icon {
  filter: invert(1);
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.3);
}

.nav-link {
  color: var(--navbar-text) !important;
  opacity: 0.8;
  font-weight: 500;
  margin: 0 10px;
  padding: 8px 20px !important;
  position: relative;
  transition: var(--transition);
  text-shadow: 0 1px 5px var(--shadow-color);
  border-radius: 12px;
}

[data-theme="light"] .nav-link {
  color: var(--navbar-text) !important;
  opacity: 0.85;
}

@media (max-width: 991px) {
  .nav-link {
    margin: 8px 0;
    padding: 12px 20px !important;
  }
}

.nav-link:hover {
  color: var(--navbar-text) !important;
  opacity: 1;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

[data-theme="light"] .nav-link:hover {
  background: rgba(0, 0, 0, 0.08);
}

.nav-link.active {
  color: var(--navbar-text) !important;
  opacity: 1;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 4px 12px var(--glass-shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

[data-theme="light"] .nav-link.active {
  background: rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.2);
}

/* Navbar items mehr über Breite verteilen */
.navbar-nav {
  gap: 10px;
}

@media (min-width: 992px) {
  .navbar-nav {
    flex: 1;
    justify-content: center;
    max-width: 600px;
  }
}

/* ===============================
   Hero Section
   =============================== */
.hero-section {
  background-color: transparent !important;
  padding-top: 0;
  position: relative;
  overflow: hidden;
}

.parallax-section {
  position: relative;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-overlay {
  background-color: transparent !important;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  /* z-index: 1; */
}

.hero-section .container {
  z-index: 2;
}

.hero-title {
  color: var(--text-color);
  text-shadow: 0 4px 12px var(--shadow-color);
  letter-spacing: -1px;
}

.hero-subtitle {
  color: var(--text-color);
  opacity: 0.9;
  font-size: 1.25rem;
  font-weight: 300;
  text-shadow: 0 2px 8px var(--shadow-color);
}

[data-theme="light"] .hero-title {
  color: #1a1a1a;
}

[data-theme="light"] .hero-subtitle {
  color: #1a1a1a;
  opacity: 0.85;
}

/* Hero Text Smooth Fade-in Animation */
.hero-title {
  opacity: 1;
}

.hero-title .title-line {
  opacity: 1;
}

.hero-title .title-word {
  display: inline-block;
  opacity: 0;
  animation: wordFadeIn 1s ease-out forwards;
}

/* Zeile 1: Shopware Entwicklung */
.hero-title .title-line:nth-child(1) .title-word:nth-child(1) {
  animation-delay: 0s;
}

.hero-title .title-line:nth-child(1) .title-word:nth-child(2) {
  animation-delay: 0.3s;
}

/* Zeile 2: auf */
.hero-title .title-line:nth-child(2) .title-word:nth-child(1) {
  animation-delay: 0.6s;
}

/* Zeile 3: höchstem Niveau */
.hero-title .title-line:nth-child(3) .title-word:nth-child(1) {
  animation-delay: 0.9s;
}

.hero-title .title-line:nth-child(3) .title-word:nth-child(2) {
  animation-delay: 1.2s;
}

.hero-subtitle {
  opacity: 1;
  margin-top: 3rem !important;
}

.hero-subtitle .word-fade {
  display: inline-block;
  opacity: 0;
  animation: wordFadeIn 1s ease-out forwards;
}

/* Verzögerung für jedes Wort - startet nach dem Title */
.hero-subtitle .word-fade:nth-child(1) {
  animation-delay: 1.5s;
}
.hero-subtitle .word-fade:nth-child(2) {
  animation-delay: 1.8s;
}
.hero-subtitle .word-fade:nth-child(3) {
  animation-delay: 2.1s;
}
.hero-subtitle .word-fade:nth-child(4) {
  animation-delay: 2.4s;
}
.hero-subtitle .word-fade:nth-child(5) {
  animation-delay: 2.7s;
}
.hero-subtitle .word-fade:nth-child(6) {
  animation-delay: 3s;
}
.hero-subtitle .word-fade:nth-child(7) {
  animation-delay: 3.3s;
}
.hero-subtitle .word-fade:nth-child(8) {
  animation-delay: 3.6s;
}
.hero-subtitle .word-fade:nth-child(9) {
  animation-delay: 3.9s;
}
.hero-subtitle .word-fade:nth-child(10) {
  animation-delay: 4.2s;
}
.hero-subtitle .word-fade:nth-child(11) {
  animation-delay: 4.5s;
}

.hero-buttons {
  animation: smoothFadeInUp 1.5s ease-out 5s forwards;
  opacity: 0;
}

@keyframes smoothFadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes wordFadeIn {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-buttons {
  margin-top: 2rem;
}

.hero-buttons .btn {
  min-width: 180px;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-buttons .btn {
    display: block;
    width: 100%;
    margin: 0.5rem 0 !important;
  }
}

/* ===============================
   Animations
   =============================== */
.fade-in {
  animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===============================
   Feature Cards
   =============================== */
.feature-card {
  animation: fadeInUp 0.6s ease-out;
}

.feature-card:nth-child(2) {
  animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Glass Card Styling */
.glass-card {
  position: relative;
  background: rgba(255, 255, 255, 0.12) !important;
  backdrop-filter: blur(40px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(40px) saturate(180%) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  border-radius: 20px !important;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.35) !important;
  color: #ffffff !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease-out forwards;
  overflow: hidden;
}

.glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    140deg,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(255, 255, 255, 0.05) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  border-radius: 20px;
  pointer-events: none;
  opacity: 0.7;
  transition: opacity 0.4s ease;
}

.glass-card:hover {
  transform: translateY(-10px) !important;
  background: rgba(255, 255, 255, 0.2) !important;
  backdrop-filter: blur(50px) saturate(200%) !important;
  -webkit-backdrop-filter: blur(50px) saturate(200%) !important;
  border-color: rgba(255, 255, 255, 0.5) !important;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2),
    inset 0 1px 1px rgba(255, 255, 255, 0.45) !important;
}

.glass-card:hover::before {
  opacity: 0.95;
}

.glass-card h5,
.glass-card p,
.glass-card li {
  color: var(--text-color) !important;
  text-shadow: 0 1px 3px var(--shadow-color);
}

[data-theme="light"] .glass-card h5,
[data-theme="light"] .glass-card p,
[data-theme="light"] .glass-card li {
  color: #1a1a1a !important;
}

.glass-card .text-muted {
  color: var(--text-muted) !important;
}

.glass-card .section-icon {
  color: var(--text-color) !important;
  opacity: 0.9;
  filter: drop-shadow(0 2px 8px var(--shadow-color));
}

.service-card:nth-child(1) .glass-card {
  animation-delay: 0s;
}

.service-card:nth-child(2) .glass-card {
  animation-delay: 0.2s;
}

.service-card:nth-child(3) .glass-card {
  animation-delay: 0.4s;
}

.features-section .card,
.services-section .card,
.feature-card .card,
.service-card .card {
  position: relative;
  overflow: visible;
  background: rgba(255, 255, 255, 0.12) !important;
  backdrop-filter: blur(40px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(40px) saturate(180%) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 20px !important;
  transition: all 0.4s ease !important;
  color: #ffffff !important;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
}

.features-section .card::before,
.services-section .card::before,
.feature-card .card::before,
.service-card .card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    140deg,
    var(--glass-highlight) 0%,
    rgba(255, 255, 255, 0.05) 55%,
    transparent 100%
  );
  opacity: 0.75;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.features-section .card:hover,
.services-section .card:hover,
.feature-card .card:hover,
.service-card .card:hover {
  transform: translateY(-10px) !important;
  background: rgba(255, 255, 255, 0.18) !important;
  backdrop-filter: blur(50px) saturate(200%) !important;
  -webkit-backdrop-filter: blur(50px) saturate(200%) !important;
  border-color: rgba(255, 255, 255, 0.35) !important;
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.2),
    inset 0 1px 1px rgba(255, 255, 255, 0.4) !important;
}

.features-section .card:hover::before,
.services-section .card:hover::before,
.feature-card .card:hover::before,
.service-card .card:hover::before {
  opacity: 0.95;
}

/* ===============================
   Flip Cards
   =============================== */
/* ===============================
   Section Icons
   =============================== */
.section-icon {
  color: var(--icon-color);
}

/* ===============================
   Section Backgrounds
   =============================== */
.bg-light {
  background: none !important;
}

.features-section,
.services-section,
.contact-section {
  position: relative;
  overflow: visible;
}

.features-section .container,
.services-section .container,
.contact-section .container {
  position: relative;
  z-index: 1;
}

.text-muted {
  color: rgba(255, 255, 255, 0.8) !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Section headings with theme support */
section h2,
section h3,
section h4,
section h5,
section p,
section .lead {
  color: var(--text-color) !important;
  text-shadow: 0 2px 8px var(--shadow-color);
}

[data-theme="light"] section h2,
[data-theme="light"] section h3,
[data-theme="light"] section h4,
[data-theme="light"] section h5,
[data-theme="light"] section p,
[data-theme="light"] section .lead {
  color: #1a1a1a !important;
}

.card-title,
.card-text {
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.section-icon {
  color: #ffffff !important;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
}

/* ===============================
   Parallax Divider
   =============================== */
.parallax-divider {
  height: 400px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.parallax-overlay {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.parallax-overlay p {
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .parallax-divider {
    background-attachment: scroll;
    height: 300px;
  }
}

/* ===============================
   Product Cards
   =============================== */
.card-img-placeholder {
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem 0.375rem 0 0;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.card-img-placeholder i {
  font-size: 5rem;
  transition: var(--transition);
}

.lightbox-trigger {
  position: relative;
}

.lightbox-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}

.lightbox-icon i {
  font-size: 1.5rem;
  color: #000000;
}

.lightbox-trigger:hover .lightbox-icon {
  opacity: 1;
}

.lightbox-trigger:hover i.bi-box-seam {
  transform: scale(1.1);
}

/* ===============================
   Contact Form
   =============================== */
.contact-form .form-control {
  border: 1px solid var(--glass-border);
  padding: 14px 20px;
  transition: all 0.4s ease;
  background: rgba(255, 255, 255, 0.2) !important;
  backdrop-filter: blur(25px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(25px) saturate(180%) !important;
  color: var(--text-color);
  box-shadow: 0 4px 16px var(--glass-shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.contact-form .form-control:focus {
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2),
    inset 0 1px 1px rgba(255, 255, 255, 0.3), 0 0 0 3px rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.3) !important;
  backdrop-filter: blur(30px) saturate(200%) !important;
  -webkit-backdrop-filter: blur(30px) saturate(200%) !important;
  color: var(--text-color);
  outline: none;
  transform: translateY(-2px);
}

[data-theme="light"] .contact-form .form-control:focus {
  border-color: rgba(0, 0, 0, 0.3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1), inset 0 1px 1px rgba(0, 0, 0, 0.1),
    0 0 0 3px rgba(0, 0, 0, 0.05);
  color: #1a1a1a;
}

.contact-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
  opacity: 1;
}

[data-theme="light"] .contact-form .form-control::placeholder {
  color: rgba(0, 0, 0, 0.5);
}

/* ===============================
   Footer - Liquid Glass Style (Sticky)
   =============================== */
.footer {
  position: fixed !important;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 80px);
  max-width: 1400px;
  z-index: 1030;
  background: rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(40px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(40px) saturate(180%) !important;
  color: #ffffff !important;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 20px !important;
  padding: 10px 20px !important;
  margin: 0 !important;
  height: 72px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.5) 0%,
    rgba(255, 255, 255, 0.1) 25%,
    rgba(255, 255, 255, 0.05) 50%,
    rgba(255, 255, 255, 0.1) 75%,
    rgba(255, 255, 255, 0.5) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.6;
}

@media (max-width: 768px) {
  .footer {
    width: calc(100% - 40px);
    bottom: 15px;
    height: auto;
    min-height: 72px;
  }
}

.footer .fw-bold {
  font-family: "Gunplay", sans-serif;
  letter-spacing: 1px;
  font-size: 1.2rem;
}

.footer-logo {
  transition: var(--transition);
  height: 20px;
  width: auto;
  vertical-align: middle;
  filter: brightness(0) invert(1) drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3));
}

.footer .d-flex:hover .footer-logo {
  transform: scale(1.1);
}

.footer a {
  text-decoration: none;
  transition: var(--transition);
  color: rgba(255, 255, 255, 0.8) !important;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
  padding: 8px 16px;
  border-radius: 12px;
  display: inline-block;
}

[data-theme="light"] .footer a {
  color: rgba(0, 0, 0, 0.8) !important;
  text-shadow: none;
}

.footer a:hover {
  color: rgba(255, 255, 255, 1) !important;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transform: translateY(-2px);
}

[data-theme="light"] .footer a:hover {
  color: rgba(0, 0, 0, 1) !important;
  background: rgba(0, 0, 0, 0.08);
}

.footer a.active {
  color: rgba(255, 255, 255, 1) !important;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

[data-theme="light"] .footer a.active {
  color: rgba(0, 0, 0, 1) !important;
  background: rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.2);
}

/* Partner Logo Link - ohne Pill-Styling */
.footer .partner-logo {
  padding: 0;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.footer .partner-logo:hover {
  background: none !important;
  transform: none !important;
}

.footer .col-md-4.text-center p {
  white-space: nowrap;
}

@media (max-width: 768px) {
  .footer .col-md-4 {
    text-align: center !important;
  }

  .footer .d-flex {
    justify-content: center;
  }

  /* Partner Logo volle Opacity auf Mobile */
  .partner-logo img {
    opacity: 1 !important;
  }

  /* Allow wrapping on mobile */
  .footer .col-md-4.text-center p {
    white-space: normal;
  }
}

/* Partner Logo Hover Effect */
.partner-logo svg {
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.partner-logo:hover svg {
  opacity: 1;
}

/* Partner Logo Text-Farbe with theme support */
.partner-logo svg .hubyte-text {
  fill: var(--hubyte-text-color);
  transition: fill 0.3s ease;
}

/* Partner Logo Box with theme support */
.partner-logo svg .hubyte-box {
  fill: var(--hubyte-box-color) !important;
  transition: fill 0.3s ease;
}

/* ===============================
   Buttons - Liquid Glass Style
   =============================== */
.btn-primary {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

[data-theme="light"] .btn-primary {
  /* background: rgba(0, 0, 0, 0.08); */
  border: 2px solid rgba(0, 0, 0, 0.25);
  color: #1a1a1a;
  text-shadow: none;
}

.btn-primary:hover {
  background: rgba(255, 255, 255, 0.25);
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

[data-theme="light"] .btn-primary:hover {
  /* background: rgba(0, 0, 0, 0.15); */
  border: 2px solid rgba(0, 0, 0, 0.4);
  color: #000000;
}

.btn-outline-primary {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.btn-outline-primary:hover {
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* ===============================
   Responsive Design
   =============================== */
@media (max-width: 768px) {
  .display-3 {
    font-size: 2.5rem;
  }

  .hero-image-placeholder {
    padding: 40px;
    margin-top: 30px;
  }

  .hero-image-placeholder i {
    font-size: 4rem;
  }

  .nav-link {
    margin: 5px 0;
  }
}

/* ===============================
   Lightbox
   =============================== */
.lightbox {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  animation: fadeIn 0.3s ease;
}

.lightbox.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from {
    transform: scale(0.5);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

#lightbox-img {
  max-width: 100%;
  max-height: 85vh;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: var(--transition);
  background: none;
  border: none;
  z-index: 10001;
}

.lightbox-close:hover {
  color: var(--primary-color);
  transform: rotate(90deg);
}

#lightbox-caption {
  color: white;
  text-align: center;
  padding: 15px;
  font-size: 1.1rem;
  margin-top: 10px;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  padding: 15px 20px;
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition);
  border-radius: 5px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.3);
}

.lightbox-prev {
  left: -60px;
}

.lightbox-next {
  right: -60px;
}

/* ===============================
   Tooltip für Fachbegriffe
   =============================== */
.tooltip-term {
  position: relative;
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-offset: 3px;
  cursor: help;
  color: inherit;
}

.tooltip-term::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: rgba(255, 255, 255, 0.95);
  color: #000000;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.875rem;
  line-height: 1.4;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 10000;
}

.tooltip-term:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-4px);
}

/* Tooltip-Pfeil */
.tooltip-term::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-2px);
  border: 6px solid transparent;
  border-top-color: rgba(255, 255, 255, 0.95);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  z-index: 1001;
}

.tooltip-term:hover::before {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(2px);
}

/* Tooltip bei langem Text umbrechen */
.tooltip-term.tooltip-multiline::after {
  white-space: normal;
  max-width: 250px;
  text-align: center;
}

@media (max-width: 768px) {
  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .lightbox-close {
    top: 10px;
    right: 10px;
  }

  .lightbox-content {
    max-width: 95%;
  }
}

/* ===============================
   Section Spacing & Scroll Snap
   =============================== */
section {
  scroll-snap-align: start;
  scroll-margin-top: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 80px 0;
}

.py-5 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

/* Section Styling */
section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 !important;
  background: transparent !important;
}

#home {
  background: transparent !important;
}

#features {
  background: transparent !important;
}

#services {
  background: transparent !important;
}

#contact {
  background: transparent !important;
  padding-bottom: 140px !important;
}

/* Large Section Glass Card Container */
.section-glass-container {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(60px) saturate(180%);
  -webkit-backdrop-filter: blur(60px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  padding: 4rem 3rem;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: visible;
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
}

.section-glass-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.03) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  border-radius: 30px;
  pointer-events: none;
}

@media (max-width: 1280px) {
  .section-glass-container {
    margin: 0 40px;
    width: calc(100% - 80px);
  }
}

@media (max-width: 768px) {
  .section-glass-container {
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    margin: 0 20px;
    width: calc(100% - 40px);
  }
}

/* ===============================
   Side Navigation - Liquid Glass Style
   =============================== */
.side-navigation {
  position: fixed;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1020;
  display: flex;
  flex-direction: column;
  gap: 15px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 25px;
  padding: 15px 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15),
    inset 0 2px 4px rgba(255, 255, 255, 0.4),
    inset 0 -2px 4px rgba(0, 0, 0, 0.1);
  overflow: visible;
}

.side-navigation::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 25px;
  padding: 2px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.5) 0%,
    rgba(255, 255, 255, 0.1) 25%,
    rgba(255, 255, 255, 0.05) 50%,
    rgba(255, 255, 255, 0.1) 75%,
    rgba(255, 255, 255, 0.5) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.6;
}

.side-nav-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  border: 2px solid transparent;
}

[data-theme="light"] .side-nav-dot {
  background: rgba(0, 0, 0, 0.4);
}

.side-nav-dot::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  opacity: 0;
}

.side-nav-dot:hover,
.side-nav-dot:focus {
  background: rgba(255, 255, 255, 0.7);
  transform: scale(1.3);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
  outline: none;
}

[data-theme="light"] .side-nav-dot:hover,
[data-theme="light"] .side-nav-dot:focus {
  background: rgba(0, 0, 0, 0.7);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.side-nav-dot:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.8);
  outline-offset: 4px;
}

[data-theme="light"] .side-nav-dot:focus-visible {
  outline: 2px solid rgba(0, 0, 0, 0.6);
}

.side-nav-dot.active {
  background: #ffffff;
  transform: scale(1.2);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

[data-theme="light"] .side-nav-dot.active {
  background: #1a1a1a;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.side-nav-dot.active::before {
  opacity: 1;
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
  animation: pulse-ring 2s ease-out infinite;
}

[data-theme="light"] .side-nav-dot.active::before {
  border-color: rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

@keyframes pulse-ring {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.15);
    opacity: 0.7;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}

.side-nav-dot::after {
  content: attr(data-tooltip);
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 12px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

[data-theme="light"] .side-nav-dot::after {
  background: rgba(255, 255, 255, 0.95);
  color: #1a1a1a;
  border-color: rgba(0, 0, 0, 0.15);
  text-shadow: none;
}

.side-nav-dot:hover::after {
  opacity: 1;
  visibility: visible;
  right: 35px;
}

@media (max-width: 991px) {
  .side-navigation {
    display: none;
  }
}

/* ===============================
   Contact Action Buttons - Liquid Glass Style
   =============================== */
.contact-action-bar {
  position: fixed;
  left: 50%;
  bottom: 102px; /* 72px footer height + 20px footer bottom + 10px gap */
  transform: translateX(-50%);
  width: 100%;
  max-width: 520px;
  z-index: 1035;
  padding: 0;
  min-height: 65px;
  padding: 0 !important;
}

.contact-action-bar > .container {
  width: 100%;
  max-width: 520px;
  padding: 0;
  margin: 0 auto;
  pointer-events: none;
}

.contact-action-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  pointer-events: auto;
}

.contact-action-buttons {
  @media screen and (min-width: 340px) {
    gap: 18px;
  }
}

.contact-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  text-decoration: none;
  transition: var(--transition);
  backdrop-filter: blur(40px) saturate(200%);
  -webkit-backdrop-filter: blur(40px) saturate(200%);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  position: relative;
  overflow: hidden;
}

.contact-action-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.35),
    rgba(255, 255, 255, 0.05) 45%,
    rgba(255, 255, 255, 0.15) 75%,
    rgba(255, 255, 255, 0)
  );
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}

.contact-action-btn:hover,
.contact-action-btn:focus {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  color: #ffffff;
}

.contact-action-btn:hover::before,
.contact-action-btn:focus::before {
  opacity: 1;
}

.contact-action-btn:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.8);
  outline-offset: 4px;
}

.contact-action-icon {
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.9);
  transition: var(--transition);
}

.contact-action-btn--email:hover .contact-action-icon {
  color: #c79a08;
}

.contact-action-btn--contact:hover .contact-action-icon {
  color: #9ac4ff;
}

.contact-action-btn--phone:hover .contact-action-icon {
  color: #4dd9ff;
}

.contact-action-btn--whatsapp:hover .contact-action-icon {
  color: #25d366;
}

.contact-action-btn--email .contact-action-icon,
.contact-action-btn--contact .contact-action-icon,
.contact-action-btn--phone .contact-action-icon,
.contact-action-btn--whatsapp .contact-action-icon {
  color: #f5f5f5;
}

[data-theme="light"] .contact-action-btn {
  border: 2px solid rgba(0, 0, 0, 0.2);
}

[data-theme="light"] .contact-action-btn--email .contact-action-icon,
[data-theme="light"] .contact-action-btn--contact .contact-action-icon,
[data-theme="light"] .contact-action-btn--phone .contact-action-icon,
[data-theme="light"] .contact-action-btn--whatsapp .contact-action-icon {
  color: #1a1a1a;
}

/* Light Mode Hover Colors */
[data-theme="light"] .contact-action-btn--email:hover .contact-action-icon {
  color: #d4a00e;
}

[data-theme="light"] .contact-action-btn--contact:hover .contact-action-icon {
  color: #5a9eeb;
}

[data-theme="light"] .contact-action-btn--phone:hover .contact-action-icon {
  color: #2ab8d9;
}

[data-theme="light"] .contact-action-btn--whatsapp:hover .contact-action-icon {
  color: #25d366;
}

.contact-action-btn:hover .contact-action-icon,
.contact-action-btn:focus .contact-action-icon {
  transform: scale(1.12);
}

.has-contact-bar {
  padding-bottom: 130px;
}

.footer-background {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

@media (max-width: 768px) {
  .has-contact-bar {
    padding-bottom: 115px;
  }
}

@media (min-width: 340px) {
  .contact-action-bar {
    bottom: 102px; /* 72px footer + 20px footer bottom + 10px gap */
  }

  .contact-action-btn {
    height: 50px;
    width: 50px;
  }
}

@media (min-width: 768px) {
  .contact-action-bar {
    bottom: 102px; /* 72px footer + 20px footer bottom + 10px gap */
  }
}

@media (max-width: 576px) {
  .has-contact-bar {
    padding-bottom: 110px;
  }
}

@media (max-width: 768px) {
  .contact-action-bar {
    bottom: 97px; /* 72px footer (auto height on mobile) + 15px footer bottom + 10px gap */
    max-width: 420px;
  }

  .contact-action-btn {
    width: 58px;
    height: 58px;
  }

  .contact-action-icon {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .contact-action-bar {
    bottom: 97px; /* 72px footer (min-height) + 15px footer bottom + 10px gap */
    max-width: calc(100% - 40px);
  }

  /* .contact-action-buttons {
    gap: 16px;
  } */

  .contact-action-btn {
    width: 56px;
    height: 56px;
  }

  .contact-action-icon {
    font-size: 1.45rem;
  }
}

/* ===============================
   Theme Toggle - Liquid Glass Button
   =============================== */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--glass-bg);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  border: 1px solid var(--glass-border);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px var(--glass-shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
  margin-left: 10px;
}

.theme-toggle::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.05) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  border-radius: 50%;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.theme-toggle:hover {
  transform: scale(1.08) translateY(-2px);
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.theme-toggle:hover::before {
  opacity: 1;
}

.theme-toggle:active {
  transform: scale(0.95);
}

.theme-icon {
  font-size: 1.3rem;
  color: var(--text-color);
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 2px 4px var(--shadow-color));
}

/* Dark Mode - Mond Icon Hover (Blau-Töne) */
.theme-toggle:hover .theme-icon.bi-moon-stars-fill {
  color: #6eb5ff;
  filter: drop-shadow(0 0 8px rgba(110, 181, 255, 0.6));
}

/* Light Mode - Sonnen Icon Hover (Gelb-Orange-Töne) */
[data-theme="light"] .theme-toggle:hover .theme-icon.bi-sun-fill {
  color: #ffa500;
  filter: drop-shadow(0 0 8px rgba(255, 165, 0, 0.6));
}

/* Icon Rotation Animation */
.theme-toggle.rotating .theme-icon {
  animation: rotateIcon 0.6s ease-in-out;
}

@keyframes rotateIcon {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(0.8);
    opacity: 0.5;
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}

/* Light Mode Adjustments */
[data-theme="light"] .theme-toggle {
  background: var(--glass-bg);
  border-color: var(--glass-border);
}

[data-theme="light"] .theme-toggle:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(0, 0, 0, 0.25);
}

[data-theme="light"] .theme-icon {
  /* color: #ffa500; */
  color: #252525;
}

/* Responsive */
@media (max-width: 991px) {
  .theme-toggle {
    width: 45px;
    height: 45px;
    margin-left: 0;
    margin-top: 10px;
  }

  .theme-icon {
    font-size: 1.2rem;
  }
}

/* Footer Text Colors for Light Mode */
.footer .text-muted {
  color: rgba(255, 255, 255, 0.6) !important;
  transition: color 0.3s ease;
}

[data-theme="light"] .footer .text-muted {
  color: rgba(0, 0, 0, 0.6) !important;
}

.footer p,
.footer .col-md-4.text-center p {
  color: rgba(255, 255, 255, 0.5) !important;
  transition: color 0.3s ease;
}

[data-theme="light"] .footer p,
[data-theme="light"] .footer .col-md-4.text-center p {
  color: rgba(0, 0, 0, 0.85) !important;
}

/* Light Mode Glass Border Adjustments */
[data-theme="light"] .navbar {
  border-color: rgba(0, 0, 0, 0.2) !important;
}

[data-theme="light"] .navbar::before {
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(0, 0, 0, 0.05) 25%,
    rgba(0, 0, 0, 0.02) 50%,
    rgba(0, 0, 0, 0.05) 75%,
    rgba(0, 0, 0, 0.15) 100%
  ) !important;
}

[data-theme="light"] .footer {
  border-color: rgba(0, 0, 0, 0.2) !important;
}

[data-theme="light"] .footer::before {
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(0, 0, 0, 0.05) 25%,
    rgba(0, 0, 0, 0.02) 50%,
    rgba(0, 0, 0, 0.05) 75%,
    rgba(0, 0, 0, 0.15) 100%
  ) !important;
}

[data-theme="light"] .side-navigation {
  border-color: rgba(0, 0, 0, 0.2);
}

[data-theme="light"] .side-navigation::before {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(0, 0, 0, 0.05) 25%,
    rgba(0, 0, 0, 0.02) 50%,
    rgba(0, 0, 0, 0.05) 75%,
    rgba(0, 0, 0, 0.15) 100%
  );
}
