body {
  font-family: "Cormorant Garamond", serif;
  background: #f8f5f0;
  margin: 0;
  padding: 40px;
  color: #2a2a2a;
}

.lux-gold-wrapper {
  max-width: 900px;
  margin: auto;
  background: #ffffff;
  padding: 60px;
  border-radius: 22px;
  border: 3px solid #d4b47c; /* Goldrahmen */
  box-shadow: 0 12px 45px rgba(0,0,0,0.12); /* Luxus-Schatten */
}

.lux-gold-header {
  text-align: center;
  margin-bottom: 50px;
}

.lux-gold-logo {
  display: flex;
  margin-bottom: 20px;
}

h1 {
  font-size: 2.6rem;
  letter-spacing: 1px;
  margin: 0;
  color: #3a3a3a;
  text-align: center;
}

h2 {
  font-size: 1.6rem;
  font-weight: 600;
  border-left: 5px solid #d4b47c;
  padding-left: 14px;
  margin-bottom: 20px;
}

section {
  margin-bottom: 45px;
}

.stehtisch-menge {
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #d4b47c;
  background: #fbfaf8;
  font-size: 1rem;
}

label {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 14px 0;
  font-size: 1.1rem;
}

input, select, textarea {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid #d8d5d0;
  background: #fbfaf8;
  font-size: 1.05rem;
  transition: border 0.2s, box-shadow 0.2s;
}

input:focus, select:focus, textarea:focus {
  border-color: #d4b47c;
  box-shadow: 0 0 8px rgba(212,180,124,0.4);
  outline: none;
}

.lux-gold-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.lux-gold-info {
  background: #f4efe7;
  padding: 14px 18px;
  border-left: 4px solid #d4b47c;
  border-radius: 10px;
  font-size: 1rem;
  color: #5a5a5a;
}

.lux-gold-link a {
  color: #b8945a;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
}

.lux-gold-link a:hover {
  text-decoration: underline;
}

.lux-gold-btn {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, #d4b47c, #b8945a);
  color: white;
  border: none;
  border-radius: 14px;
  font-size: 1.3rem;
  letter-spacing: 0.6px;
  cursor: pointer;
  transition: 0.2s;
}

.lux-gold-btn:hover {
  background: linear-gradient(135deg, #b8945a, #a8834f);
}


/* --- Lade-Overlay --- */
#lux-loader {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(4px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.3s ease;
}

.lux-loader-hidden {
  opacity: 0;
  pointer-events: none;
}

.lux-loader-box {
  background: #ffffff;
  padding: 40px 60px;
  border-radius: 20px;
  border: 3px solid #d4b47c;
  box-shadow: 0 12px 45px rgba(0,0,0,0.15);
  text-align: center;
}

.lux-loader-box p {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  margin-top: 20px;
  color: #6a5a40;
}

/* --- Goldener Spinner --- */
.lux-spinner {
  width: 60px;
  height: 60px;
  border: 5px solid #e8d7b3;
  border-top-color: #d4b47c;
  border-radius: 50%;
  animation: spin 1.2s linear infinite;
  margin: auto;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* --- Gold-Glitzer Overlay --- */
#lux-glitter {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.lux-glitter-hidden {
  opacity: 0;
  pointer-events: none;
}

.lux-glitter-container {
  position: relative;
  width: 180px;
  height: 180px;
}

.lux-glitter-container::before,
.lux-glitter-container::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,215,140,0.9) 0%, rgba(255,215,140,0.0) 70%);
  animation: glitter-pulse 1.8s infinite ease-in-out;
}

.lux-glitter-container::after {
  animation-delay: 0.9s;
}

@keyframes glitter-pulse {
  0% { transform: scale(0.7); opacity: 0.7; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.7); opacity: 0.7; }
}

.lux-glitter-text {
  margin-top: 30px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  color: #b8945a;
  letter-spacing: 1px;
}

.lux-gold-backbtn {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #d4b47c, #b8945a);
  color: white;
  text-decoration: none;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  border-radius: 12px;
  letter-spacing: 0.5px;
  transition: 0.25s ease;
  box-shadow: 0 6px 25px rgba(0,0,0,0.15);
}

.lux-gold-backbtn:hover {
  background: linear-gradient(135deg, #b8945a, #a8834f);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}

.lux-summe-box {
  margin-top: 40px;
  padding: 25px 30px;
  background: #ffffff;
  border: 3px solid #d4b47c;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.10);
  text-align: center;
}

#lux-auswahl-text {
  font-size: 1.2rem;
  color: #6a5a40;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* --- Gold Glow + Shine Effekt für die Gesamtsumme --- */
#lux-summe {
  position: relative;
  overflow: hidden;
  animation: goldGlow 2.2s ease-in-out infinite;
  color: #b8945a;
  font-size: 2.6rem;
  font-weight: 700;
}

/* Shine Effekt */
#lux-summe::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 80%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.7) 50%,
    transparent 100%
  );
  animation: shine 3.5s ease-in-out infinite;
}

/* Shine Animation */
@keyframes shine {
  0% { left: -150%; }
  50% { left: 150%; }
  100% { left: 150%; }
}

/* Gold Glow Animation */
@keyframes goldGlow {
  0% {
    text-shadow:
      0 0 6px rgba(212,180,124,0.4),
      0 0 12px rgba(212,180,124,0.3);
  }
  50% {
    text-shadow:
      0 0 18px rgba(212,180,124,0.9),
      0 0 28px rgba(212,180,124,0.6),
      0 0 40px rgba(212,180,124,0.4);
  }
  100% {
    text-shadow:
      0 0 6px rgba(212,180,124,0.4),
      0 0 12px rgba(212,180,124,0.3);
  }
}

/* --- Accordion Titel Print --- */
.print-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  padding-right: 10px;
}

/* Pfeil */
.print-arrow {
  font-size: 1.4rem;
  color: #b8945a;
  transition: transform 0.3s ease;
}

/* Inhalt standardmäßig versteckt */
.print-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

/* Wenn geöffnet */
.print-open .print-content {
  max-height: 800px;
}

.print-open .print-arrow {
  transform: rotate(180deg);
}

.print-hinweis {
  margin: 0 0 10px 0;
  font-size: 0.9rem;
  color: #b8945a;
}


/* --- Accordion Titel --- */
.vermietung-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  padding-right: 10px;
}

/* Pfeil */
.vermietung-arrow {
  font-size: 1.4rem;
  color: #b8945a;
  transition: transform 0.3s ease;
}

/* Inhalt standardmäßig versteckt */
.vermietung-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

/* Wenn geöffnet */
.vermietung-open .vermietung-content {
  max-height: 800px; /* genug Platz */
}

.vermietung-open .vermietung-arrow {
  transform: rotate(180deg);
}

.vermietung-hinweis {
  margin: 0 0 10px 0;
  font-size: 0.9rem;
  color: #b8945a;
}
