/* prettier-ignore */
/*# sourceMappingURL=user.css.map */

/* 1. Verbesserte Typografie mit modernen Schriften */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --primary-color: #007bff;
  --primary-gradient: linear-gradient(135deg, #007bff 0%, #0056d6 100%);
  --accent-gradient: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
  --text-gradient: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
  --card-shadow: 0 20px 40px rgba(0, 123, 255, 0.1);
  --card-shadow-hover: 0 30px 60px rgba(0, 123, 255, 0.15);
  --glass-effect: rgba(255, 255, 255, 0.1);
  --backdrop-blur: blur(10px);
}

/* 2. Modernere Navbar mit Glasmorphismus */
.navbar {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-brand img {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-brand:hover img {
  transform: scale(1.05);
}

.nav-link {
  position: relative;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-gradient);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-50%);
}

.nav-link:hover::after {
  width: 80%;
}

/* 3. Hero Section */
#home {
    position: relative;
    min-height: 85vh;
    overflow: hidden;
    /* Gradient Overlay + Hintergrundbild */
    background:
        linear-gradient(135deg, rgba(0, 102, 255, 0.9) 0%, rgba(77, 77, 255, 0.85) 100%),
        url('/assets/img/hero-2.jpg') center/cover;
    background-attachment: fixed;
}

/* Text Shadow für bessere Lesbarkeit */
#home h1 {
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

#home .text-yellow {
    color: #FCD34D !important;
}

/* Wave SVG bleibt optional */
.wave-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 1;
}

.wave-container svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 120px;
}

/* Zusätzliche Overlay-Effekte */
#home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.05) 0%, transparent 50%);
    z-index: 1;
}

/* Responsive */
@media (max-width: 768px) {
    #home {
        background-attachment: scroll;
        min-height: 80vh;
    }
}

/* 4. Moderne Buttons mit Hover-Effekten */
.btn-primary {
  background: var(--primary-gradient);
  border: none;
  border-radius: 50px;
  padding: 12px 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 10px 30px rgba(0, 123, 255, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 123, 255, 0.4);
}

.btn-default {
  background: rgba(191, 191, 191, 0.1);
  border: 2px solid rgba(191, 191, 191, 0.3);
  color: white;
  border-radius: 50px;
  padding: 10px 28px;
  font-weight: 500;
  backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-default:hover {
  background: rgba(191, 191, 191, 0.2);
  border-color: rgba(191, 191, 191, 0.5);
  transform: translateY(-2px);
  color: white;
}

.btn-default-colorblack {
  color: black;
}

.btn-default-colorblack:hover {
  color: black;
}


/* 5. Verbesserte Service-Karten mit Glasmorphismus */
.services-card-shadow {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--card-shadow);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.services-card-shadow::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-gradient);
  transform: scaleX(0);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.services-card-shadow:hover::before {
  transform: scaleX(1);
}

.services-card-shadow img {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 5px 15px rgba(0, 123, 255, 0.2));
}

/* 6. Animierte Überschriften */
h2, h3, h4 {
  font-family: 'Space Grotesk', sans-serif !important;
  font-weight: 600;
  position: relative;
}

.display-5 {
  background: var(--text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

/* 7. Verbesserte About-Section */
#about .col-md-6.col-lg-3 {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#about .col-md-6.col-lg-3:hover {
  transform: translateY(-5px);
}

#about img {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 5px 15px rgba(0, 123, 255, 0.1));
}

#about .col-md-6.col-lg-3:hover img {
  transform: scale(1.1);
  filter: drop-shadow(0 10px 25px rgba(0, 123, 255, 0.2));
}

/* 8. Moderne CTA-Section */
#contact-cta {
  background: linear-gradient(135deg, rgb(0, 102, 255) 0%, rgb(77, 77, 255) 100%),
  position: relative;
  overflow: hidden;
}

