@font-face {
  font-family: Poppins;
  src: url(../assets/fonts/Poppins/Poppins-Black.ttf);
}
* {
  font-family: "Poppins", sans-serif;
}

/* ================================================================================
   CUSTOM SCROLLBAR - Eisblau mit Glow (für iframe-Inhalte)
   ================================================================================ */

*::-webkit-scrollbar {
  width: 4px !important;
}

/* Pfeile ausblenden */
*::-webkit-scrollbar-button {
  display: none;
  width: 0;
  height: 0;
}

*::-webkit-scrollbar-track {
  background: transparent;
  width: 4px;
}

*::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(224, 255, 255, 0.95), rgba(176, 224, 230, 1));
  border-radius: 10px;
  box-shadow:
    0 0 5px rgba(0, 255, 255, 0.4),
    0 0 15px rgba(135, 206, 250, 0.8),
    0 0 25px rgba(135, 206, 250, 0.6),
    0 0 40px rgba(135, 206, 250, 0.4),
    inset 0 0 8px rgba(255, 255, 255, 0.6);
}

*::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(240, 255, 255, 1), rgba(0, 255, 255, 0.9));
  box-shadow:
    0 0 8px rgba(0, 255, 255, 0.6),
    0 0 20px rgba(135, 206, 250, 1),
    0 0 35px rgba(135, 206, 250, 0.8),
    0 0 50px rgba(135, 206, 250, 0.6),
    inset 0 0 10px rgba(255, 255, 255, 0.8);
}

html, body {
  scrollbar-width: thin;
  scrollbar-color: rgba(176, 224, 230, 1) rgba(0, 0, 0, 0.2);
}

/* ================================================================================
   LIGHTBOX
   ================================================================================ */

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

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-image {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 0 50px rgba(255, 255, 255, 0.3);
  transform: scale(0.9);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.lightbox.active .lightbox-image {
  transform: scale(1);
  opacity: 1;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 50px;
  font-size: 50px;
  color: white;
  cursor: pointer;
  z-index: 10000;
  transition: 0.3s;
}

.lightbox-close:hover {
  color: rgba(135, 206, 250, 1);
  text-shadow: 0 0 20px rgba(135, 206, 250, 0.8);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 60px;
  color: white;
  cursor: pointer;
  padding: 20px;
  user-select: none;
  transition: 0.3s;
  z-index: 10000;
}

.lightbox-prev {
  left: 30px;
}

.lightbox-next {
  right: 30px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  color: rgba(135, 206, 250, 1);
  text-shadow: 0 0 20px rgba(135, 206, 250, 0.8);
}

.lightbox-counter {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 18px;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px 20px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

/* ================================================================================
   KONDOLENZBUCH - Design-konform mit aktuellem Theme
   ================================================================================ */

.kondolenz-container {
  padding: 1.5rem 1rem;
  width: 100%;
  max-width: 100%;
  color: #fff;
  overflow-x: hidden;
  box-sizing: border-box;
}

/* Header */
.kondolenz-header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem 1rem;
  animation: fadeIn 1s ease;
}

.kondolenz-header-icon {
  font-size: 4em;
  margin-bottom: 1rem;
  text-shadow: 0 0 30px rgba(135, 206, 250, 0.6);
  animation: pulse 2s ease-in-out infinite;
}

.kondolenz-header-title {
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, rgba(135, 206, 250, 1), rgba(135, 206, 250, 0.7));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1px;
}

.kondolenz-header-subtitle {
  font-size: 1.1em;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
  margin: 0;
}

.kondolenz-heading {
  font-size: 2em;
  color: #fff;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

/* Formular */
.kondolenz-form-section {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 20px rgba(135, 206, 250, 0.2);
}

.kondolenz-form .form-group {
  margin-bottom: 1.5rem;
}

.kondolenz-form label {
  display: block;
  margin-bottom: 0.5rem;
  color: #fff;
  font-weight: 500;
  font-size: 1.05em;
}

.kondolenz-form input[type="text"],
.kondolenz-form select {
  width: 100%;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 1.05em;
  transition: all 0.3s;
}

.kondolenz-form input[type="text"]::placeholder {
  color: rgba(255, 255, 255, 0.35);
  opacity: 1;
}

.kondolenz-form input[type="text"]:focus,
.kondolenz-form select:focus {
  outline: none;
  border-color: rgba(135, 206, 250, 0.8);
  box-shadow: 0 0 15px rgba(135, 206, 250, 0.4);
}

/* Checkbox Gruppe */
.kondolenz-form .checkbox-group label {
  display: flex !important;
  align-items: center;
  cursor: pointer;
  user-select: none;
  margin-bottom: 0;
}

.checkbox-group input[type="checkbox"] {
  width: auto !important;
  height: auto !important;
  padding: 0 !important;
  margin-right: 0.5rem;
  cursor: pointer;
  accent-color: rgba(135, 206, 250, 0.8);
  flex-shrink: 0;
}

.checkbox-group span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95em;
}

