/* Wake Beauty Custom Styles */
:root {
  --burgundy: #96004b;
  --sage: #71867c;
  --olive: #6a786c;
  --pink-600: #db2777;
  --pink-700: #be185d;
}

/* Font Families */
.font-serif {
  font-family: Georgia, "Times New Roman", serif;
}

/* Custom Colors */
.bg-burgundy-600 {
  background-color: var(--burgundy);
}
.text-burgundy-900 {
  color: var(--burgundy);
}
.border-burgundy-300 {
  border-color: var(--burgundy);
}

.bg-sage-50 {
  background-color: #f6f7f6;
}
.bg-sage-100 {
  background-color: #e3e7e3;
}
.text-sage-700 {
  color: var(--sage);
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Custom animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

/* Hover effects */
.hover-scale:hover {
  transform: scale(1.02);
  transition: transform 0.3s ease;
}

/* Treatwell Widget Styling */
.treatwell-widget-container {
  min-height: 400px;
  position: relative;
}

#wahanda-online-booking-widget-iframe {
  width: 100%;
  min-height: 400px;
  border: none;
  border-radius: 8px;
}

/* Loading animation for Treatwell widget */
.treatwell-widget-container::before {
  content: "Buchungswidget wird geladen...";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #6b7280;
  font-size: 14px;
  z-index: 1;
}

/* Hide loading text when widget is loaded */
.treatwell-widget-container iframe + ::before {
  display: none;
}

/* Mobile optimizations */
@media (max-width: 768px) {
  .text-5xl {
    font-size: 2.5rem;
    line-height: 1.1;
  }
  .text-6xl {
    font-size: 3rem;
    line-height: 1.1;
  }

  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .grid {
    gap: 1.5rem;
  }

  /* Mobile menu */
  #mobile-menu {
    background-color: white;
    border-top: 1px solid #e5e7eb;
  }
}

/* Print styles */
@media print {
  .sticky {
    position: static;
  }

  .shadow-lg,
  .shadow-xl,
  .shadow-2xl {
    box-shadow: none;
    border: 1px solid #e5e7eb;
  }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* Focus styles for better accessibility */
a:focus,
button:focus {
  outline: 2px solid var(--pink-600);
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .bg-gray-50 {
    background-color: white;
  }

  .text-gray-700 {
    color: black;
  }

  .border-gray-200 {
    border-color: black;
  }
}

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

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--pink-600);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--pink-700);
}

#wahanda-online-booking-widget-iframe, #wahanda-online-booking-widget-iframe iframe{
  min-height: 1100px;
}
@media (min-width: 1024px) {
  #wahanda-online-booking-widget-iframe, #wahanda-online-booking-widget-iframe iframe{
    min-height: 1420px;
  }
}

.map-background{
    background-image: url('public/images/map-blurred.jpg');
    background-size: cover;
    background-position: center;
    width: 100%;
    position: relative;
}
@media (max-width: 767px) {
  .header-contact {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: end;
  }

  .header-contact a {
    margin-left: 0 !important;
  }

  .iframe-container {
    padding: 0;
    transform: scale(0.8) translateX(-63px);
    width: 130%;
  }

  .logo{
    aspect-ratio: 1 / 1;
  }
}

