/* @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600&display=swap'); */
/* Poppins Font Family - Multiple Weights */
@font-face {
  font-family: "Poppins";
  src: url(./assets/fonts/Poppins/Poppins-Regular.ttf);
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Poppins";
  src: url(./assets/fonts/Poppins/Poppins-Medium.ttf);
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Poppins";
  src: url(./assets/fonts/Poppins/Poppins-SemiBold.ttf);
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Poppins";
  src: url(./assets/fonts/Poppins/Poppins-Bold.ttf);
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Poppins";
  src: url(./assets/fonts/Poppins/Poppins-Black.ttf);
  font-weight: 900;
  font-style: normal;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: url("./assets/images/background.jpg") no-repeat;
  background-size: cover;
  background-position: center;
}

/* Hero Image */
.hero-image-container {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  animation: fadeIn 1s ease;
}

.hero-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(135, 206, 250, 0.6);
  box-shadow: 0 0 30px rgba(135, 206, 250, 0.6),
              0 0 60px rgba(135, 206, 250, 0.3),
              0 8px 25px rgba(0, 0, 0, 0.5);
  transition: all 0.4s ease;
  cursor: pointer;
}

.hero-image:hover {
  transform: scale(1.15);
  box-shadow: 0 0 40px rgba(135, 206, 250, 0.8),
              0 0 80px rgba(135, 206, 250, 0.5),
              0 12px 35px rgba(0, 0, 0, 0.6);
  border-color: rgba(135, 206, 250, 0.9);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 100px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  z-index: 99;
  transition: opacity 0.2s ease-in-out;
}


.logo {
  border-radius: 25px;
  position: absolute;
  left: 100px;
}

.navigation a {
  position: relative;
  font-size: 1.1em;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  margin-left: 40px;
}

.navigation a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 3px;
  background: #fff;
  border-radius: 5px;
  transform-origin: right;
  transform: scaleX(0);
  transition: transform 0.5s;
}

.navigation a:hover::after {
  transform-origin: left;
  transform: scaleX(1);
}

.navigation .btnLogin-popup {
  width: 130px;
  height: 50px;
  background: transparent;
  border: none;
  outline: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1.1em;
  color: rgba(135, 206, 250, 1);
  font-weight: 500;
  margin-left: 40px;
  transition: 0.3s;
  text-shadow: 0 0 15px rgba(135, 206, 250, 0.6),
               0 0 30px rgba(135, 206, 250, 0.4);
}

.navigation .btnLogin-popup:hover {
  color: rgba(135, 206, 250, 1);
  text-shadow: 0 0 20px rgba(135, 206, 250, 0.8),
               0 0 40px rgba(135, 206, 250, 0.6);
}

/*--------------------------------------Loginpage----------------------------------------*/
.wrapper {
  position: relative;
  width: 400px;
  height: 440px;
  background: transparent;
  border: solid 2px rgb(255, 255, 255);
  border-radius: 20px;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 255, 255, 0.3), 0 0 40px rgba(255, 255, 255, 0.2), 0 0 60px rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transform: scale(0);
  transition: transform 0.5s ease, height 0.2s ease;
}

.wrapper.active-popup {
  transform: scale(1);
}

.wrapper.active {
  height: 520px;
}

.wrapper .form-box {
  width: 100%;
  padding: 40px;
}

.wrapper .form-box.login {
  transition: transform 0.38s ease;
  transform: translateX(0);
}

.wrapper.active .form-box.login {
  transition: none;
  transform: translateX(-400px);
}

.wrapper .form-box.register {
  position: absolute;
  transition: none;
  transform: translateX(400px);
}

.wrapper.active .form-box.register {
  transition: transform 0.38s ease;
  transform: translateX(0);
}


.form-box h2 {
  font-size: 2em;
  color: #fff;
  text-align: center;
}

.input-box {
  position: relative;
  width: 100%;
  height: 50px;
  border-bottom: 2px solid #fff;
  margin: 30px 0;
}

.input-box label {
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
  font-size: 1em;
  color: #fff;
  font-weight: 500;
  pointer-events: none;
  transition: 0.5s;
}

.input-box input:focus ~ label,
.input-box input:valid ~ label {
  top: -5px;
}

.input-box input {
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  outline: none;
  font-size: 1em;
  color: #fff;
  font-weight: 600;
  padding: 0 35px 0 5px;
}

.input-box .icon {
  position: absolute;
  right: 8px;
  font-size: 1, 2em;
  color: #fff;
  line-height: 57px;
}