/* Trix Editor Anpassung */
trix-editor {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 1rem;
  color: #fff;
  min-height: 200px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1em;
  line-height: 1.6;
  transition: all 0.3s;
}

trix-editor:focus {
  outline: none;
  border-color: rgba(135, 206, 250, 0.8);
  box-shadow: 0 0 15px rgba(135, 206, 250, 0.4);
}

trix-toolbar {
  background: rgba(22, 41, 56, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px 8px 0 0;
  margin-bottom: -1px;
}

trix-toolbar .trix-button-group {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.2);
}

trix-toolbar .trix-button {
  background: transparent !important;
  border: none !important;
  color: #fff !important;
  /* Invertiere schwarze Icons zu weiß */
  filter: invert(1) brightness(2) !important;
}

trix-toolbar .trix-button:hover,
trix-toolbar .trix-button.trix-active {
  background: rgba(135, 206, 250, 0.3) !important;
  color: #fff !important;
}

/* Trix button icons */
trix-toolbar .trix-button--icon::before {
  opacity: 1;
}

trix-toolbar .trix-button:disabled {
  opacity: 0.3;
}

/* Trix Dialogs und Dropdowns - dunkles Theme */
trix-toolbar .trix-dialog {
  background: rgba(22, 41, 56, 0.95) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  border-radius: 8px !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4) !important;
}

trix-toolbar .trix-dialog__link-fields {
  background: transparent !important;
}

trix-toolbar .trix-dialog input[type="text"],
trix-toolbar .trix-dialog input[type="url"] {
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  color: #fff !important;
  border-radius: 6px !important;
  padding: 0.5rem !important;
}

trix-toolbar .trix-dialog input[type="text"]::placeholder,
trix-toolbar .trix-dialog input[type="url"]::placeholder {
  color: rgba(255, 255, 255, 0.4) !important;
}

trix-toolbar .trix-dialog .trix-button {
  background: rgba(135, 206, 250, 0.2) !important;
  border: 1px solid rgba(135, 206, 250, 0.4) !important;
  color: #fff !important;
  filter: none !important;
  border-radius: 6px !important;
  padding: 0.5rem 1rem !important;
}

trix-toolbar .trix-dialog .trix-button:hover {
  background: rgba(135, 206, 250, 0.3) !important;
  border-color: rgba(135, 206, 250, 0.6) !important;
}

/* Native Select verstecken */
.kondolenz-form select#fontFamily {
  display: none;
}

/* Custom Dropdown Container */
.custom-dropdown {
  position: relative;
  width: 100%;
}

