/* Reset und Basis-Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #333;
  background: #000;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: -1;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  transition: transform 0.3s ease-in-out;
}

.header.hidden {
  transform: translateY(-100%);
}

.header.visible {
  transform: translateY(0);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-right {
  transition: opacity 0.3s ease;
}

.nav-right.hidden-icons {
  opacity: 0;
  visibility: hidden;
}

.nav-link {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: #d4af37;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #d4af37;
}

.logo-container {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #d4af37;
}

.logo-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.social-icon {
  color: #fff;
  transition: color 0.3s ease;
}

.social-icon:hover {
  color: #d4af37;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 2rem 2rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.8) 100%
  );
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.hero-cta {
  display: inline-block;
  background: #d4af37;
  color: #000;
  padding: 1rem 2.5rem;
  font-size: 1.15rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 6px;
  margin-bottom: 2.5rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.hero-cta:hover {
  background: #e8c84a;
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(212, 175, 55, 0.5);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.opening-hours {
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(15px);
  border: 2px solid #d4af37;
  border-radius: 10px;
  padding: 2rem;
  max-width: 400px;
  margin: 0 auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  color: #fff;
  font-size: 1.1rem;
}

.day {
  font-weight: 600;
}

.time {
  color: #d4af37;
  font-weight: 500;
}

/* Services Section */
.services-section {
  padding: 80px 2rem;
  background: rgba(0, 0, 0, 0.9);
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.services-title {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 2rem;
  text-align: center;
}

.services-description {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
  border-color: #d4af37;
}

.service-image {
  width: 100%;
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-title {
  font-size: 1.3rem;
  color: #d4af37;
  margin-bottom: 1rem;
  font-weight: 600;
}

.service-text {
  color: #ccc;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Location Section */
.location-section {
  padding: 80px 2rem;
  background: rgba(0, 0, 0, 0.9);
}

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

.location-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.location-text {
  color: #fff;
}

.location-title {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 2rem;
}

.location-intro {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.parking-info {
  margin-bottom: 2rem;
}

.parking-info p {
  color: #ccc;
  line-height: 1.8;
}

.welcome-text {
  color: #ccc;
  line-height: 1.8;
}

.map-container {
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid #d4af37;
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border: none;
}

/* Contact Section */
.contact-section {
  padding: 80px 2rem;
  background: rgba(0, 0, 0, 0.9);
  text-align: center;
}

.contact-container {
  max-width: 800px;
  margin: 0 auto;
}

.contact-title {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 3rem;
}

.contact-info-centered {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 10px;
  padding: 3rem;
  max-width: 600px;
  margin: 0 auto;
}

.info-item {
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  color: #fff;
}

.social-link {
  margin-top: 2rem;
}

/* Career Section */
.career-section {
  padding: 80px 2rem;
  background: rgba(0, 0, 0, 0.9);
  text-align: center;
}

.career-container {
  max-width: 800px;
  margin: 0 auto;
}

.career-title {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 2rem;
}

.career-description {
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.apply-btn {
  background: #d4af37;
  color: #000;
  border: none;
  padding: 1rem 2rem;
  border-radius: 5px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.apply-btn:hover {
  background: #b8941f;
}

/* Footer */
.footer {
  background: rgba(0, 0, 0, 0.95);
  padding: 2rem;
  text-align: center;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.footer-logo {
  margin-bottom: 1rem;
}

.footer-logo .logo {
  width: 50px;
  height: 50px;
  margin: 0 auto;
}

.footer-content p {
  color: #ccc;
  margin-bottom: 1rem;
}

.footer-links {
  margin-bottom: 1rem;
}

.footer-links a {
  color: #d4af37;
  text-decoration: none;
  margin: 0 0.5rem;
}

.footer-links span {
  color: #ccc;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  height: 100dvh; /* Dynamic viewport height - berücksichtigt mobile Adressleiste */
  background-color: rgba(0, 0, 0, 0.8);
  overflow-y: auto;
}

.modal-content {
  background: rgba(0, 0, 0, 0.95);
  margin: 0.5% auto;
  padding: 1.2rem;
  border: 2px solid #d4af37;
  border-radius: 10px;
  width: 90%;
  max-width: 600px;
  max-height: 98vh;
  max-height: 98dvh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  color: #fff;
  position: relative;
}

.close {
  color: #d4af37;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  position: sticky;
  top: 0;
  right: 0;
  z-index: 10;
  text-align: right;
  padding: 0 0.25rem;
  background: rgba(0, 0, 0, 0.85);
}

.close:hover {
  color: #fff;
}

/* Booking Modal Styles */
.booking-modal {
  max-width: 650px;
  max-height: 98vh;
  max-height: 98dvh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0.8rem;
}

.booking-step {
  display: none;
}

.booking-step.active {
  display: flex;
  flex-direction: column;
}

.info-notice {
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 4px;
  padding: 0.35rem 0.5rem;
  margin-bottom: 0.4rem;
}

.info-notice p {
  font-size: 0.75rem;
  margin: 0;
  line-height: 1.3;
}

.info-notice p {
  color: #d4af37;
  font-size: 0.9rem;
  margin: 0;
}

.cancellation-notice {
  margin-top: 0.3rem !important;
  color: #ff9800 !important;
  font-size: 0.7rem !important;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding-top: 0.3rem;
}

.calendar {
  margin-bottom: 2rem;
  width: 100%;
  max-width: 100%;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  color: #fff;
}

.calendar-header h3 {
  font-size: 1rem;
  margin: 0;
}

.calendar-nav {
  background: none;
  border: none;
  color: #d4af37;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

.calendar-nav:hover {
  color: #fff;
}

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

.day-header {
  background: #333;
  color: #d4af37;
  font-weight: bold;
  font-size: 0.7rem;
  padding: 0.3rem;
  text-align: center;
  border-radius: 3px;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.85rem;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  min-height: 32px;
}

.calendar-day:hover:not(.disabled):not(.past) {
  background: rgba(212, 175, 55, 0.2);
  border-color: #d4af37;
}

.calendar-day.selected {
  background: #d4af37;
  color: #000;
  font-weight: bold;
}

.calendar-day.disabled,
.calendar-day.past {
  background: rgba(0, 0, 0, 0.3);
  color: #666;
  cursor: not-allowed;
}

.calendar-day.empty {
  background: rgba(0, 0, 0, 0.2);
  cursor: default;
}

.time-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.3rem;
  margin-bottom: 0.5rem;
}

.time-slot {
  padding: 0.35rem 0.2rem;
  text-align: center;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 0.8rem;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
}

.time-slot:hover:not(.disabled):not(.booked) {
  background: rgba(212, 175, 55, 0.2);
  border-color: #d4af37;
}

.time-slot.selected {
  background: #d4af37;
  color: #000;
  font-weight: bold;
}

.time-slot.booked,
.admin-time-slot.booked {
  background: rgba(0, 0, 0, 0.3) !important;
  color: #666 !important;
  cursor: not-allowed !important;
  text-decoration: line-through !important;
  opacity: 0.5 !important;
  pointer-events: none !important;
}

.time-slot.booked:hover,
.admin-time-slot.booked:hover {
  background: rgba(0, 0, 0, 0.3) !important;
  border-color: rgba(212, 175, 55, 0.3) !important;
  transform: none !important;
}

.time-slot.disabled,
.time-slot.booked {
  background: rgba(0, 0, 0, 0.3);
  color: #666;
  cursor: not-allowed;
  text-decoration: line-through;
}

.loading {
  text-align: center;
  color: #d4af37;
  padding: 2rem;
  font-style: italic;
}

.no-slots {
  text-align: center;
  color: #ccc;
  padding: 2rem;
  font-style: italic;
}

.step-navigation {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: 0.8rem;
}

.next-btn,
.back-btn {
  padding: 0.5rem 1.2rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.85rem;
  transition: background 0.3s ease;
}

.next-btn {
  background: #d4af37;
  color: #000;
}

.next-btn:hover {
  background: #b8941f;
}

.next-btn:disabled {
  background: #666;
  cursor: not-allowed;
}

.back-btn {
  background: #666;
  color: #fff;
}

.back-btn:hover {
  background: #555;
}

.selected-date-display,
.selected-appointment-display {
  background: rgba(212, 175, 55, 0.1);
  padding: 0.3rem 0.5rem;
  border-radius: 4px;
  margin-bottom: 0.4rem;
  font-size: 0.8rem;
}

.selected-date-display p,
.selected-appointment-display p {
  margin: 0;
}
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.form-group {
  margin-bottom: 0.35rem;
}

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

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.35rem 0.4rem;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 0.85rem;
}

.form-group textarea {
  min-height: 32px;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #d4af37;
}

.submit-btn {
  background: #d4af37;
  color: #000;
  border: none;
  padding: 0.55rem 1.5rem;
  border-radius: 5px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.submit-btn:hover {
  background: #b8941f;
}

.submit-btn:disabled {
  background: #666;
  cursor: not-allowed;
}

/* Admin Panel Styles */
.admin-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: rgba(0, 0, 0, 0.9);
  border: 2px solid #d4af37;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
  transition: all 0.3s ease;
  color: #d4af37;
}

.admin-toggle:hover {
  background: rgba(212, 175, 55, 0.2);
  transform: scale(1.1);
}

.admin-panel {
  position: fixed;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 94vw;
  max-width: 1300px;
  height: 88vh;
  background: #000;
  border: 2px solid #d4af37;
  border-radius: 10px;
  padding: 0.8rem 1rem;
  z-index: 5000;
  display: none;
  overflow-y: auto;
  box-shadow: 0 0 0 100vmax rgba(0, 0, 0, 0.85), 0 8px 32px rgba(0, 0, 0, 0.5);
}

.admin-login h3 {
  color: #d4af37;
  text-align: center;
  margin-bottom: 1rem;
}

.admin-login input {
  width: 100%;
  max-width: 300px;
  margin: 0 auto 0.5rem;
  display: block;
  padding: 0.75rem;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  box-sizing: border-box;
}

.admin-login input:focus {
  outline: none;
  border-color: #d4af37;
}

.admin-login button {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  display: block;
  padding: 0.75rem;
  background: #d4af37;
  color: #000;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.admin-login button:hover {
  background: #b8941f;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid #d4af37;
}

.admin-header h3 {
  color: #d4af37;
  margin: 0;
  font-size: 1.1rem;
}
.admin-header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.admin-close-btn {
  background: none;
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: #d4af37;
  font-size: 1.4rem;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  line-height: 1;
  padding: 0;
}

.admin-close-btn:hover {
  background: rgba(212, 175, 55, 0.15);
  color: #fff;
}


.logout-btn {
  background: #666;
  color: #fff;
  border: none;
  padding: 0.3rem 0.7rem;
  border-radius: 4px;
  font-size: 0.75rem;
  cursor: pointer;
}

.logout-btn:hover {
  background: #555;
}

.admin-tabs {
  display: flex;
  margin-bottom: 0.5rem;
  border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.tab-btn {
  flex: 1;
  padding: 0.45rem;
  background: none;
  border: none;
  color: #ccc;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.tab-btn.active {
  color: #d4af37;
  border-bottom: 3px solid #d4af37;
}

.tab-btn:hover {
  color: #d4af37;
}

.tab-content {
  display: none;
  height: calc(88vh - 90px);
  overflow-y: auto;
}

.tab-content.active {
  display: block;
}

.tab-content h4 {
  color: #d4af37;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
}

/* Week Navigation */
.week-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.4rem;
  padding: 0.35rem 0.6rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.week-nav-btn {
  background: #d4af37;
  color: #000;
  border: none;
  padding: 0.35rem 1rem;
  border-radius: 4px;
  font-weight: bold;
  font-size: 0.75rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.week-nav-btn:hover {
  background: #b8941f;
}

.week-nav-btn:disabled {
  background: #666;
  color: #ccc;
  cursor: not-allowed;
}

.week-display {
  color: #fff;
  font-size: 0.9rem;
  font-weight: bold;
  text-align: center;
}

/* Week View */
.week-view {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.4rem;
  margin-bottom: 0.3rem;
}

.day-column {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 6px;
  padding: 0.35rem;
  min-height: 0;
}

.day-header-admin {
  text-align: center;
  color: #d4af37;
  font-weight: bold;
  font-size: 0.75rem;
  margin-bottom: 0.3rem;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  line-height: 1.25;
}

.day-appointments {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.appointment-card {
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: 5px;
  padding: 0.75rem;
  font-size: 0.9rem;
}

.appointment-time {
  color: #d4af37;
  font-weight: bold;
  margin-bottom: 0.25rem;
}

.appointment-customer {
  color: #fff;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.appointment-service {
  color: #ccc;
  font-size: 0.8rem;
}

.no-appointments {
  color: #666;
  font-style: italic;
  text-align: center;
  padding: 2rem 0;
}

/* Admin Add Steps */
.admin-step {
  display: none;
}

.admin-step.active {
  display: block;
}

.admin-calendar {
  max-width: 500px;
  margin: 0 auto;
}

.admin-time-slots {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 0.75rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.admin-time-slot {
  padding: 0.75rem;
  text-align: center;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 0.9rem;
}

.admin-time-slot:hover:not(.booked) {
  background: rgba(212, 175, 55, 0.2);
  border-color: #d4af37;
}

.admin-time-slot.selected {
  background: #d4af37;
  color: #000;
  font-weight: bold;
}

.admin-time-slot.booked {
  background: rgba(0, 0, 0, 0.3);
  color: #666;
  cursor: not-allowed;
  text-decoration: line-through;
}

.admin-form {
  max-width: 500px;
  margin: 0 auto;
}

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

.admin-form input,
.admin-form select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 1rem;
}

.admin-form input:focus,
.admin-form select:focus {
  outline: none;
  border-color: #d4af37;
}

.admin-step-navigation {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
}

.request-item,
.appointment-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.request-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.request-name {
  color: #fff;
  font-weight: bold;
  font-size: 1.1rem;
}

.request-status {
  background: #fff3cd;
  color: #856404;
  padding: 0.3rem 0.6rem;
  border-radius: 5px;
  font-size: 0.8rem;
  font-weight: bold;
}

.request-info {
  color: #ccc;
  line-height: 1.6;
}

.request-info p {
  margin: 0.5rem 0;
}

.request-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.btn-small {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 5px;
  font-size: 0.85rem;
  cursor: pointer;
  font-weight: bold;
  transition: opacity 0.3s ease;
}

.btn-approve {
  background: #4caf50;
  color: white;
}

.btn-reject {
  background: #f44336;
  color: white;
}

.btn-cancel {
  background: #ff9800;
  color: white;
}

.btn-small:hover {
  opacity: 0.8;
}

.empty-state {
  text-align: center;
  color: #666;
  font-style: italic;
  padding: 3rem;
  font-size: 1.1rem;
}

/* Admin Time Slots */
.time-slot-admin {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 3px;
  padding: 0.2rem 0.25rem;
  margin-bottom: 2px;
  font-size: 0.7rem;
  transition: all 0.3s ease;
  line-height: 1.25;
}

.time-slot-admin.booked {
  background: rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.5);
}

.time-slot-admin.available {
  background: rgba(76, 175, 80, 0.1);
  border-color: rgba(76, 175, 80, 0.3);
}

.time-slot-admin:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.slot-time {
  color: #d4af37;
  font-weight: bold;
  font-size: 0.68rem;
  margin-bottom: 0;
}

.slot-customer {
  color: #fff;
  font-weight: 600;
  font-size: 0.6rem;
  margin-bottom: 0;
}

.slot-service {
  color: #ccc;
  font-size: 0.55rem;
}

.slot-status {
  color: #4caf50;
  font-style: italic;
  font-size: 0.6rem;
}

.closed-day {
  color: #666;
  font-style: italic;
  text-align: center;
  padding: 0.5rem 0;
  font-size: 0.65rem;
}

/* Responsive Design */
/* ============================================================
   Slot Detail Modal (Admin)
   ============================================================ */

.slot-detail-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 6000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slot-detail-content {
  background: rgba(10, 10, 10, 0.98);
  border: 2px solid #d4af37;
  border-radius: 10px;
  padding: 1.2rem;
  width: 90%;
  max-width: 420px;
  max-height: 85vh;
  overflow-y: auto;
  color: #fff;
  position: relative;
}

.slot-detail-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.8rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.slot-detail-header h4 {
  color: #d4af37;
  font-size: 1rem;
  margin: 0;
}

.slot-detail-header .close {
  position: static;
  float: none;
  background: none;
  font-size: 1.5rem;
  padding: 0;
  cursor: pointer;
  color: #d4af37;
}

.slot-detail-body {
  margin-bottom: 0.8rem;
}

.slot-detail-appointment {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 6px;
  padding: 0.6rem;
  margin-bottom: 0.5rem;
}

.slot-detail-appointment p {
  margin: 0.15rem 0;
  font-size: 0.85rem;
}

.slot-detail-appointment .apt-name {
  color: #fff;
  font-weight: 600;
}

.slot-detail-appointment .apt-info {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
}

.apt-phone-link {
  color: #d4af37;
  text-decoration: none;
  font-weight: 500;
}

.apt-phone-link:hover {
  text-decoration: underline;
  color: #e8c84a;
}

.slot-detail-appointment .apt-actions {
  margin-top: 0.4rem;
}

.slot-detail-appointment .btn-cancel-apt {
  background: #f44336;
  color: #fff;
  border: none;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  font-size: 0.75rem;
  cursor: pointer;
}

.slot-detail-appointment .btn-cancel-apt:hover {
  background: #d32f2f;
}

.slot-empty-msg {
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
  text-align: center;
  padding: 0.5rem;
  font-size: 0.85rem;
}

.slot-capacity-info {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.5rem;
}

.slot-add-form {
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  padding-top: 0.6rem;
  margin-top: 0.5rem;
}

.slot-add-form h5 {
  color: #d4af37;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.slot-add-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.slot-detail-actions {
  margin-top: 0.5rem;
  text-align: center;
}

.slot-detail-actions .next-btn {
  width: 100%;
}


/* ============================================================
   Toast Notifications
   ============================================================ */

.toast-container {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  pointer-events: none;
}

.toast {
  background: #1a1a1a;
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 8px;
  padding: 0.7rem 1.2rem;
  color: #fff;
  font-size: 0.85rem;
  line-height: 1.4;
  max-width: 90vw;
  width: max-content;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  animation: toastIn 0.3s ease, toastOut 0.3s ease 2.7s forwards;
  pointer-events: auto;
  text-align: center;
}

.toast.toast-success {
  border-color: #4caf50;
}

.toast.toast-error {
  border-color: #f44336;
}

.toast.toast-warning {
  border-color: #ff9800;
}

.toast.toast-long {
  animation: toastIn 0.3s ease, toastOut 0.3s ease 4.7s forwards;
  white-space: pre-line;
  text-align: left;
  max-width: 85vw;
}

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

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

@media (max-width: 768px) {
  .nav {
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.5rem;
  }

  .nav-left,
  .nav-right {
    gap: 1rem;
  }

  .logo-container {
    position: static;
    transform: none;
    margin-bottom: 0.5rem;
  }

  .logo {
    width: 50px;
    height: 50px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .location-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .modal-content {
    width: 95%;
    margin: 1% auto;
    padding: 1rem;
    max-height: 96vh;
    max-height: 96dvh;
  }

  .booking-modal {
    width: 98%;
    margin: 0.5% auto;
    padding: 0.8rem;
    max-height: 97vh;
    max-height: 97dvh;
  }

  .booking-step.active {
    gap: 0.5rem;
  }

  .booking-step h2 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }

  .step-navigation {
    flex-direction: column;
  }

  .time-slots {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0.3rem;
  }

  .contact-info-centered {
    padding: 2rem;
  }

  .calendar-grid {
    gap: 0.25rem;
    font-size: 0.8rem;
  }

  .calendar-day {
    min-height: 35px;
    font-size: 0.8rem;
    padding: 0.25rem;
  }

  .day-header {
    font-size: 0.7rem;
    padding: 0.25rem;
  }

  .calendar-header {
    margin-bottom: 0.5rem;
  }

  .calendar-nav {
    font-size: 1.2rem;
    padding: 0.25rem;
  }

  section {
    scroll-margin-top: 180px;
  }

  .header {
    height: auto;
    max-height: 120px;
  }

  .hero-section {
    padding-top: 130px;
  }

  .nav-link {
    font-size: 0.9rem;
    padding: 0.3rem 0.5rem;
  }

  .form-group {
    margin-bottom: 0.8rem;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 0.5rem;
    font-size: 0.9rem;
  }

  /* Admin Panel Mobile - KLEINERES FENSTER */
  .admin-panel {
    width: 95vw;
    height: 80vh; /* Reduziert von 90vh */
    padding: 0.8rem; /* Reduziert von 1rem */
    top: 10vh; /* Zentriert vertikal */
    left: 50%;
    transform: translateX(-50%);
    position: fixed;
  }

  /* Mobile Week View - TERMINE NEBENEINANDER */
  .week-view {
    grid-template-columns: repeat(2, 1fr); /* 2 Spalten statt 1 */
    gap: 0.5rem;
    max-height: 50vh;
    overflow-y: auto;
  }

  .day-column {
    min-height: 180px; /* Reduziert von 200px */
    padding: 0.5rem; /* Reduziert von 0.75rem */
  }

  .day-header-admin {
    font-size: 0.85rem; /* Kleinere Schrift */
    margin-bottom: 0.5rem;
    padding-bottom: 0.3rem;
  }

  .appointment-card {
    padding: 0.5rem; /* Reduziert von 0.75rem */
    font-size: 0.8rem; /* Kleinere Schrift */
    margin-bottom: 0.3rem;
  }

  .appointment-time {
    font-size: 0.75rem;
    margin-bottom: 0.2rem;
  }

  .appointment-customer {
    font-size: 0.8rem;
    margin-bottom: 0.2rem;
  }

  .appointment-service {
    font-size: 0.7rem;
  }

  .week-navigation {
    flex-direction: column;
    gap: 0.8rem; /* Reduziert von 1rem */
    text-align: center;
    padding: 0.8rem; /* Reduziert von 1rem */
  }

  .week-nav-btn {
    padding: 0.6rem 1.2rem; /* Reduziert */
    font-size: 0.9rem;
  }

  .week-display {
    font-size: 1rem; /* Reduziert von 1.2rem */
  }

  .admin-time-slots {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }

  .admin-step-navigation {
    flex-direction: column;
  }

  .tab-content {
    height: calc(80vh - 180px); /* Angepasst für kleineres Panel */
    overflow-y: auto;
  }

  .admin-header {
    margin-bottom: 1rem; /* Reduziert von 1.5rem */
    padding-bottom: 0.8rem; /* Reduziert von 1rem */
  }

  .admin-header h3 {
    font-size: 1.2rem; /* Reduziert von 1.5rem */
  }

  .admin-tabs {
    margin-bottom: 1rem; /* Reduziert von 1.5rem */
  }

  .tab-btn {
    padding: 0.8rem; /* Reduziert von 1rem */
    font-size: 0.9rem; /* Reduziert von 1rem */
  }

  /* Mobile Anpassungen für Admin Slots */
  .time-slot-admin {
    padding: 0.4rem;
    margin-bottom: 0.2rem;
    font-size: 0.75rem;
  }

  .slot-time {
    font-size: 0.8rem;
    margin-bottom: 0.15rem;
  }

  .slot-customer {
    font-size: 0.75rem;
    margin-bottom: 0.1rem;
  }

  .slot-service {
    font-size: 0.65rem;
  }

  .slot-status {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .header {
    padding: 0.5rem 0;
    max-height: 110px;
  }

  .nav {
    padding: 0.3rem;
  }

  .nav-left {
    gap: 0.3rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-link {
    font-size: 0.85rem;
    padding: 0.2rem 0.4rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .services-title,
  .contact-title,
  .career-title,
  .location-title {
    font-size: 2rem;
  }

  .opening-hours {
    padding: 1rem;
  }

  .hours-row {
    font-size: 1rem;
  }

  .contact-info-centered {
    padding: 1.5rem;
  }

  .info-item {
    font-size: 1.1rem;
  }

  .booking-modal {
    width: 100%;
    margin: 0;
    border-radius: 0;
    border: none;
    max-height: 100vh;
    max-height: 100dvh;
    height: 100vh;
    height: 100dvh;
    padding: 0.5rem;
    padding-bottom: env(safe-area-inset-bottom, 0.5rem); /* iPhone Notch-Bereich */
  }

  .booking-step.active {
    height: calc(100dvh - 60px); /* Platz für Close-Button abziehen */
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 1rem;
  }

  .booking-step h2 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    position: sticky;
    top: 0;
    background: rgba(0, 0, 0, 0.95);
    padding: 0.3rem 0;
    z-index: 5;
  }

  .form-group {
    margin-bottom: 0.25rem;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 0.3rem 0.35rem;
    font-size: 16px; /* Verhindert iOS Zoom beim Fokus */
  }

  .form-group label {
    font-size: 0.72rem;
    margin-bottom: 0.1rem;
  }

  .form-group textarea {
    min-height: 28px;
  }

  .info-notice {
    padding: 0.25rem 0.35rem;
    margin-bottom: 0.25rem;
  }

  .info-notice p {
    font-size: 0.68rem;
    line-height: 1.25;
  }

  .cancellation-notice {
    margin-top: 0.2rem !important;
    padding-top: 0.2rem;
    font-size: 0.62rem !important;
  }

  .selected-date-display,
  .selected-appointment-display {
    padding: 0.2rem 0.35rem;
    margin-bottom: 0.2rem;
    font-size: 0.75rem;
  }

  .selected-date-display p,
  .selected-appointment-display p {
    margin: 0;
  }

  .submit-btn {
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
  }

  .calendar {
    margin-bottom: 0.8rem;
  }

  .calendar-header {
    margin-bottom: 0.3rem;
  }

  .calendar-header h3 {
    font-size: 0.95rem;
  }

  .calendar-grid {
    gap: 0.15rem;
  }

  .calendar-day {
    min-height: 30px;
    font-size: 0.75rem;
    padding: 0.15rem;
  }

  .day-header {
    font-size: 0.65rem;
    padding: 0.15rem;
  }

  .time-slots {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 0.2rem;
  }

  .time-slot {
    padding: 0.2rem 0.1rem;
    font-size: 0.72rem;
  }

  .slot-time-text {
    font-size: 0.75rem;
  }

  .slot-remaining {
    font-size: 0.55rem;
  }

  .step-navigation {
    gap: 0.4rem;
    margin-top: 0.5rem;
    position: sticky;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    padding: 0.4rem 0;
    z-index: 5;
  }

  .next-btn,
  .back-btn {
    padding: 0.45rem 0.8rem;
    font-size: 0.8rem;
    font-size: 0.9rem;
  }

  section {
    scroll-margin-top: 170px;
  }

  .hero-section {
    padding-top: 120px;
  }

  .logo {
    width: 40px;
    height: 40px;
  }

  /* Admin Panel Mobile - NOCH KLEINER */
  .admin-panel {
    width: 98vw;
    height: 85vh; /* Etwas größer für sehr kleine Bildschirme */
    border-radius: 0;
    padding: 0.6rem;
    top: 7.5vh;
  }

  /* Mobile Week View - KOMPAKTER */
  .week-view {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.3rem;
    max-height: 45vh;
  }

  .day-column {
    min-height: 160px;
    padding: 0.4rem;
  }

  .day-header-admin {
    font-size: 0.8rem;
    margin-bottom: 0.4rem;
    padding-bottom: 0.2rem;
  }

  .appointment-card {
    padding: 0.4rem;
    font-size: 0.75rem;
    margin-bottom: 0.2rem;
  }

  .appointment-time {
    font-size: 0.7rem;
  }

  .appointment-customer {
    font-size: 0.75rem;
  }

  .appointment-service {
    font-size: 0.65rem;
  }

  .week-navigation {
    padding: 0.6rem;
    gap: 0.6rem;
  }

  .week-nav-btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }

  .week-display {
    font-size: 0.9rem;
  }

  .admin-time-slots {
    grid-template-columns: repeat(2, 1fr);
  }

  .admin-toggle {
    width: 50px;
    height: 50px;
    bottom: 15px;
    right: 15px;
  }

  .tab-content {
    height: calc(85vh - 160px);
  }

  .admin-header h3 {
    font-size: 1.1rem;
  }

  .tab-btn {
    padding: 0.7rem;
    font-size: 0.85rem;
  }

  /* Mobile Anpassungen für Admin Slots */
  .time-slot-admin {
    padding: 0.3rem;
    margin-bottom: 0.15rem;
    font-size: 0.7rem;
  }

  .slot-time {
    font-size: 0.75rem;
  }

  .slot-customer,
  .slot-service,
  .slot-status {
    font-size: 0.65rem;
  }
}

@media (max-width: 360px) {
  .calendar-day {
    min-height: 28px;
    font-size: 0.7rem;
  }

  .day-header {
    font-size: 0.6rem;
  }

  .time-slots {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0.15rem;
  }

  .time-slot {
    padding: 0.15rem 0.1rem;
    font-size: 0.65rem;
  }

  .slot-time-text {
    font-size: 0.7rem;
  }

  .slot-remaining {
    font-size: 0.5rem;
  }

  .header {
    max-height: 100px;
  }

  .nav-left {
    gap: 0.2rem;
  }

  .nav-link {
    font-size: 0.8rem;
    padding: 0.2rem 0.3rem;
  }

  section {
    scroll-margin-top: 160px;
  }

  .hero-section {
    padding-top: 110px;
  }

  .form-group {
    margin-bottom: 0.2rem;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 0.25rem 0.3rem;
    font-size: 16px;
  }

  .form-group label {
    font-size: 0.68rem;
    margin-bottom: 0.05rem;
  }

  .form-group label {
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
  }

  .booking-modal {
    padding: 0.3rem;
  }

  .booking-step h2 {
    font-size: 0.85rem;
    margin-bottom: 0.2rem;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 0.4rem;
    font-size: 16px; /* Verhindert iOS Zoom */
  }

  .form-group label {
    font-size: 0.8rem;
  }

  .info-notice {
    padding: 0.2rem 0.25rem;
  }

  .info-notice p {
    font-size: 0.62rem;
    line-height: 1.2;
  }

  .selected-date-display,
  .selected-appointment-display {
    padding: 0.15rem 0.25rem;
    font-size: 0.7rem;
    font-size: 0.8rem;
  }

  .step-navigation {
    gap: 0.3rem;
    margin-top: 0.5rem;
  }

  .next-btn,
  .back-btn,
  .submit-btn {
    padding: 0.5rem 0.8rem;
    font-size: 0.85rem;
  }

  /* Admin Panel Mobile - NOCH KLEINER */
  .admin-panel {
    width: 98vw;
    height: 85vh; /* Etwas größer für sehr kleine Bildschirme */
    border-radius: 0;
    padding: 0.6rem;
    top: 7.5vh;
  }

  /* Mobile Week View - KOMPAKTER */
  .week-view {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.3rem;
    max-height: 45vh;
  }

  .day-column {
    min-height: 160px;
    padding: 0.4rem;
  }

  .day-header-admin {
    font-size: 0.8rem;
    margin-bottom: 0.4rem;
    padding-bottom: 0.2rem;
  }

  .appointment-card {
    padding: 0.4rem;
    font-size: 0.75rem;
    margin-bottom: 0.2rem;
  }

  .appointment-time {
    font-size: 0.7rem;
  }

  .appointment-customer {
    font-size: 0.75rem;
  }

  .appointment-service {
    font-size: 0.65rem;
  }

  .week-navigation {
    padding: 0.6rem;
    gap: 0.6rem;
  }

  .week-nav-btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }

  .week-display {
    font-size: 0.9rem;
  }

  .admin-time-slots {
    grid-template-columns: repeat(2, 1fr);
  }

  .admin-toggle {
    width: 50px;
    height: 50px;
    bottom: 15px;
    right: 15px;
  }

  .tab-content {
    height: calc(85vh - 160px);
  }

  .admin-header h3 {
    font-size: 1.1rem;
  }

  .tab-btn {
    padding: 0.7rem;
    font-size: 0.85rem;
  }

  /* Mobile Anpassungen für Admin Slots */
  .time-slot-admin {
    padding: 0.3rem;
    margin-bottom: 0.15rem;
    font-size: 0.7rem;
  }

  .slot-time {
    font-size: 0.75rem;
  }

  .slot-customer,
  .slot-service,
  .slot-status {
    font-size: 0.65rem;
  }
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
  background: #d4af37;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #b8941f;
}

/* ============================================================
   Zeitslot-Verfügbarkeit (X/3 frei)
   ============================================================ */

.time-slot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.slot-time-text {
  font-weight: 600;
  font-size: 0.85rem;
}

.slot-remaining {
  font-size: 0.6rem;
  opacity: 0.6;
  font-weight: 400;
}

.slot-remaining.low {
  color: #ff6b6b;
  opacity: 1;
  font-weight: 600;
}

.slot-remaining.medium {
  color: #d4af37;
  opacity: 0.9;
}

.time-slot.almost-full {
  border-color: #ff6b6b !important;
}

.time-slot.almost-full:hover {
  border-color: #ff6b6b !important;
  box-shadow: 0 0 8px rgba(255, 107, 107, 0.3);
}

/* Admin Wochenansicht: teilweise belegte Slots */
.time-slot-admin.partial {
  background: rgba(212, 175, 55, 0.15) !important;
  border-left: 3px solid #d4af37;
}

.time-slot-admin.partial .slot-customer {
  font-size: 0.7rem;
}

/* Admin Termin-Hinzufügen: Slots mit Verfügbarkeit */
.admin-time-slot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.admin-time-slot.almost-full {
  border-color: #ff6b6b !important;
}

.admin-time-slot.almost-full:hover {
  border-color: #ff6b6b !important;
  box-shadow: 0 0 8px rgba(255, 107, 107, 0.3);
}

/* ============================================================
   Legal Modals (Impressum / Datenschutz)
   ============================================================ */

.legal-modal .legal-modal-content {
  max-width: 800px;
  max-height: 85vh;
  overflow-y: auto;
  padding: 40px;
  background: #111;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 8px;
  position: relative;
  margin: 5vh auto;
  color: #ccc;
}

.legal-modal .close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  color: #d4af37;
  cursor: pointer;
  z-index: 10;
  line-height: 1;
}

.legal-modal .close:hover {
  color: #fff;
}

.legal-text h2 {
  color: #d4af37;
  margin-bottom: 20px;
  font-size: 1.6rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  padding-bottom: 10px;
}

.legal-text h3 {
  color: #d4af37;
  margin-top: 25px;
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.legal-text h4 {
  color: #e0c868;
  margin-top: 18px;
  margin-bottom: 8px;
  font-size: 1rem;
}

.legal-text p {
  margin-bottom: 12px;
  line-height: 1.7;
  font-size: 0.9rem;
}

.legal-text a {
  color: #d4af37;
  text-decoration: underline;
}

.legal-text a:hover {
  color: #fff;
}

.legal-text strong {
  color: #e0c868;
}

.legal-copyright {
  margin-top: 30px;
  padding-top: 15px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  font-size: 0.8rem;
  opacity: 0.6;
}

@media (max-width: 768px) {
  .legal-modal .legal-modal-content {
    padding: 25px 20px;
    margin: 2vh 10px;
    max-height: 90vh;
  }

  .legal-text h2 {
    font-size: 1.3rem;
  }
}

/* ============================================================
   Preisliste Section
   ============================================================ */

.pricing-section {
  padding: 80px 2rem;
  background: rgba(0, 0, 0, 0.95);
  overflow-x: hidden;
}

.pricing-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.pricing-title {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.pricing-subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}

.pricing-category {
  color: #d4af37;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  margin-top: 2rem;
  font-weight: 600;
}

.pricing-category:first-of-type {
  margin-top: 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  justify-content: center;
}
.pricing-grid-2 {
  grid-template-columns: repeat(2, 1fr) !important;
  max-width: 66%;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 480px) {
  .pricing-grid-2 {
    max-width: 100%;
  }
}


.price-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 10px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: auto;
  -webkit-hyphens: auto;
  min-width: 0;
}

.price-card:hover {
  border-color: rgba(212, 175, 55, 0.6);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.price-card.featured {
  border-color: #d4af37;
  background: rgba(212, 175, 55, 0.08);
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #d4af37;
  color: #000;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 1rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.price-card-header {
  margin-bottom: 1rem;
}

.price-card-header h3 {
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.price {
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
  color: #d4af37;
}

.price-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  hyphens: auto;
  -webkit-hyphens: auto;
}

.price-duration {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
  font-style: italic;
}

.pricing-cta {
  display: inline-block;
  background: #d4af37;
  color: #000;
  padding: 0.9rem 2.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.pricing-cta:hover {
  background: #e8c84a;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}

/* ============================================================
   Bewertungen Section
   ============================================================ */

.reviews-section {
  padding: 80px 2rem;
  background: rgba(0, 0, 0, 0.85);
}

.reviews-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.reviews-title {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 1rem;
}

.reviews-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.reviews-stars {
  color: #d4af37;
  font-size: 1.5rem;
  letter-spacing: 2px;
}

.reviews-score {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
}

.reviews-count {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.95rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.review-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 10px;
  padding: 2rem;
  text-align: left;
  transition: border-color 0.3s ease;
}

.review-card:hover {
  border-color: rgba(212, 175, 55, 0.4);
}

.review-header {
  margin-bottom: 1rem;
}

.review-stars {
  color: #d4af37;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.review-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
  font-style: italic;
}

.review-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.review-name {
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
}

.review-source {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
}

.reviews-link {
  color: #d4af37;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.reviews-link:hover {
  color: #e8c84a;
  text-decoration: underline;
}

/* ============================================================
   Mobile Anpassungen für neue Sektionen
   ============================================================ */

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

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

  .hero-cta {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }

  .pricing-title,
  .reviews-title {
    font-size: 2rem;
  }

  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }

  .pricing-category {
    font-size: 1rem;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .review-author {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
  }
}

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

  .hero-cta {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    width: 100%;
    text-align: center;
  }

  .pricing-section {
    padding: 40px 0.5rem;
  }

  .pricing-container {
    padding: 0;
  }

  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.3rem;
  }

  .price-card {
    padding: 0.5rem 0.3rem;
  }

  .price {
    font-size: 1.3rem;
  }

  .price-card-header h3 {
    font-size: 0.8rem;
  }

  .price-desc {
    font-size: 0.7rem;
    line-height: 1.3;
  }

  .featured-badge {
    font-size: 0.6rem;
    padding: 0.15rem 0.6rem;
    top: -8px;
    white-space: nowrap;
  }
}