.remember-forgot {
  font-size: 0.9em;
  color: #fff;
  font-weight: 500;
  margin: -15px o 15px;
  display: flex;
  justify-content: space-between;
}

.remember-forgot label input {
  accent-color: #162938;
  margin-right: 5px;
}

.remember-forgot a {
  color: #fff;
  text-decoration: none;
}

.remember-forgot a:hover {
  text-decoration: underline;
}

.btn {
  width: 100%;
  height: 45px;
  background: #162938;
  border: none;
  outline: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1em;
  color: #fff;
  font-weight: 500;
}

.login-register {
  font-size: 0.9em;
  color: #fff;
  text-align: center;
  font-weight: 500;
  margin: 25px 0 10px;
}

.login-register p a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.login-register p a:hover {
  text-decoration: underline;
}

/* -------------------------------------Main-------------------------------------------*/
.home {
  position: absolute;
  margin-top: 450px;
  margin-bottom: 375px;
  width: 900px;
  height: 80vh;
  background: transparent;
  border: solid 2px rgb(255, 255, 255);
  border-radius: 20px;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 255, 255, 0.3), 0 0 40px rgba(255, 255, 255, 0.2), 0 0 60px rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  overflow: hidden;
  transform: scale(0);
  transition: transform 0.9s ease, height 0.2s ease;
}

.ifrm_home {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background-color: transparent;
}

.home.active {
  transform: scale(1);
}


/* -------------------------------------Remember-------------------------------------------*/
.ifrm_remember {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background-color: transparent;
}

.remember {
  position: absolute;
  margin-top: 100px;
  margin-bottom: 0px;
  width: 40vw;
  height: 80vh;
  background: transparent;
  border: solid 2px rgb(255, 255, 255);
  border-radius: 20px;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 255, 255, 0.3), 0 0 40px rgba(255, 255, 255, 0.2), 0 0 60px rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 4;
  overflow: hidden;
  transform: scale(0);
  transition: transform 0.9s ease, height 0.2s ease;
}

.remember.active {
  transform: scale(1);
}


/* -------------------------------------gallery-------------------------------------------*/
.gallery {
  position: absolute;
  display: flex;
  justify-content: center;
  margin-top: 100px;
  margin-bottom: 0px;
  width: 1100px;
  height: 900px;
  background: transparent;
  border: solid 2px rgb(255, 255, 255);
  border-radius: 20px;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 255, 255, 0.3), 0 0 40px rgba(255, 255, 255, 0.2), 0 0 60px rgba(255, 255, 255, 0.1);
  overflow: hidden;
  transform: scale(0);
  transition: transform 0.9s ease, height 0.2s ease;
}

.ifrm_gallery {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background-color: transparent;
}

.gallery.active {
  transform: scale(1);
}


/* -------------------------------------kondulenzbook-------------------------------------------*/
.kondulenzbook {
  position: absolute;
  margin-top: 100px;
  margin-bottom: 0px;
  width: 92vw;
  height: 80vh;
  background: transparent;
  border: solid 2px rgb(255, 255, 255);
  border-radius: 20px;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 255, 255, 0.3), 0 0 40px rgba(255, 255, 255, 0.2), 0 0 60px rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 6;
  overflow: hidden;
  transform: scale(0);
  transition: transform 0.9s ease, height 0.2s ease;
}

.kondulenzbook.active {
  transform: scale(1);
}

.ifrm_kondolenz {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background-color: transparent;
}


/* -------------------------------------Konntakt-------------------------------------------*/
.contakt {
  color: #fff;
  position: absolute;
  margin-top: 0px;
  margin-bottom: 0px;
  width: 450px;
  height: 990px;
  background: transparent;
  border: solid 2px rgb(255, 255, 255);
  border-radius: 20px;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 255, 255, 0.3), 0 0 40px rgba(255, 255, 255, 0.2), 0 0 60px rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 6;
  overflow: hidden;
  transform: scale(0);
  transition: transform 0.9s ease, height 0.2s ease;
}

.ifrm_contakt {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background-color: transparent;
}

.contakt.active {
  transform: scale(1);
}


.contakt form {
  width: 95%;
  height: 95%;
  margin-top: 50px;
  margin-left: 25px;
  margin-right: 25px;
  outline: none;
}
.contakt form legend {
  font-size: 24px;
}
.contakt form label {
  margin-top: 25px;
  font-size: 1em;
  color: #fff;
  font-weight: 500;
  pointer-events: none;
}
.contakt form input {
  width: 100%;
  height: 100%;
  background: transparent;
  outline: none;
  border: none;
  font-size: 1em;
  color: #fff;
  font-weight: 600;
}
.contakt form inputspam {
  display: flex;
  justify-content: space-between;
}
.contakt form textarea {
  margin-top: 20px;
  width: 100%;
  max-width: 100%;
  height: 25vh;
  background-color: transparent;
  color: #fff;
}
.contakt form button {
  width: 100%;
  height: 45px;
  margin-top: 20px;
  background: #162938;
  border: none;
  outline: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1em;
  color: #fff;
  font-weight: 500;
}