/* Custom Dropdown Button */
.custom-dropdown-button {
  width: 100%;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 1.05em;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.custom-dropdown-button:hover {
  border-color: rgba(135, 206, 250, 0.8);
  background: rgba(255, 255, 255, 0.08);
}

.custom-dropdown-button.active {
  border-color: rgba(135, 206, 250, 0.8);
  box-shadow: 0 0 15px rgba(135, 206, 250, 0.4);
}

.custom-dropdown-arrow {
  font-size: 0.8em;
  transition: transform 0.3s;
}

.custom-dropdown-button.active .custom-dropdown-arrow {
  transform: rotate(180deg);
}

/* Custom Dropdown Menu */
.custom-dropdown-menu {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  width: 100%;
  background: rgba(22, 41, 56, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  z-index: 1000;
  max-height: 250px;
  overflow-y: auto;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: all 0.3s ease;
}

.custom-dropdown-menu.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

/* Custom Dropdown Items */
.custom-dropdown-item {
  padding: 0.75rem;
  color: #fff;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Poppins', sans-serif;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.custom-dropdown-item:last-child {
  border-bottom: none;
}

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

.custom-dropdown-item.selected {
  background: rgba(135, 206, 250, 0.3);
  font-weight: 500;
}

/* Scrollbar für Dropdown */
.custom-dropdown-menu::-webkit-scrollbar {
  width: 8px;
}

.custom-dropdown-menu::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}

.custom-dropdown-menu::-webkit-scrollbar-thumb {
  background: rgba(135, 206, 250, 0.5);
  border-radius: 4px;
}

.custom-dropdown-menu::-webkit-scrollbar-thumb:hover {
  background: rgba(135, 206, 250, 0.7);
}

/* Buttons */
.form-actions,
.form-actions-with-toggle {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.5rem;
  align-items: center;
  flex-wrap: nowrap;
}

/* Visibility Button */
.btn-visibility {
  padding: 0.6rem 1rem;
  border: 2px solid rgba(248, 113, 113, 0.6);
  border-radius: 8px;
  background: rgba(248, 113, 113, 0.2);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95em;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 0 15px rgba(248, 113, 113, 0.4);
}

.btn-visibility[data-public="true"] {
  background: rgba(74, 222, 128, 0.2);
  border-color: rgba(74, 222, 128, 0.6);
  box-shadow: 0 0 15px rgba(74, 222, 128, 0.4);
}

.btn-visibility:hover {
  transform: scale(1.05);
}

.btn-visibility[data-public="false"]:hover {
  background: rgba(248, 113, 113, 0.3);
  box-shadow: 0 0 20px rgba(248, 113, 113, 0.6);
}

.btn-visibility[data-public="true"]:hover {
  background: rgba(74, 222, 128, 0.3);
  box-shadow: 0 0 20px rgba(74, 222, 128, 0.6);
}

.visibility-icon {
  font-size: 1em;
  line-height: 1;
}

.visibility-text {
  font-size: 0.9em;
}

.btn-primary,
.btn-secondary {
  padding: 0.6rem 1rem;
  border: none;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95em;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-primary {
  background: #162938;
  color: #fff;
}

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

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

.btn-draft {
  padding: 0.6rem 1rem;
  border: 1px solid rgba(251, 191, 36, 0.5);
  border-radius: 8px;
  background: rgba(251, 191, 36, 0.1);
  color: rgba(251, 191, 36, 1);
  font-family: 'Poppins', sans-serif;
  font-size: 0.95em;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-draft:hover {
  background: rgba(251, 191, 36, 0.2);
  box-shadow: 0 0 20px rgba(251, 191, 36, 0.4);
}

/* Statistiken */
.stats-section {
  margin-bottom: 1rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 0.5rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 0.75rem;
  text-align: center;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(135, 206, 250, 0.5);
  box-shadow: 0 0 15px rgba(135, 206, 250, 0.3);
  transform: translateY(-2px);
}

.stat-icon {
  font-size: 1.5em;
  margin-bottom: 0.25rem;
}

.stat-value {
  font-size: 1.5em;
  font-weight: 700;
  color: rgba(135, 206, 250, 0.9);
  margin-bottom: 0.15rem;
  text-shadow: 0 0 10px rgba(135, 206, 250, 0.5);
}

.stat-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.7em;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* User Tabs */
.user-tabs-section {
  margin-bottom: 2rem;
}

.user-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.user-tab {
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: all 0.3s;
}

.user-tab:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(135, 206, 250, 0.5);
}

.user-tab.active {
  background: rgba(135, 206, 250, 0.3);
  border-color: rgba(135, 206, 250, 0.8);
  box-shadow: 0 0 15px rgba(135, 206, 250, 0.4);
}

/* Einträge */
.entries-container {
  display: none;
}

.entries-container.active {
  display: block;
}

.entry {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 20px rgba(135, 206, 250, 0.1);
  transition: all 0.3s;
}

.entry:hover {
  box-shadow: 0 0 25px rgba(135, 206, 250, 0.3);
  transform: translateY(-2px);
}

.entry-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.entry-title {
  font-size: 1.5em;
  color: rgba(135, 206, 250, 0.9);
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.entry-meta {
  flex: 1;
}

.entry-author {
  color: #fff;
  font-size: 1em;
  margin-bottom: 0.25rem;
}

.entry-date {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95em;
}

/* Entry Badges */
.entry-badge {
  display: inline-block;
  padding: 0.25rem 0.6rem;
  margin-left: 0.5rem;
  border-radius: 12px;
  font-size: 0.75em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.entry-badge.draft {
  background: rgba(251, 191, 36, 0.2);
  border: 1px solid rgba(251, 191, 36, 0.5);
  color: rgba(251, 191, 36, 1);
}

.entry-badge.private {
  background: rgba(248, 113, 113, 0.2);
  border: 1px solid rgba(248, 113, 113, 0.5);
  color: rgba(248, 113, 113, 1);
}

.entry-actions {
  display: flex;
  gap: 0.5rem;
}

.action-btn {
  padding: 0.5rem 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: #fff;
  font-size: 0.85em;
  cursor: pointer;
  transition: all 0.3s;
}

.action-btn:hover {
  background: rgba(135, 206, 250, 0.2);
  border-color: rgba(135, 206, 250, 0.5);
}

.action-btn.publish {
  background: rgba(74, 222, 128, 0.1);
  border-color: rgba(74, 222, 128, 0.5);
  color: rgba(74, 222, 128, 1);
}

.action-btn.publish:hover {
  background: rgba(74, 222, 128, 0.2);
  border-color: rgba(74, 222, 128, 0.8);
}

.action-btn.delete {
  background: rgba(255, 0, 0, 0.1);
  border-color: rgba(255, 0, 0, 0.3);
}

.action-btn.delete:hover {
  background: rgba(255, 0, 0, 0.2);
  border-color: rgba(255, 0, 0, 0.5);
}

.entry-content {
  color: #fff;
  line-height: 1.7;
  font-size: 1.15em;
}

.no-entries {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  padding: 3rem;
  font-size: 1.1em;
}

/* Bearbeitungs-Modal */
.edit-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 10000;
  justify-content: center;
  align-items: center;
}

.edit-modal.active {
  display: flex;
}

.edit-modal-content {
  background: rgba(22, 41, 56, 0.95);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  padding: 2rem;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  backdrop-filter: blur(20px);
  box-shadow: 0 0 40px rgba(135, 206, 250, 0.3);
}

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

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

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

/* ===============================================================================================
   REMEMBER PAGE (ERINNERUNG)
   =============================================================================================== */

.remember {
  padding: 2rem 1.5rem;
  max-width: 900px;
  margin: 0 auto;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

/* Header */
.remember-header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem;
  animation: fadeIn 1s ease;
}

.remember-header-icon {
  font-size: 4em;
  margin-bottom: 1rem;
  animation: pulse 2s infinite;
  text-shadow: 0 0 30px rgba(255, 192, 203, 0.8);
}

.remember-title {
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #ffffff, rgba(255, 192, 203, 0.9));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1px;
}

.remember-subtitle {
  font-size: 1.2em;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
}

/* Sections */
.remember-section {
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
              0 0 25px rgba(135, 206, 250, 0.2);
  transition: all 0.4s ease;
  animation: slideUp 0.8s ease;
  position: relative;
  overflow: hidden;
}

.remember-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(135, 206, 250, 0.1), transparent);
  transition: left 0.5s;
}

.remember-section:hover::before {
  left: 100%;
}

.remember-section:hover {
  transform: translateY(-3px);
  border-color: rgba(135, 206, 250, 0.4);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4),
              0 0 35px rgba(135, 206, 250, 0.3);
}

