:root {
  --primary-gold: #D4AF37;
  --warm-brown: #8B4513;
  --cream: #FFF8DC;
  --dark-brown: #3E2723;
  --light-gold: #F4E4BC;
  --success-green: #28a745;
  --error-red: #dc3545;
}

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, var(--cream) 0%, var(--light-gold) 100%);
  min-height: 100vh;
  padding-top: 80px; /* Platz für fixed navbar */
}

.hero-section {
  background: linear-gradient(135deg, var(--warm-brown) 0%, var(--dark-brown) 100%);
  color: white;
  padding: 120px 0 80px 0; /* Mehr Abstand oben */
  position: relative;
  overflow: hidden;
  margin-top: 20px; /* Abstand zur Navbar */
}

/* Hero mit Hintergrundbild */
.hero-with-background {
  background: linear-gradient(rgba(139, 69, 19, 0.7), rgba(62, 39, 35, 0.8)), 
              url('hero-background.jpg') center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

/* Hero-Bild Styles (Alternative zum Logo) */
.hero-image {
  max-width: 400px;
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
  transition: all 0.3s ease;
  border: 4px solid var(--primary-gold);
}

.hero-image:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  border-color: var(--light-gold);
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="rgba(255,255,255,0.1)"><path d="M0,20 Q250,80 500,20 T1000,20 V100 H0 Z"/></svg>');
  background-size: cover;
}

.hero-content {
  position: relative;
  z-index: 3;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: 1.3rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.hero-logo {
  max-width: 300px;
  width: 100%;
  height: auto;
  opacity: 0.9;
  filter: drop-shadow(3px 3px 8px rgba(0,0,0,0.3)) brightness(1.2);
  transition: all 0.3s ease;
  background: linear-gradient(135deg, var(--warm-brown) 0%, var(--dark-brown) 100%);
  border-radius: 50%;
  padding: 40px;
  box-shadow: 0 8px 25px rgba(139, 69, 19, 0.4);
}

.hero-logo:hover {
  opacity: 1;
  transform: scale(1.05);
  filter: drop-shadow(5px 5px 12px rgba(0,0,0,0.4)) brightness(1.3);
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--warm-brown) 100%);
  box-shadow: 0 12px 35px rgba(139, 69, 19, 0.5);
}

.contact-card, .admin-card, .main-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  padding: 40px;
  margin-top: 60px; /* Mehr Abstand */
  margin-bottom: 60px;
  position: relative;
  z-index: 3;
  border: 3px solid var(--primary-gold);
}

.form-control {
  border: 2px solid #e9ecef;
  border-radius: 12px;
  padding: 15px 20px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--warm-brown) 100%);
  border: none;
  border-radius: 12px;
  padding: 15px 40px;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
  background: linear-gradient(135deg, var(--warm-brown) 0%, var(--primary-gold) 100%);
}

.info-cards {
  margin-top: 60px;
}

.info-card, .card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border-top: 4px solid var(--primary-gold);
  margin-bottom: 30px;
}

.info-card:hover, .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.category-card {
  transition: all 0.4s ease;
  border: 2px solid transparent;
  overflow: hidden;
}

.category-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0,0,0,0.2);
  border-color: var(--primary-gold) !important;
}

.category-card .card-title {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  margin-bottom: 15px;
}

a:hover .category-card .card-title {
  color: var(--primary-gold) !important;
}

a:hover .category-card {
  text-decoration: none;
}

.info-icon {
  font-size: 3rem;
  color: var(--primary-gold);
  margin-bottom: 20px;
}

.map-container {
  margin-top: 60px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--dark-brown);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, var(--primary-gold), var(--warm-brown));
  border-radius: 2px;
}

.navbar {
  background: rgba(255, 248, 220, 0.95) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  padding: 25px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.navbar-scrolled {
  padding: 18px 0;
  background: rgba(255, 248, 220, 0.98) !important;
  box-shadow: 0 2px 25px rgba(0,0,0,0.15);
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-brown) !important;
  transition: all 0.3s ease;
  text-decoration: none;
}

.navbar-logo {
  height: 95px;
  width: auto;
  max-width: 280px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.2)) brightness(1.1) contrast(1.1);
  transform-origin: center;
  background: linear-gradient(135deg, var(--warm-brown) 0%, var(--dark-brown) 100%);
  border-radius: 50%;
  padding: 18px;
  box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.navbar-scrolled .navbar-logo {
  height: 70px;
  transform: scale(0.9);
  padding: 14px;
  box-shadow: 0 3px 12px rgba(139, 69, 19, 0.25);
}

.navbar-logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3)) brightness(1.2) contrast(1.2);
  box-shadow: 0 6px 20px rgba(139, 69, 19, 0.4);
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--warm-brown) 100%);
}

.navbar-scrolled .navbar-logo:hover {
  transform: scale(1.0);
  filter: drop-shadow(1px 1px 2px rgba(0,0,0,0.3)) brightness(1.2) contrast(1.2);
  box-shadow: 0 4px 15px rgba(139, 69, 19, 0.4);
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--warm-brown) 100%);
}

/* Hamburger Menu Button */
.navbar-toggler {
  border: 2px solid var(--primary-gold);
  border-radius: 12px;
  padding: 8px 12px;
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--warm-brown) 100%);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.navbar-toggler:hover {
  background: linear-gradient(135deg, var(--warm-brown) 0%, var(--dark-brown) 100%);
  border-color: var(--warm-brown);
  transform: translateY(-1px);
  box-shadow: 0 6px 15px rgba(139, 69, 19, 0.4);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.4);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  filter: invert(1);
}