/* -------------------------------------Impressum-------------------------------------------*/
.impressum {
  position: absolute;
  margin-top: 100px;
  margin-bottom: 0px;
  width: 65vw;
  height: 80vh;
  background: transparent;
  border: solid 2px rgb(255, 255, 255);
  border-radius: 20px;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 255, 255, 0.3), 0 0 40px rgba(255, 255, 255, 0.2), 0 0 60px rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 8;
  overflow: hidden;
  transform: scale(0);
  transition: transform 0.9s ease, height 0.2s ease;
}

.ifrm_impressum {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background-color: transparent;
}

.impressum.active {
  transform: scale(1);
}


/* -------------------------------------Footer-------------------------------------------*/
footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 4px 100px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  z-index: 99;
  background: rgba(255, 255, 255, 0.15);
  border-top: solid 2px rgb(255, 255, 255);
  backdrop-filter: blur(20px);
  box-shadow:
    0 -10px 30px rgba(0, 0, 0, 0.5),
    0 0 20px rgba(255, 255, 255, 0.3),
    0 0 40px rgba(255, 255, 255, 0.2),
    0 0 60px rgba(255, 255, 255, 0.1);
}

.footer_navigation a {
  position: relative;
  font-size: 0.9em;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  margin-left: 40px;
}

.footer_navigation a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 3px;
  background: #fff;
  border-radius: 5px;
  transform-origin: right;
  transform: scaleX(0);
  transition: transform 0.5s;
}

.footer_navigation a:hover::after {
  transform-origin: left;
  transform: scaleX(1);
}

/* ================================================================================
   RESPONSIVE DESIGN - Media Queries
   ================================================================================ */

/* Tablet (768px - 1024px) */
@media screen and (max-width: 1024px) {
  header {
    padding: 20px 50px;
  }

  .navigation a {
    margin-left: 25px;
    font-size: 1em;
  }

  .navigation .btnLogin-popup {
    width: 110px;
    height: 45px;
    margin-left: 25px;
  }

  .home {
    width: 85vw;
    height: 65vh;
  }

  .remember {
    width: 60vw;
  }

  .gallery {
    width: 85vw;
    height: 80vh;
  }

  .impressum {
    width: 75vw;
  }

  .kondulenzbook {
    width: 90vw;
  }

  footer {
    padding: 4px 50px;
  }
}

/* Mobile Landscape & Small Tablets (481px - 767px) */
@media screen and (max-width: 767px) {
  /* Hero Image - zurück zur ursprünglichen Position */
  .hero-image-container {
    top: 45px;
  }

  header {
    padding: 8px 10px !important;
    flex-wrap: wrap !important;
    justify-content: flex-start !important;
    z-index: 101 !important;
  }

  .navigation {
    margin: 0 !important;
    width: 100% !important;
    display: flex !important;
    justify-content: flex-start !important;
    flex-wrap: wrap !important;
  }

  .navigation {
    width: 100%;
    margin-top: 15px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }

  .navigation a {
    margin: 5px 10px;
    font-size: 0.9em;
  }

  .navigation .btnLogin-popup {
    width: 100px;
    height: 40px;
    margin: 5px 10px;
    font-size: 0.9em;
  }

  /* Login/Register Popup */
  .wrapper {
    width: 90vw;
    max-width: 380px;
    height: auto;
    min-height: 400px;
  }

  .wrapper.active {
    height: auto;
    min-height: 480px;
  }

  .wrapper .form-box {
    padding: 30px 25px;
  }

  .form-box h2 {
    font-size: 1.6em;
  }

  .input-box {
    margin: 25px 0;
  }

  /* Popups/Overlays */
  .home {
    width: 95vw;
    height: 65vh;
    margin-top: 300px;
  }

  .remember {
    width: 95vw;
    height: 85vh;
    margin-top: 150px;
  }

  .gallery {
    width: 95vw;
    height: 85vh;
    margin-top: 150px;
  }

  .kondulenzbook {
    width: 95vw;
    height: 85vh;
    margin-top: 150px;
  }


  .impressum {
    width: 95vw;
    height: 85vh;
    margin-top: 150px;
  }

  .contakt {
    width: 95vw;
    max-width: 400px;
    height: auto;
    min-height: 500px;
  }

  .contakt form {
    margin: 40px 15px 15px 15px;
  }

  .contakt form legend {
    font-size: 20px;
  }

  .contakt form textarea {
    height: 20vh;
  }

  /* Footer */
  footer {
    padding: 4px 20px;
    justify-content: center;
    top: auto;
    bottom: 0;
  }

  .footer_navigation a {
    margin-left: 15px;
    font-size: 0.75em;
  }
}