/* Highlight Sections */
.remember-section.highlight {
  background: rgba(255, 192, 203, 0.05);
  border-color: rgba(255, 192, 203, 0.3);
}

.remember-section.highlight:hover {
  border-color: rgba(255, 192, 203, 0.5);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4),
              0 0 35px rgba(255, 192, 203, 0.3);
}

/* Special Sections */
.remember-section.special {
  background: rgba(255, 215, 0, 0.05);
  border-color: rgba(255, 215, 0, 0.3);
}

.remember-section.special:hover {
  border-color: rgba(255, 215, 0, 0.5);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4),
              0 0 35px rgba(255, 215, 0, 0.3);
}

/* Quote Section */
.remember-section.quote-section {
  background: rgba(138, 43, 226, 0.05);
  border-color: rgba(138, 43, 226, 0.3);
  text-align: center;
}

.remember-section.quote-section:hover {
  border-color: rgba(138, 43, 226, 0.5);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4),
              0 0 35px rgba(138, 43, 226, 0.3);
}

/* Finale Section */
.remember-section.finale {
  background: linear-gradient(135deg, rgba(135, 206, 250, 0.1), rgba(255, 192, 203, 0.1));
  border-color: rgba(135, 206, 250, 0.4);
  border-width: 3px;
}

.remember-section.finale:hover {
  border-color: rgba(135, 206, 250, 0.6);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5),
              0 0 40px rgba(135, 206, 250, 0.5),
              0 0 40px rgba(255, 192, 203, 0.3);
}

/* Section Icon */
.remember-section-icon {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 1rem;
  text-shadow: 0 0 20px rgba(135, 206, 250, 0.6);
}

/* Section Title */
.remember-section-title {
  font-size: 1.6em;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-align: center;
  color: rgba(135, 206, 250, 0.95);
  text-shadow: 0 0 15px rgba(135, 206, 250, 0.4);
}

/* Text */
.remember-text {
  font-size: 1.05em;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
  text-align: justify;
}

.remember-text em {
  color: rgba(135, 206, 250, 0.9);
  font-style: italic;
}

/* Quotes */
.remember-quote-small {
  font-size: 1.1em;
  font-style: italic;
  color: rgba(255, 255, 255, 0.95);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  border-left: 4px solid rgba(135, 206, 250, 0.6);
  background: rgba(135, 206, 250, 0.05);
  border-radius: 0 8px 8px 0;
}

.remember-quote-large {
  font-size: 1.3em;
  line-height: 1.9;
  color: #fff;
  font-style: italic;
  margin: 1.5rem 0;
  padding: 2rem;
  quotes: """ """ "'" "'";
  position: relative;
  text-align: center;
}

