/* ============================================
   Fluffy's Paw Paradise – Grooming Stylesheet
   Standalone CSS für Plesk-Hosting
   ============================================ */

/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;600;700;800&display=swap');

/* ---- CSS Variablen (aus DCP Base) ---- */
:root {
  --primary-color: #a47764;
  --secondary-color: #ffa94a;
  --light-bg: #fff0e5;
  --dark-text: #5a3921;
  --card-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* ---- Base Reset ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  color: var(--dark-text);
  background-color: #ffffff;
}

/* ============================================
   Hundeausbildung Base-Klassen (aus styles.css)
   ============================================ */

/* Container */
.hundeausbildung-container {
  background-color: var(--light-bg);
  padding: 4rem 0;
}

/* Haupttitel */
.hundeausbildung-title {
  color: var(--primary-color);
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
}

.hundeausbildung-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--secondary-color);
  margin: 1rem auto 0;
}

/* Service-Karten */
.hundeausbildung-service-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  box-shadow: var(--card-shadow);
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.hundeausbildung-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Service Icons */
.hundeausbildung-icon {
  width: 60px;
  height: 60px;
  background: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  margin: 0 auto 1rem;
  transition: all 0.3s ease;
}

.hundeausbildung-service-card:hover .hundeausbildung-icon {
  transform: scale(1.1);
  background: var(--primary-color);
}

/* Service Titel */
.hundeausbildung-service-title {
  color: var(--primary-color);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Service Beschreibung */
.hundeausbildung-service-description {
  color: var(--dark-text);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Preissektion */
.hundeausbildung-pricing {
  background: white;
  padding: 4rem 0;
}

/* Preiskarten */
.hundeausbildung-price-card {
  background: white;
  border: 2px solid #e9ecef;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
}

.hundeausbildung-price-card:hover {
  border-color: var(--secondary-color);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Preisanzeige */
.hundeausbildung-price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  margin: 1rem 0;
}

.hundeausbildung-price-unit {
  font-size: 1rem;
  color: var(--dark-text);
  font-weight: normal;
}

/* Preiskarten Titel */
.hundeausbildung-price-title {
  color: var(--primary-color);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Preiskarten Beschreibung */
.hundeausbildung-price-description {
  color: var(--dark-text);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}

/* Feature Liste */
.hundeausbildung-feature-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  text-align: left;
}

.hundeausbildung-feature-list li {
  padding: 0.5rem 0;
  color: var(--dark-text);
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.95rem;
}

.hundeausbildung-feature-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
  font-size: 1.1rem;
}

/* ============================================
   Grooming-spezifische Styles
   ============================================ */

/* Logo Header */
.grooming-logo-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.grooming-logo-header img {
  width: 280px;
  height: auto;
  object-fit: contain;
}

/* Logo-Schrift Titel */
.grooming-logo-title {
  font-family: 'Pacifico', cursive;
  font-size: 2.8rem;
  color: #7b6a9b;
  text-align: center;
  margin: 0;
  line-height: 1.2;
}

.grooming-logo-title span {
  color: #6bb8a4;
}

/* Untertitel */
.grooming-subtitle {
  font-family: 'Pacifico', cursive;
  color: #6bb8a4;
  font-size: 1.3rem;
  text-align: center;
  margin-top: -0.25rem;
}

/* Mobil-Badge */
.grooming-mobil-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #7b6a9b 0%, #6bb8a4 100%);
  color: white;
  padding: 0.5rem 1.25rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 0.5rem;
  box-shadow: 0 3px 12px rgba(107, 184, 164, 0.3);
}

/* Anfahrt-Karte */
.grooming-anfahrt-card {
  background: linear-gradient(135deg, #f3e8ff 0%, #e0f5ef 100%);
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
  box-shadow: var(--card-shadow);
  border: 2px solid #7b6a9b;
}

.grooming-anfahrt-card h4 {
  color: #7b6a9b;
  text-align: center;
  margin-bottom: 1rem;
  font-weight: 600;
}

.grooming-anfahrt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.grooming-anfahrt-item {
  background: rgba(255, 255, 255, 0.9);
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  border: 1px solid rgba(123, 106, 155, 0.2);
}

.grooming-anfahrt-item h6 {
  color: #7b6a9b;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.grooming-anfahrt-item p {
  margin: 0;
  color: var(--dark-text);
  font-size: 0.95rem;
}

/* Eröffnungsangebot Banner */
.grooming-eroeffnung {
  background: linear-gradient(135deg, #fff3e0 0%, #e0f5ef 100%);
  border: 2px solid #6bb8a4;
  border-radius: 12px;
  padding: 1rem 1.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
  font-weight: 600;
  color: #5a3921;
  font-size: 1.05rem;
}

.grooming-eroeffnung span {
  color: #6bb8a4;
  font-size: 1.2rem;
}

/* Grooming Farbschema für Preiskarten */
.grooming-price-card .hundeausbildung-price {
  color: #7b6a9b;
}

.grooming-price-card .hundeausbildung-price-title {
  color: #7b6a9b;
}

.grooming-price-card:hover {
  border-color: #7b6a9b;
}

.grooming-price-card .hundeausbildung-feature-list li::before {
  color: #6bb8a4;
}

/* Grooming Button */
.grooming-btn {
  background: linear-gradient(135deg, #7b6a9b 0%, #6bb8a4 100%);
  border: none;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  width: 100%;
  text-align: center;
}

.grooming-btn:hover {
  transform: translateY(-2px);
  color: white;
  box-shadow: 0 5px 20px rgba(123, 106, 155, 0.35);
  opacity: 0.9;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 768px) {
  .hundeausbildung-title {
    font-size: 2rem;
  }

  .hundeausbildung-price {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .grooming-logo-title {
    font-size: 2rem;
  }

  .grooming-logo-header img {
    width: 200px;
  }

  .grooming-anfahrt-grid {
    grid-template-columns: 1fr;
  }

  .hundeausbildung-title {
    font-size: 1.8rem;
  }

  .hundeausbildung-service-card {
    padding: 1.5rem;
  }

  .hundeausbildung-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}