/* Mobile Portrait (max 480px) */
@media screen and (max-width: 480px) {
  /* Hero Image - zurück zur ursprünglichen Position */
  .hero-image-container {
    top: 45px !important;
  }

  header {
    padding: 5px 5px !important;
    justify-content: flex-start !important;
    z-index: 101 !important;
  }

  .navigation {
    margin: 0 !important;
    width: 100% !important;
    display: flex !important;
    justify-content: flex-start !important;
    flex-wrap: wrap !important;
    align-items: center !important;
  }

  .navigation a {
    margin: 5px 4px !important;
    font-size: 0.7em !important;
    padding: 5px 6px;
  }

  .navigation .btnLogin-popup {
    width: 70px !important;
    height: 32px !important;
    font-size: 0.65em !important;
    margin: 5px 4px !important;
    padding: 5px !important;
    border: none !important;
    color: rgba(135, 206, 250, 1) !important;
  }

  /* Login/Register */
  .wrapper {
    width: 95vw;
  }

  .wrapper .form-box {
    padding: 25px 20px;
  }

  .form-box h2 {
    font-size: 1.4em;
  }

  .input-box {
    margin: 20px 0;
    height: 45px;
  }

  .input-box label {
    font-size: 0.9em;
  }

  .input-box input {
    font-size: 0.9em;
  }

  .remember-forgot {
    font-size: 0.8em;
    flex-direction: column;
    gap: 10px;
  }

  .btn {
    height: 40px;
    font-size: 0.9em;
  }

  /* Overlays auf volle Breite */
  .home,
  .remember,
  .gallery,
  .kondulenzbook,
  .impressum {
    width: 98vw;
    height: 65vh;
    margin-top: 100px;
    margin-bottom: 2px;
    border-radius: 15px;
  }

  .contakt {
    width: 98vw;
    height: 65vh;
    margin-top: 100px;
    margin-bottom: 2px;
    border-radius: 15px;
  }

  .contakt form {
    margin: 35px 10px 10px 10px;
  }

  .contakt form legend {
    font-size: 18px;
  }

  .contakt form label {
    margin-top: 15px;
    font-size: 0.9em;
  }

  .contakt form input {
    font-size: 0.9em;
  }

  .contakt form textarea {
    height: 18vh;
    font-size: 0.9em;
  }

  .contakt form button {
    height: 40px;
    font-size: 0.9em;
  }


  /* Footer */
  footer {
    padding: 4px 10px;
    flex-wrap: wrap;
  }

  .footer_navigation a {
    margin: 3px 8px;
    font-size: 0.65em;
  }
}

/* ================================================================================
   CUSTOM MESSAGE POPUP
   ================================================================================ */

/* Overlay */
.custom-message-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.custom-message-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.custom-message-overlay.fade-out {
  opacity: 0;
}

/* Message Box */
.custom-message-box {
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  padding: 30px 40px;
  min-width: 440px;
  max-width: 625px;
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5),
              0 0 30px rgba(135, 206, 250, 0.3),
              inset 0 0 20px rgba(255, 255, 255, 0.1);
  text-align: center;
  animation: slideDown 0.3s ease;
}

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

/* Icon */
.custom-message-icon {
  font-size: 50px;
  margin-bottom: 20px;
  text-shadow: 0 0 20px rgba(135, 206, 250, 0.8);
}