.remember-quote-large::before {
  content: open-quote;
  font-size: 4em;
  color: rgba(138, 43, 226, 0.3);
  position: absolute;
  left: 10px;
  top: 0;
  line-height: 1;
}

.remember-cite {
  display: block;
  font-size: 1.1em;
  color: rgba(138, 43, 226, 0.9);
  font-style: normal;
  font-weight: 500;
  margin-top: 1rem;
  text-align: center;
}

/* Final Wish */
.final-wish {
  font-size: 1.2em;
  font-weight: 500;
  text-align: center;
  margin-top: 2rem;
  color: rgba(135, 206, 250, 0.95);
  text-shadow: 0 0 20px rgba(135, 206, 250, 0.5);
}

/* Responsive */
@media (max-width: 767px) {
  .remember {
    padding: 1.5rem 1rem;
  }

  .remember-title {
    font-size: 2em;
  }

  .remember-section {
    padding: 1.5rem;
  }

  .remember-quote-large {
    font-size: 1.1em;
    padding: 1.5rem;
  }
}

/* ===============================================================================================
   HOME PAGE
   =============================================================================================== */

.home {
  padding: 2rem 1.5rem;
  max-width: 900px;
  margin: 0 auto;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

/* Hero Bereich */
.home-hero {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem;
  position: relative;
  animation: fadeIn 1s ease;
}

.home-hero-star {
  font-size: 4em;
  margin-bottom: 1rem;
  animation: pulse 2s infinite;
  text-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

.home-title {
  font-size: 3em;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffffff, rgba(135, 206, 250, 0.9));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 40px rgba(135, 206, 250, 0.5);
  letter-spacing: 1px;
}

.home-dates {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 1.2em;
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.home-date {
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 500;
}

.home-separator {
  color: rgba(135, 206, 250, 0.8);
  font-size: 1.5em;
  font-weight: 300;
}

/* Karten */
.home-card {
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
              0 0 25px rgba(135, 206, 250, 0.2);
  transition: all 0.4s ease;
  animation: slideUp 0.8s ease;
  position: relative;
  overflow: hidden;
}

.home-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(135, 206, 250, 0.1), transparent);
  transition: left 0.5s;
}

.home-card:hover {
  transform: translateY(-5px);
  border-color: rgba(135, 206, 250, 0.5);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4),
              0 0 40px rgba(135, 206, 250, 0.4);
}

