/* Arus Germany Custom Properties */
:root {
  --primary-color: #2c3e50;     /* Dunkelblau für Vertrauen */
  --secondary-color: #e8f4f8;   /* Helles Blau für Wellness */
  --accent-color: #d4a574;      /* Warmes Gold für Premium */
  --text-primary: #2c3e50;      /* Dunkler Text */
  --text-secondary: #6c757d;    /* Grauer Text */
  --background: #ffffff;        /* Weißer Hintergrund */
  --cozy-warm: #f8f6f3;        /* Warmer Hintergrund */
}

/* Bootstrap Custom Overrides */
.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #1a252f;
  border-color: #1a252f;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(44, 62, 80, 0.3);
}

.text-primary {
  color: var(--primary-color) !important;
}

/* Base Styles */
body {
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  scroll-behavior: smooth;
}

/* Navigation Styles */
.navbar {
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.navbar-brand img {
  transition: transform 0.3s ease;
}

.navbar-brand:hover img {
  transform: scale(1.05);
}

.nav-link {
  font-weight: 500;
  color: var(--text-primary) !important;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--accent-color) !important;
}

.navbar .d-flex a {
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.navbar .d-flex a:hover {
  color: var(--accent-color);
  transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/header-image.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
  z-index: 2;
}

.hero-section .container {
  z-index: 3;
}

.hero-section h1 {
  color: white;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-image-placeholder {
  background: var(--secondary-color) !important;
  border: 2px dashed var(--accent-color);
  transition: all 0.3s ease;
}

.hero-image-placeholder:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Shop Cards */
.shop-card {
  transition: all 0.3s ease;
  border-radius: 15px !important;
}

.shop-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
}

.shop-card .card-body {
  padding: 2rem !important;
}

.shop-card .card-title {
  color: var(--primary-color);
  font-size: 1.25rem;
}

.shop-card .card-text {
  color: var(--text-secondary);
  line-height: 1.6;
}

.bio-card {
  border: 2px solid #7cb342 !important;
  background: linear-gradient(135deg, #f8fff8 0%, #e8f5e8 100%);
}

.bio-card .card-title {
  color: #2e7d32;
}

.btn-success {
  background-color: #7cb342;
  border-color: #7cb342;
}

.btn-success:hover {
  background-color: #689f38;
  border-color: #689f38;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(124, 179, 66, 0.3);
}

/* Product Recommendation Section */
.product-image-placeholder {
  background: var(--secondary-color) !important;
  border: 2px dashed var(--accent-color);
  transition: all 0.3s ease;
}

.product-image-placeholder:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Testimonial */
.testimonial {
  background: var(--cozy-warm) !important;
  border-left: 4px solid var(--accent-color);
}

.testimonial blockquote p {
  font-style: italic;
  color: var(--text-primary);
  font-size: 1.1rem;
}

.testimonial cite {
  font-weight: 600;
  color: var(--accent-color);
}

/* Contact Form */
.contact-form .form-control {
  border: 2px solid #e9ecef;
  border-radius: 10px;
  padding: 15px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem rgba(212, 165, 116, 0.25);
}

.contact-form .form-label {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

/* Footer */
footer {
  background-color: var(--primary-color) !important;
}

footer img {
  filter: brightness(0) invert(1);
}

footer a:hover {
  color: var(--accent-color) !important;
  transform: translateY(-2px);
}

/* Section Spacing */
section {
  padding: 5rem 0;
}

.bg-light {
  background-color: var(--cozy-warm) !important;
}

/* Typography */
.display-4, .display-5, .display-6 {
  color: var(--primary-color);
  font-weight: 700;
}

h2, h3, h4, h5 {
  color: var(--primary-color);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll {
  animation: fadeInUp 0.6s ease forwards;
}

/* Star Rating */
.fas.fa-star.text-warning {
  color: #ffc107 !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-section {
    padding-top: 6rem;
  }
  
  .hero-section h1 {
    font-size: 2.5rem;
  }
  
  .shop-card {
    margin-bottom: 1.5rem;
  }
  
  section {
    padding: 3rem 0;
  }
  
  .display-4, .display-5, .display-6 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .btn-lg {
    padding: 12px 24px;
    font-size: 1rem;
  }
  
  .shop-card .card-body {
    padding: 1.5rem !important;
  }
}

/* Loading Animation */
body {
  opacity: 0;
  transition: opacity 0.3s ease;
}

body.loaded {
  opacity: 1;
}

/* Smooth Scrolling Enhancement */
html {
  scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--accent-color);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #c19660;
}