.custom-message-icon.success::before { content: '✓'; color: #4ade80; }
.custom-message-icon.error::before { content: '✕'; color: #f87171; }
.custom-message-icon.info::before { content: 'ⓘ'; color: #60a5fa; }
.custom-message-icon.confirm::before { content: '?'; color: #fbbf24; }

/* Text */
.custom-message-text {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 25px;
  line-height: 1.5;
}

/* Buttons */
.custom-message-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.custom-message-btn {
  padding: 10px 30px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}

.custom-message-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 20px rgba(135, 206, 250, 0.5);
  transform: translateY(-2px);
}

.custom-message-btn.confirm {
  background: rgba(135, 206, 250, 0.2);
  border-color: rgba(135, 206, 250, 0.8);
}

.custom-message-btn.confirm:hover {
  background: rgba(135, 206, 250, 0.3);
  box-shadow: 0 0 25px rgba(135, 206, 250, 0.8);
}

.custom-message-btn.cancel {
  background: rgba(248, 113, 113, 0.2);
  border-color: rgba(248, 113, 113, 0.8);
}

.custom-message-btn.cancel:hover {
  background: rgba(248, 113, 113, 0.3);
  box-shadow: 0 0 25px rgba(248, 113, 113, 0.8);
}

/* Hide cancel button when not needed */
.custom-message-buttons.single-button .cancel {
  display: none;
}

/* Responsive */
@media (max-width: 767px) {
  .custom-message-box {
    min-width: 280px;
    padding: 25px 30px;
  }

  .custom-message-text {
    font-size: 16px;
  }

  .custom-message-btn {
    padding: 8px 20px;
    font-size: 14px;
  }
}

/* ================================================================================
   USER MENU DROPDOWN (Burger Menu)
   ================================================================================ */

.user-menu-dropdown {
  position: fixed;
  top: 70px;
  right: 100px;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 15px;
  padding: 0;
  min-width: 220px;
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5),
              0 0 30px rgba(135, 206, 250, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  overflow: hidden;
}

.user-menu-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.user-menu-header {
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(135, 206, 250, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.user-menu-icon {
  font-size: 1.5em;
}

.user-menu-name {
  font-size: 1.05em;
  font-weight: 500;
  color: rgba(135, 206, 250, 0.95);
}

.user-menu-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 0.25rem 0;
}

.user-menu-item {
  display: block;
  padding: 0.9rem 1rem;
  color: #fff;
  text-decoration: none;
  font-size: 1em;
  transition: all 0.3s ease;
  cursor: pointer;
}

.user-menu-item:hover {
  background: rgba(135, 206, 250, 0.2);
}

.user-menu-item.logout {
  color: rgba(248, 113, 113, 0.95);
}

.user-menu-item.logout:hover {
  background: rgba(248, 113, 113, 0.2);
}

/* ================================================================================
   PASSWORD CHANGE POPUP
   ================================================================================ */

.password-change-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 9999;
}

.password-change-overlay.active {
  opacity: 1;
  visibility: visible;
}

.password-change-box {
  position: relative;
  width: 400px;
  background: transparent;
  border: 2px solid rgb(255, 255, 255);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5),
              0 0 20px rgba(255, 255, 255, 0.3),
              0 0 40px rgba(255, 255, 255, 0.2),
              0 0 60px rgba(255, 255, 255, 0.1);
  padding: 40px 40px 30px;
  transform: scale(0.9);
  transition: transform 0.4s ease;
}

.password-change-overlay.active .password-change-box {
  transform: scale(1);
}

.password-change-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2em;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.password-change-close:hover {
  color: rgba(135, 206, 250, 1);
  transform: rotate(90deg);
}

.password-change-box h2 {
  font-size: 2em;
  color: #fff;
  text-align: center;
  margin-bottom: 1.5rem;
}

.password-change-box .input-box {
  position: relative;
  width: 100%;
  height: 50px;
  border-bottom: 2px solid #fff;
  margin: 30px 0;
}

.password-change-box .input-box label {
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
  font-size: 1em;
  color: #fff;
  font-weight: 500;
  pointer-events: none;
  transition: .5s;
}

.password-change-box .input-box input:focus ~ label,
.password-change-box .input-box input:valid ~ label {
  top: -5px;
}

.password-change-box .input-box input {
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  outline: none;
  font-size: 1em;
  color: #fff;
  font-weight: 600;
  padding: 0 35px 0 5px;
}

.password-change-box .input-box .icon {
  position: absolute;
  right: 8px;
  font-size: 1.2em;
  color: #fff;
  line-height: 57px;
}

.password-change-box .btn {
  width: 100%;
  height: 45px;
  background: #fff;
  border: none;
  outline: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1em;
  color: #162938;
  font-weight: 500;
  margin-top: 1.5rem;
  transition: all 0.3s ease;
}

.password-change-box .btn:hover {
  background: rgba(135, 206, 250, 1);
  box-shadow: 0 0 20px rgba(135, 206, 250, 0.6);
}

/* ================================================================================
   CUSTOM SCROLLBAR - Nur in iframes definiert
   Siehe: iframe/style.css für Scrollbar-Styling
   ================================================================================ */

/*# sourceMappingURL=style.css.map */