.home-card:hover::before {
  left: 100%;
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.home-card-icon {
  font-size: 2.5em;
  margin-bottom: 1rem;
  text-align: center;
  text-shadow: 0 0 20px rgba(135, 206, 250, 0.6);
}

.home-card-title {
  font-size: 1.8em;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-align: center;
  color: rgba(135, 206, 250, 0.95);
  text-shadow: 0 0 15px rgba(135, 206, 250, 0.5);
}

.home-text {
  font-size: 1.05em;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
  text-align: justify;
}

.home-signature {
  font-size: 1.2em;
  font-style: italic;
  text-align: right;
  margin-top: 2rem;
  color: rgba(135, 206, 250, 0.9);
  font-weight: 500;
}

/* Zitat Karte */
.home-quote {
  background: rgba(135, 206, 250, 0.08);
  border-color: rgba(135, 206, 250, 0.3);
  text-align: center;
  padding: 2.5rem;
}

.home-quote-icon {
  font-size: 3em;
  margin-bottom: 1.5rem;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.home-quote-text {
  font-size: 1.2em;
  line-height: 1.9;
  color: #fff;
  font-style: italic;
  margin: 0 0 1.5rem 0;
  quotes: """ """ "'" "'";
  position: relative;
  padding: 0 1rem;
}

.home-quote-text::before {
  content: open-quote;
  font-size: 3em;
  color: rgba(135, 206, 250, 0.4);
  position: absolute;
  left: -10px;
  top: -20px;
  line-height: 1;
}

.home-quote-author {
  font-size: 1.1em;
  color: rgba(135, 206, 250, 0.9);
  font-style: normal;
  font-weight: 500;
  display: block;
  margin-top: 1rem;
}

/* Responsive */
@media (max-width: 767px) {
  .home {
    padding: 1.5rem 1rem;
  }

  .home-title {
    font-size: 2em;
  }

  .home-dates {
    flex-direction: column;
    gap: 0.5rem;
  }

  .home-card {
    padding: 1.5rem;
  }

  .home-quote-text {
    font-size: 1.05em;
  }
}

/* ===============================================================================================
   GALLERY PAGE
   =============================================================================================== */

.gallery {
  padding: 2rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

/* Header */
.gallery-header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem;
  animation: fadeIn 1s ease;
}

.gallery-header-icon {
  font-size: 4em;
  margin-bottom: 1rem;
  text-shadow: 0 0 30px rgba(135, 206, 250, 0.6);
  animation: pulse 2s ease-in-out infinite;
}

.gallery-title {
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, rgba(135, 206, 250, 1), rgba(135, 206, 250, 0.7));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 20px rgba(135, 206, 250, 0.5);
  letter-spacing: 1px;
}

.gallery-subtitle {
  font-size: 1.1em;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
}

/* Upload Button (Floating) */
.gallery-upload-floating {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(135, 206, 250, 0.3), rgba(135, 206, 250, 0.4));
  border: 2px solid rgba(135, 206, 250, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 25px rgba(135, 206, 250, 0.4),
              0 0 20px rgba(135, 206, 250, 0.3);
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.gallery-upload-floating:hover {
  background: linear-gradient(135deg, rgba(135, 206, 250, 0.4), rgba(135, 206, 250, 0.5));
  border-color: rgba(135, 206, 250, 0.9);
  box-shadow: 0 8px 35px rgba(135, 206, 250, 0.6),
              0 0 30px rgba(135, 206, 250, 0.5);
  transform: scale(1.1) rotate(10deg);
}

.gallery-upload-floating:active {
  transform: scale(0.95);
}

.gallery-upload-floating .upload-icon {
  font-size: 1.8em;
  animation: pulse 2s ease-in-out infinite;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 15px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.gallery-item:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(135, 206, 250, 0.6);
  box-shadow: 0 12px 40px rgba(135, 206, 250, 0.3),
              0 0 30px rgba(135, 206, 250, 0.2);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

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

.gallery-item-icon {
  font-size: 3em;
  filter: drop-shadow(0 0 10px rgba(135, 206, 250, 0.8));
  animation: pulse 2s ease-in-out infinite;
}

.gallery-item-delete {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 35px;
  height: 35px;
  background: rgba(248, 113, 113, 0.9);
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2em;
  cursor: pointer;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(248, 113, 113, 0.5);
}

.gallery-item:hover .gallery-item-delete {
  opacity: 1;
  transform: scale(1);
}

.gallery-item-delete:hover {
  background: rgba(248, 113, 113, 1);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(248, 113, 113, 0.7);
}

/* Mark for Deletion Button (normale User) */
.gallery-item-mark {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 35px;
  height: 35px;
  background: rgba(251, 191, 36, 0.9);
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2em;
  cursor: pointer;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease;
  z-index: 10;
}

.gallery-item:hover .gallery-item-mark {
  opacity: 1;
  transform: scale(1);
}

.gallery-item-mark:hover {
  background: rgba(251, 191, 36, 1);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(251, 191, 36, 0.7);
}

/* Approve Button (Admin) */
.gallery-item-approve {
  position: absolute;
  top: 10px;
  right: 50px;
  width: 35px;
  height: 35px;
  background: rgba(34, 197, 94, 0.9);
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4em;
  cursor: pointer;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease;
  z-index: 10;
  color: #fff;
}

.gallery-item:hover .gallery-item-approve {
  opacity: 1;
  transform: scale(1);
}

.gallery-item-approve:hover {
  background: rgba(34, 197, 94, 1);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.7);
}

/* Reject Button (Admin) */
.gallery-item-reject {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 35px;
  height: 35px;
  background: rgba(248, 113, 113, 0.9);
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4em;
  cursor: pointer;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease;
  z-index: 10;
  color: #fff;
}

.gallery-item:hover .gallery-item-reject {
  opacity: 1;
  transform: scale(1);
}

.gallery-item-reject:hover {
  background: rgba(248, 113, 113, 1);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(248, 113, 113, 0.7);
}

/* Badge für vorgemerkte Bilder */
.gallery-item-badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  padding: 0.5rem;
  background: rgba(251, 191, 36, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  color: #000;
  font-size: 0.75em;
  font-weight: 600;
  text-align: center;
  z-index: 5;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.gallery-item-badge.marked {
  background: rgba(251, 191, 36, 0.95);
}

/* Responsive */
@media (max-width: 767px) {
  .gallery {
    padding: 1.5rem 1rem;
  }

  .gallery-title {
    font-size: 2em;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
  }
}
/* ===============================================================================================
   IMPRESSUM PAGE
   =============================================================================================== */

.impressum {
  padding: 2rem 1.5rem;
  max-width: 900px;
  margin: 0 auto;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

/* Header */
.impressum-header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem;
  animation: fadeIn 1s ease;
}

.impressum-header-icon {
  font-size: 4em;
  margin-bottom: 1rem;
  text-shadow: 0 0 30px rgba(135, 206, 250, 0.6);
}

.impressum-title {
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: rgba(135, 206, 250, 0.95);
  text-shadow: 0 0 20px rgba(135, 206, 250, 0.5);
  letter-spacing: 1px;
}

.impressum-subtitle {
  font-size: 1.1em;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
}

/* Sections */
.impressum-section {
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
              0 0 25px rgba(135, 206, 250, 0.15);
  transition: all 0.4s ease;
  animation: slideUp 0.8s ease;
}

.impressum-section:hover {
  transform: translateY(-3px);
  border-color: rgba(135, 206, 250, 0.4);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4),
              0 0 35px rgba(135, 206, 250, 0.3);
}

/* Contact Section */
.impressum-section.contact {
  background: rgba(135, 206, 250, 0.08);
  border-color: rgba(135, 206, 250, 0.3);
}

.impressum-section.contact:hover {
  border-color: rgba(135, 206, 250, 0.5);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4),
              0 0 40px rgba(135, 206, 250, 0.4);
}

/* Credits Section */
.impressum-section.credits {
  background: rgba(74, 222, 128, 0.05);
  border-color: rgba(74, 222, 128, 0.3);
}

.impressum-section.credits:hover {
  border-color: rgba(74, 222, 128, 0.5);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4),
              0 0 35px rgba(74, 222, 128, 0.3);
}

