/* Optimierte Tailwind CSS - assets/css/tailwind-compiled.css */
/* Enthält nur die tatsächlich verwendeten Klassen */

/* ===== Reset & Base ===== */
*, ::before, ::after {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: #e5e7eb;
}

html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
  tab-size: 4;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  line-height: inherit;
}

h1, h2, h3, h4, h5, h6{
  font-size: inherit;
  font-weight: inherit;
}

a {
  color: inherit;
  text-decoration: inherit;
}

b, strong {
  font-weight: bolder;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: inherit;
  font-size: 100%;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
  background-color: transparent;
  background-image: none;
  text-transform: none;
  cursor: pointer;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ===== Container ===== */
.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}

@media (min-width: 640px) {
  .container { max-width: 640px; }
}

@media (min-width: 768px) {
  .container { max-width: 768px; }
}

@media (min-width: 1024px) {
  .container { max-width: 1024px; }
}

@media (min-width: 1280px) {
  .container { max-width: 1280px; }
}

/* ===== Positioning ===== */
.fixed { position: fixed; }
.absolute { position: absolute; }
.relative { position: relative; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-0 { top: 0; }
.right-6 { right: 1.5rem; }
.bottom-6 { bottom: 1.5rem; }

/* ===== Display ===== */
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.inline-block { display: inline-block; }
.grid { display: grid; }
.hidden { display: none; }
.block { display: block; }

/* ===== Flexbox ===== */
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.flex-1 { flex: 1 1 0%; }
.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

/* ===== Grid ===== */
.gap-4 { gap: 1rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }

/* ===== Spacing ===== */
.mx-auto { margin-left: auto; margin-right: auto; }
.my-8 { margin-top: 2rem; margin-bottom: 2rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-4 { margin-top: 1rem; }
.mt-12 { margin-top: 3rem; }
.mr-2 { margin-right: 0.5rem; }
.mr-3 { margin-right: 0.75rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mb-20 { margin-bottom: 5rem; }

.p-2 { padding: 0.5rem; }
.p-8 { padding: 2rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.pt-4 { padding-top: 1rem; }
.pt-20 { padding-top: 5rem; }
.pt-32 { padding-top: 8rem; }
.pb-4 { padding-bottom: 1rem; }
.pb-12 { padding-bottom: 3rem; }
.pb-20 { padding-bottom: 5rem; }

/* ===== Sizing ===== */
.h-6 { height: 1.5rem; }
.h-8 { height: 2rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-16 { height: 4rem; }
.h-20 { height: 5rem; }
.h-32 { height: 8rem; }
.h-48 { height: 12rem; }
.h-full { height: 100%; }
.w-12 { width: 3rem; }
.w-20 { width: 5rem; }
.w-32 { width: 8rem; }
.w-full { width: 100%; }
.max-w-xs { max-width: 20rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-6xl { max-width: 72rem; }

/* ===== Typography ===== */
.text-sm { font-size: 0.938rem; line-height: 1.375rem; }
.text-lg { font-size: 1.25rem; line-height: 1.875rem; }
.text-xl { font-size: 1.375rem; line-height: 1.875rem; }
.text-2xl { font-size: 1.625rem; line-height: 2.125rem; }
.text-3xl { font-size: 2rem; line-height: 2.375rem; }
.text-4xl { font-size: 2.375rem; line-height: 2.625rem; }
.text-5xl { font-size: 3rem; line-height: 1; }

.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }

.text-left { text-align: left; }
.text-center { text-align: center; }

/* ===== Text Colors ===== */
.text-white { color: #ffffff; }
.text-gray-600 { color: #4b5563; }
.text-gray-700 { color: #374151; }
.text-green-400 { color: #4ade80; }
.text-green-500 { color: #10b981; }
.text-primary-orange { color: #EE7203; }
.text-primary-brown { color: #48443D; }
.text-white\/40 { color: rgba(255, 255, 255, 0.4); }
.text-white\/70 { color: rgba(255, 255, 255, 0.7); }

/* ===== Backgrounds ===== */
.bg-white { background-color: #ffffff; }
.bg-gray-50 { background-color: #f9fafb; }
.bg-gray-900 { background-color: #111827; }
.bg-primary-orange { background-color: #EE7203; }
.bg-primary-brown { background-color: #48443D; }
.bg-light-orange { background-color: #FFF5ED; }
.bg-white\/10 { background-color: rgba(255, 255, 255, 0.1); }

/* ===== Borders ===== */
.border { border-width: 1px; }
.border-t { border-top-width: 1px; }
.border-b { border-bottom-width: 1px; }
.border-gray-600 { border-color: #4b5563; }
.border-white\/20 { border-color: rgba(255, 255, 255, 0.2); }
.rounded-lg { border-radius: 0.5rem; }
.rounded-full { border-radius: 9999px; }

/* ===== Effects ===== */
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }
.opacity-50 { opacity: 0.5; }

/* ===== Transitions ===== */
.transition { 
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.duration-300 { transition-duration: 300ms; }
.ease-in-out { transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }

/* ===== Transform ===== */
.transform { transform: translateX(0); }
.translate-x-full { transform: translateX(100%); }
.translate-x-0 { transform: translateX(0); }

/* ===== Hover States ===== */
.hover\:bg-gray-50:hover { background-color: #f9fafb; }
.hover\:bg-light-orange:hover { background-color: #FFF5ED; }
.hover\:text-primary-orange:hover { color: #EE7203; }
.hover\:bg-hover-orange:hover { background-color: #dc5a00; }

/* ===== Z-Index ===== */
.z-10 { z-index: 10; }
.z-50 { z-index: 50; }
.z-1000 { z-index: 1000; }

/* ===== Other Utilities ===== */
.object-cover { object-fit: cover; }
.not-italic { font-style: normal; }
.underline { text-decoration: underline; }
.overflow-y-auto { overflow-y: auto; }

/* ===== Space Between ===== */
.space-x-4 > * + * { margin-left: 1rem; }
.space-x-6 > * + * { margin-left: 1.5rem; }
.space-x-8 > * + * { margin-left: 2rem; }
.space-y-1 > * + * { margin-top: 0.25rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }

/* ===== Responsive Utilities ===== */
@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .md\:flex-row { flex-direction: row; }
  .md\:mb-0 { margin-bottom: 0; }
}

@media (min-width: 1024px) {
  .lg\:hidden { display: none !important; }
  .lg\:flex { display: flex !important; }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:w-1\/2 { width: 50%; }
  .lg\:flex-row { flex-direction: row; }
  .lg\:flex-row-reverse { flex-direction: row-reverse; }
  .lg\:gap-12 { gap: 3rem; }
  .lg\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .lg\:py-4 { padding-top: 1rem; padding-bottom: 1rem; }
  .lg\:pt-24 { padding-top: 6rem; }
  .lg\:pb-20 { padding-bottom: 5rem; }
  .lg\:h-10 { height: 2.5rem; }
  .lg\:text-4xl { font-size: 2.375rem; line-height: 2.625rem; }
  .lg\:text-5xl { font-size: 3rem; line-height: 1; } 
}
/* Mobile Menu Sichtbarkeit Fix */
@media (max-width: 1023px) {
  .lg\:hidden { display: block !important; }
  .lg\:flex { display: none !important; }
}
/* ===== Custom Font Classes ===== */
.font-manrope { font-family: 'Manrope', sans-serif; }
.font-dm-serif { font-family: 'DM Serif Display', serif; }

/* ===== Custom Components ===== */
.btn-primary {
  background-color: #EE7203;
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.btn-primary:hover { 
  background-color: #dc5a00; 
}

.btn-outline-primary {
  color: #EE7203;
  border: 2px solid #EE7203;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.btn-outline-primary:hover {
  background-color: #EE7203;
  color: white;
}

.hero-gradient {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.process-number {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #EE7203;
  color: #ffffff;
  border-radius: 50%;
  font-size: 1.25rem;
  font-weight: 600;
}

/* ===== Star Rating ===== */
.ratings.five::before {
  content: "★★★★★";
  color: #FFD700;
  font-size: 1.2rem;
}

/* ===== Accordion ===== */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.accordion-content.active {
  max-height: 500px;
  transition: max-height 0.3s ease-in;
}

/* ===== Font Awesome Classes (Placeholder) ===== */
/* Diese Klassen werden von Font Awesome selbst bereitgestellt */
.fas, .far, .fab { font-family: 'Font Awesome 5 Free', 'Font Awesome 5 Brands'; }
.fa-arrow-up::before { content: "\f062"; }
.fa-ban::before { content: "\f05e"; }
.fa-bars::before { content: "\f0c9"; }
.fa-check::before { content: "\f00c"; }
.fa-check-circle::before { content: "\f058"; }
.fa-clock::before { content: "\f017"; }
.fa-comments::before { content: "\f086"; }
.fa-facebook-f::before { content: "\f39e"; }
.fa-instagram::before { content: "\f16d"; }
.fa-map-marker-alt::before { content: "\f3c5"; }
.fa-phone-alt::before { content: "\f879"; }
.fa-plus::before { content: "\f067"; }
.fa-shield-alt::before { content: "\f3ed"; }
.fa-times::before { content: "\f00d"; }

/* ===== Mobile Menu WICHTIG - Diese Styles fehlten! ===== */
#mobileMenu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background-color: white;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: right 0.3s ease-in-out;
}

#mobileMenu.active {
  right: 0;
}

/* Mobile Menu Item Hover */
.mobile-menu-item {
  display: block;
  width: 100%;
  text-align: left;
}

/* Ensure the button is clickable on mobile */
#mobileMenuBtn {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

/* Override für Transform-Klassen beim Mobile Menu */
#mobileMenu {
  position: fixed !important;
  top: 0 !important;
  right: -100% !important;
  width: 100% !important;
  max-width: 400px !important;
  height: 100vh !important;
  background-color: white !important;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1) !important;
  z-index: 1000 !important;
  transition: right 0.3s ease-in-out !important;
  /* Entferne alle transform styles */
  transform: none !important;
}

#mobileMenu.active {
  right: 0 !important;
  /* Entferne alle transform styles */
  transform: none !important;
}
/* Mobile Menu Visibility Fix - Ganz am Ende der Datei */
.mobile-only {
  display: block;
}

@media (min-width: 1024px) {
  .mobile-only {
    display: none !important;
  }
}

/* Stelle sicher, dass der Button auf Mobile sichtbar ist */
@media (max-width: 1023px) {
  #mobileMenuBtn {
    display: block !important;
  }
}