.nav-link {
  color: var(--dark-brown) !important;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 12px 20px !important;
  margin: 0 5px;
  border-radius: 25px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  text-decoration: none;
  background: transparent;
  border: 2px solid transparent;
}

.nav-link:hover {
  color: var(--cream) !important;
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--warm-brown) 100%);
  border-color: var(--primary-gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.nav-link:active {
  transform: translateY(0);
}

/* Active/Current Page Link */
.nav-link.active {
  color: var(--cream) !important;
  background: linear-gradient(135deg, var(--warm-brown) 0%, var(--dark-brown) 100%);
  border-color: var(--warm-brown);
  box-shadow: 0 4px 15px rgba(139, 69, 19, 0.4);
}

.nav-link.active:hover {
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--warm-brown) 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.4);
}

/* Admin Panel Styles */
#sidebar {
  width: 250px;
  background: var(--dark-brown);
  padding: 20px;
  min-height: 100vh;
}

#sidebar a {
  color: #ffffff;
  display: block;
  padding: 10px;
  text-decoration: none;
  border-radius: 8px;
  margin-bottom: 5px;
  transition: all 0.3s ease;
}

#sidebar a:hover {
  background: var(--primary-gold);
  color: var(--dark-brown);
}

#content {
  flex-grow: 1;
  padding: 20px;
}

.table {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.table thead th {
  background: var(--primary-gold);
  color: var(--dark-brown);
  font-weight: 600;
  border: none;
}

/* Success/Error Messages */
.success-icon {
  font-size: 4rem;
  color: var(--success-green);
  margin-bottom: 30px;
}

.error-icon {
  font-size: 4rem;
  color: var(--error-red);
  margin-bottom: 30px;
}

.message-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  padding: 60px 40px;
  text-align: center;
  border: 3px solid var(--primary-gold);
  max-width: 600px;
}

.message-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--dark-brown);
  margin-bottom: 20px;
}

.message-text {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 40px;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-section {
    padding: 80px 0 40px 0;
  }
  
  .main-card, .contact-card {
    margin-top: 20px;
    margin-bottom: 30px;
    padding: 25px;
  }

  .contact-form-card {
    margin-top: 0;
    padding: 20px;
  }
  
  body {
    padding-top: 60px;
  }
  
  .navbar {
    padding: 15px 0;
  }
  
  .navbar-scrolled {
    padding: 12px 0;
  }
  
  .hero-logo {
    max-width: 200px;
    padding: 25px;
  }
  
  .navbar-logo {
    max-width: 120px;
    height: auto;
  }
  
  .navbar-scrolled .navbar-logo {
    max-width: 100px;
  }
  
  .nav-link {
    padding: 10px 15px;
  }
  
  .nav-link:hover {
    padding-left: 20px;
  }
  
  .navbar-collapse {
    background: rgba(255, 248, 220, 0.98);
    padding: 15px;
    border-radius: 10px;
    margin-top: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }
}

/* Kontakt-Seite Styles */
.contact-form-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  border: 2px solid var(--primary-gold);
  height: 100%;
}

.contact-info-wrapper {
  background: linear-gradient(135deg, var(--cream) 0%, var(--light-gold) 100%);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  border: 2px solid var(--primary-gold);
  height: 100%;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  padding: 15px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.contact-info-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-gold), var(--warm-brown));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.contact-icon i {
  color: white;
  font-size: 1.2rem;
}

.contact-details h5 {
  color: var(--dark-brown);
  margin-bottom: 5px;
  font-weight: 600;
}

.contact-details p {
  margin: 0;
  color: #666;
}

.contact-details a {
  color: var(--primary-gold);
  text-decoration: none;
  font-weight: 500;
}

.contact-details a:hover {
  color: var(--warm-brown);
  text-decoration: underline;
}

.map-info-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  border: 2px solid var(--primary-gold);
  height: 100%;
}

.map-info-card h4 {
  color: var(--dark-brown);
  margin-bottom: 15px;
}

.map-container {
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
  border-radius: 15px;
  overflow: hidden;
}

/* Bewertungen Styles */
.reviews-section {
  background: linear-gradient(135deg, var(--cream) 0%, var(--light-gold) 100%);
  padding: 60px 0;
}

.review-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  border: 2px solid var(--primary-gold);
  height: 100%;
  transition: all 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.review-stars {
  color: var(--primary-gold);
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.review-text {
  font-style: italic;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.review-author {
  display: flex;
  align-items: center;
}

.review-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-gold), var(--warm-brown));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
}

.review-author-info h6 {
  margin: 0;
  color: var(--dark-brown);
  font-weight: 600;
}

.review-author-info small {
  color: #999;
}

/* Footer Social Links */
.social-links a {
  transition: all 0.3s ease;
  display: inline-block;
}

.social-links a:hover {
  transform: scale(1.2);
  color: var(--primary-gold) !important;
}

.social-links .fab {
  transition: all 0.3s ease;
}

footer h6 {
  color: var(--primary-gold);
  font-weight: 600;
  margin-bottom: 15px;
}

footer .text-light:hover {
  color: var(--primary-gold) !important;
} 