/* Section Icon */
.impressum-section-icon {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 1rem;
  text-shadow: 0 0 20px rgba(135, 206, 250, 0.6);
}

/* Section Title */
.impressum-section-title {
  font-size: 1.6em;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-align: center;
  color: rgba(135, 206, 250, 0.95);
  text-shadow: 0 0 15px rgba(135, 206, 250, 0.4);
}

/* Text */
.impressum-text {
  font-size: 1em;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
  text-align: justify;
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(135, 206, 250, 0.4);
  transform: translateX(5px);
}

.contact-icon {
  font-size: 1.5em;
  flex-shrink: 0;
}

.contact-text {
  font-size: 1.05em;
  color: rgba(255, 255, 255, 0.95);
}

.contact-link {
  font-size: 1.05em;
  color: rgba(135, 206, 250, 0.95);
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-link:hover {
  color: rgba(135, 206, 250, 1);
  text-decoration: underline;
  text-shadow: 0 0 10px rgba(135, 206, 250, 0.6);
}

/* Links */
.impressum-link {
  color: rgba(135, 206, 250, 0.9);
  text-decoration: none;
  transition: all 0.3s ease;
  word-break: break-all;
}

.impressum-link:hover {
  color: rgba(135, 206, 250, 1);
  text-decoration: underline;
  text-shadow: 0 0 10px rgba(135, 206, 250, 0.5);
}

/* Note Box */
.impressum-note {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: rgba(255, 215, 0, 0.05);
  border-left: 4px solid rgba(255, 215, 0, 0.6);
  border-radius: 0 10px 10px 0;
}

.impressum-note .impressum-text {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.95);
}

/* Responsive */
@media (max-width: 767px) {
  .impressum {
    padding: 1.5rem 1rem;
  }

  .impressum-title {
    font-size: 2em;
  }

  .impressum-section {
    padding: 1.5rem;
  }

  .contact-item {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .contact-icon {
    font-size: 1.2em;
  }
}

/* ===============================================================================================
   CONTAKT PAGE
   =============================================================================================== */

.contakt {
  padding: 2.5rem 1.5rem;
  max-width: 800px;
  margin: 0 auto;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

/* Header */
.contakt-header {
  text-align: center;
  margin-bottom: 2rem;
  padding: 2rem;
  animation: fadeIn 1s ease;
}

.contakt-header-icon {
  font-size: 4em;
  margin-bottom: 1rem;
  animation: pulse 2s infinite;
  text-shadow: 0 0 30px rgba(135, 206, 250, 0.6);
}

.contakt-title {
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: rgba(135, 206, 250, 0.95);
  text-shadow: 0 0 20px rgba(135, 206, 250, 0.5);
  letter-spacing: 1px;
}

.contakt-subtitle {
  font-size: 1.1em;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
}

/* Info Box */
.contakt-info-box {
  background: rgba(135, 206, 250, 0.08);
  border: 2px solid rgba(135, 206, 250, 0.3);
  border-radius: 15px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
              0 0 25px rgba(135, 206, 250, 0.2);
  text-align: center;
  animation: slideUp 0.8s ease;
}

.contakt-info-icon {
  font-size: 2.5em;
  margin-bottom: 0.75rem;
}

.contakt-info-text {
  font-size: 1.05em;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

/* Kontakt Methods */
.contakt-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contakt-method-card {
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
  animation: slideUp 0.8s ease;
}

.contakt-method-card:hover {
  transform: translateY(-5px);
  border-color: rgba(135, 206, 250, 0.5);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4),
              0 0 35px rgba(135, 206, 250, 0.3);
}

.contakt-method-icon {
  font-size: 3em;
  margin-bottom: 1rem;
}

.contakt-method-title {
  font-size: 1.3em;
  font-weight: 600;
  color: rgba(135, 206, 250, 0.95);
  margin-bottom: 0.75rem;
}

.contakt-method-link {
  color: rgba(135, 206, 250, 0.9);
  text-decoration: none;
  font-size: 1.05em;
  transition: all 0.3s ease;
}

.contakt-method-link:hover {
  color: rgba(135, 206, 250, 1);
  text-decoration: underline;
  text-shadow: 0 0 10px rgba(135, 206, 250, 0.6);
}

.contakt-method-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1em;
  line-height: 1.5;
  margin: 0;
}

/* Form Section */
.contakt-form-section {
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 3rem;
  margin-bottom: 2.5rem;
  min-height: 700px;
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
              0 0 25px rgba(135, 206, 250, 0.15);
  animation: slideUp 0.8s ease;
}

.contakt-form-icon {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 1rem;
}

.contakt-form-title {
  font-size: 1.8em;
  font-weight: 600;
  text-align: center;
  color: rgba(135, 206, 250, 0.95);
  margin-bottom: 2rem;
  text-shadow: 0 0 15px rgba(135, 206, 250, 0.4);
}

/* Form */
.contakt-form {
  width: 100%;
}

.contakt-form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.contakt-form-row .contakt-form-group {
  margin-bottom: 0;
}

.contakt-form-group {
  margin-bottom: 2rem;
}

.contakt-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1em;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 0.5rem;
}