#contact-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* 9. Verbesserte Animationen */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll {
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* 10. Responsive Optimierungen */
@media (max-width: 768px) {
  #home h1 {
    font-size: 2.5rem !important;
  }

  .services-card-shadow {
    margin-bottom: 2rem;
  }

  .navbar {
    background: rgba(255, 255, 255, 0.98) !important;
  }
}

/* 11. Scroll-Indikatoren */
.scroll-indicator {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  z-index: 9999;
}

.scroll-progress {
  height: 100%;
  background: var(--primary-gradient);
  width: 0%;
  transition: width 0.1s;
}

/* 12. Verbesserte Footer-Styles */
.bg-1000 {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

/* 13. Micro-Animationen für bessere UX */
* {
  scroll-behavior: smooth;
}

a, button {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 14. Cookie Banner Styles */
#cookieBanner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid #e0e0e0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    font-family: 'Poppins', sans-serif;
}

#cookieBanner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h4 {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.cookie-text p {
    margin: 0;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.cookie-text a {
    color: #007bff;
    text-decoration: none;
}

.cookie-text a:hover {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
}

.cookie-btn-primary {
    background-color: #007bff;
    color: white;
}

.cookie-btn-primary:hover {
    background-color: #0056b3;
    transform: translateY(-1px);
}

.cookie-btn-secondary {
    background-color: transparent;
    color: #666;
    border: 1px solid #ddd;
}

.cookie-btn-secondary:hover {
    background-color: #f8f9fa;
    border-color: #bbb;
}

.cookie-btn-settings {
    background-color: #6c757d;
    color: white;
}

.cookie-btn-settings:hover {
    background-color: #545b62;
}

/* Cookie Settings Modal */
/* Cookie Banner Styles */
#cookieBanner {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 9999;
    transition: bottom 0.5s ease-in-out;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

#cookieBanner.show {
    bottom: 0;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookie-text {
    flex: 1;
}

.cookie-text h4 {
    margin: 0 0 10px 0;
    font-size: 18px;
    color: #333;
    font-weight: 600;
}

.cookie-text p {
    margin: 0;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.cookie-text a {
    color: #007bff;
    text-decoration: none;
}

.cookie-text a:hover {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    white-space: nowrap;
}

.cookie-btn-primary {
    background: #007bff;
    color: white;
}

.cookie-btn-primary:hover {
    background: #0056b3;
    transform: translateY(-1px);
}

.cookie-btn-secondary {
    background: #6c757d;
    color: white;
}

.cookie-btn-secondary:hover {
    background: #5a6268;
    transform: translateY(-1px);
}

.cookie-btn-settings {
    background: white;
    color: #333;
    border: 1px solid #ddd;
}

.cookie-btn-settings:hover {
    background: #f8f9fa;
    border-color: #aaa;
}

/* Cookie Modal Styles */
#cookieModal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookie-modal-content {
    background: white;
    border-radius: 12px;
    padding: 30px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.cookie-modal-header h3 {
    margin: 0;
    font-size: 24px;
    color: #333;
}

.cookie-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-close:hover {
    color: #333;
}

.cookie-category {
    margin-bottom: 25px;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.cookie-category h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.cookie-category p {
    margin: 0;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.cookie-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 24px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

input:checked + .cookie-slider {
    background-color: #007bff;
}

input:checked + .cookie-slider:before {
    transform: translateX(26px);
}

.cookie-slider.disabled {
    background-color: #28a745;
    cursor: not-allowed;
}

.cookie-modal-footer {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

/* Responsive Design für Tablets */
@media (max-width: 768px) {
    #cookieBanner {
        padding: 15px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }

    .cookie-text h4 {
        font-size: 16px;
    }

    .cookie-text p {
        font-size: 13px;
    }

    .cookie-buttons {
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
        min-width: 120px;
        padding: 12px 16px;
        font-size: 13px;
    }

    .cookie-modal-content {
        margin: 10px;
        padding: 20px;
        max-height: 90vh;
    }

    .cookie-modal-header h3 {
        font-size: 20px;
    }

    .cookie-category {
        padding: 15px;
        margin-bottom: 15px;
    }

    .cookie-category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .cookie-modal-footer {
        flex-direction: column;
    }

    .cookie-modal-footer .cookie-btn {
        width: 100%;
    }
}

/* Responsive Design für Smartphones */
@media (max-width: 480px) {
    #cookieBanner {
        padding: 12px;
    }

    .cookie-content {
        gap: 15px;
    }

    .cookie-text h4 {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .cookie-text p {
        font-size: 12px;
        line-height: 1.4;
    }

    .cookie-buttons {
        gap: 8px;
    }

    .cookie-btn {
        padding: 10px 12px;
        font-size: 12px;
        min-width: auto;
    }

    /* Buttons in voller Breite auf sehr kleinen Screens */
    .cookie-btn-secondary,
    .cookie-btn-settings {
        flex: 1;
    }

    .cookie-btn-primary {
        flex: 0 0 100%;
        order: -1; /* Hauptbutton nach oben */
    }

    .cookie-modal-content {
        padding: 15px;
        margin: 5px;
    }

    .cookie-modal-header h3 {
        font-size: 18px;
    }

    .cookie-category {
        padding: 12px;
        margin-bottom: 12px;
    }

    .cookie-category h4 {
        font-size: 14px;
    }

    .cookie-category p {
        font-size: 12px;
    }

    .cookie-switch {
        width: 44px;
        height: 22px;
    }

    .cookie-slider:before {
        height: 16px;
        width: 16px;
    }

    input:checked + .cookie-slider:before {
        transform: translateX(22px);
    }
}

/* Sehr kleine Geräte (unter 360px) */
@media (max-width: 360px) {
    #cookieBanner {
        padding: 10px;
    }

    .cookie-text h4 {
        font-size: 14px;
    }

    .cookie-text p {
        font-size: 11px;
    }

    .cookie-btn {
        padding: 8px 10px;
        font-size: 11px;
    }

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cookie-btn {
        width: 100%;
    }
}

/* Scrollbar Styling für Modal */
.cookie-modal-content::-webkit-scrollbar {
    width: 6px;
}

.cookie-modal-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.cookie-modal-content::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
}

.cookie-modal-content::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Touch-friendly adjustments */
@media (hover: none) and (pointer: coarse) {
    .cookie-btn {
        min-height: 44px; /* Apple's recommended touch target size */
    }

    .cookie-close {
        width: 44px;
        height: 44px;
    }

    .cookie-switch {
        margin: 5px 0;
    }
}

/* 15. Error Site Style */
.error-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
      linear-gradient(135deg, rgba(0, 102, 255, 0.9) 0%, rgba(77, 77, 255, 0.85) 100%),
      url('/assets/img/hero-2.jpg') center/cover;
  position: relative;
  overflow: hidden;
}

.error-content {
  text-align: center;
  z-index: 2;
  position: relative;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  max-width: 600px;
  margin: 0 auto;
}

.error-number {
  font-size: 8rem;
  font-weight: 700;
  color: #007bff;
  margin: 0;
  line-height: 1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.error-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #1f2937;
  margin: 1rem 0;
}

.error-message {
  font-size: 1.1rem;
  color: #6b7280;
  margin: 1.5rem 0;
  line-height: 1.6;
}

.error-actions {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.floating-shapes div {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.floating-shapes div:nth-child(1) {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.floating-shapes div:nth-child(2) {
  width: 120px;
  height: 120px;
  top: 60%;
  right: 10%;
  animation-delay: 2s;
}

.floating-shapes div:nth-child(3) {
  width: 60px;
  height: 60px;
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

.floating-shapes div:nth-child(4) {
  width: 100px;
  height: 100px;
  top: 10%;
  right: 30%;
  animation-delay: 1s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

@media (max-width: 768px) {
  .error-number {
    font-size: 6rem;
  }

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

  .error-content {
    margin: 1rem;
    padding: 1.5rem;
  }

  .error-actions {
    flex-direction: column;
    align-items: center;
  }
}