.label-icon {
  font-size: 1.2em;
}

.contakt-input {
  width: 100%;
  height: 45px;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.contakt-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.contakt-input:focus,
.contakt-textarea:focus {
  outline: none;
  border-color: rgba(135, 206, 250, 0.8);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 20px rgba(135, 206, 250, 0.3);
}

.contakt-input::placeholder,
.contakt-textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.contakt-textarea {
  resize: vertical;
  min-height: 200px;
}

/* Submit Button */
.contakt-submit-btn {
  width: 100%;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, rgba(135, 206, 250, 0.2), rgba(135, 206, 250, 0.3));
  border: 2px solid rgba(135, 206, 250, 0.6);
  border-radius: 12px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1em;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  box-shadow: 0 5px 20px rgba(135, 206, 250, 0.3);
}

.contakt-submit-btn:hover {
  background: linear-gradient(135deg, rgba(135, 206, 250, 0.3), rgba(135, 206, 250, 0.4));
  border-color: rgba(135, 206, 250, 0.8);
  box-shadow: 0 8px 30px rgba(135, 206, 250, 0.5);
  transform: translateY(-2px);
}

.contakt-submit-btn:active {
  transform: translateY(0);
}

.btn-icon {
  font-size: 1.3em;
}

/* Note */
.contakt-note {
  background: rgba(255, 215, 0, 0.05);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 15px;
  padding: 1.5rem;
  backdrop-filter: blur(20px);
  animation: slideUp 0.8s ease;
}

.contakt-note-text {
  font-size: 0.95em;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

/* Responsive */
@media (max-width: 767px) {
  .contakt {
    padding: 1.5rem 1rem;
  }

  .contakt-title {
    font-size: 2em;
  }

  .contakt-form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .contakt-methods {
    grid-template-columns: 1fr;
  }

  .contakt-form-section {
    padding: 1.5rem;
  }
}

/* OLD FORM STYLES (LEGACY) */
form legend {
  font-size: 24px;
}
form label {
  margin-top: 25px;
  font-size: 1em;
  font-weight: 500;
  pointer-events: none;
}
form input {
  width: 100%;
  height: 100%;
  background: transparent;
  outline: none;
  border: none;
  font-size: 1em;
  font-weight: 600;
}
form inputspam {
  display: flex;
  justify-content: space-between;
}
form textarea {
  margin-top: 20px;
  width: 100%;
  max-width: 100%;
  height: 25vh;
  background-color: transparent;
  color: #fff;
}
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;
}

/* ===============================================================================================
   MOBILE ANSICHT - KONDOLENZBUCH BUTTONS
   =============================================================================================== */

@media (max-width: 767px) {
  .form-actions-with-toggle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    flex-wrap: wrap;
  }

  .form-actions-with-toggle button {
    width: 100%;
    font-size: 0.85em;
    padding: 0.5rem 0.6rem;
    min-height: 45px;
    white-space: normal;
    line-height: 1.2;
  }

  /* Eintrags-Kacheln: Buttons rechts untereinander */
  .entry-actions {
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
  }

  .action-btn {
    width: auto;
    min-width: 120px;
    font-size: 0.8em;
    padding: 0.5rem 0.75rem;
  }
}

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