:root {
  --primary-color: #ff6f61; /* Ein warmes Rot für Action/Kochen */
  --secondary-color: #5aa9e8; /* Ein sanftes Blau für Tierschutz/Adoption */
  --accent-color: #ffcd3c; /* Ein Gelb für Highlights/Boni */
  --dark-color: #333333; /* Dunkler Text */
  --light-color: #f8f8f8; /* Heller Hintergrund */
  --text-color: #4a4a4a;
  --border-radius-lg: 12px;
  --spacing-xl: 120px;
  --spacing-lg: 80px;
  --spacing-md: 40px;
  --font-heading: "Nunito Sans", sans-serif;
  --font-body: "Roboto", sans-serif;
}

/* Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-color);
  background-color: var(--light-color);
  line-height: 1.6;
}

/* Typography */
h1,
h2,
h3 {
  font-family: var(--font-heading);
  color: var(--dark-color);
  margin-bottom: 0.5em;
  font-weight: 800;
}

h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1.5em;
  position: relative;
  padding-bottom: 0.3em;
}

h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-top: 1em;
}

p {
  margin-bottom: 1em;
  font-size: 1.1rem;
}

/* Layout Utilities (Simulated Elementor/WordPress Blocks) */
.elementor-section {
  padding: var(--spacing-xl) 0;
  width: 100%;
  overflow: hidden;
}

.elementor-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.elementor-column {
  padding: 0 15px;
  flex-basis: 100%;
}

.elementor-col-33 {
  flex-basis: 33.333%;
}

.elementor-col-50 {
  flex-basis: 50%;
}

.elementor-col-66 {
  flex-basis: 66.666%;
}

/* Header & Navigation */
.dipleons-header {
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(5px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.dipleons-logo-link {
  display: block;
  max-width: 50px;
}

.dipleons-logo-image {
  width: 100%;
  height: auto;
}

.dipleons-menu {
  list-style: none;
  display: flex;
  justify-content: flex-end;
}

.dipleons-menu .menu-item {
  margin-left: 30px;
}

.dipleons-menu a {
  text-decoration: none;
  color: var(--dark-color);
  font-weight: 600;
  padding: 5px 0;
  transition: color 0.3s, border-bottom 0.3s;
}

.dipleons-menu a:hover {
  color: var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
}

/* Hero Section */
.dipleons-hero {
  background: linear-gradient(135deg, #fce9e8 0%, var(--light-color) 100%);
  padding-top: var(--spacing-xl);
  padding-bottom: var(--spacing-xl);
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.dipleons-hero .elementor-container {
  align-items: center;
}

.dipleons-hero .elementor-widget-image {
  padding-left: 50px;
  animation: fadeInScale 1s ease-out;
}

.dipleons-screenshot-image {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 20px 40px rgba(255, 111, 97, 0.3);
  transition: transform 0.5s;
}

.dipleons-screenshot-image:hover {
  transform: translateY(-5px);
}

/* Buttons */
.elementor-button {
  display: inline-block;
  padding: 15px 35px;
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
  font-weight: 700;
  border-radius: 50px;
  transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
  font-size: 1.1rem;
  border: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 1.5em;
  cursor: pointer;
}

.elementor-button:hover {
  background-color: #e55c50;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 111, 97, 0.4);
}

.dipleons-store-links .elementor-button {
  margin-right: 20px;
  background-color: var(--dark-color);
}

.dipleons-store-links .elementor-button:hover {
  background-color: var(--primary-color);
}

/* Divider Style */
.dipleons-divider {
  height: 1px;
  background-color: rgba(74, 74, 74, 0.1);
  margin: var(--spacing-md) auto 0;
  width: 80%;
}

/* About Section */
.dipleons-about {
  background-color: white;
}

/* Highlights Section */
.dipleons-highlights {
  background-color: #feefef;
  text-align: center;
}

.dipleons-highlight-card {
  background-color: white;
  padding: 30px;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  transition: transform 0.4s, box-shadow 0.4s;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.dipleons-highlight-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 45px rgba(255, 111, 97, 0.2);
}

.dipleons-card-image-wrap {
  margin: 15px 0;
  overflow: hidden;
  border-radius: var(--border-radius-lg);
}

.dipleons-screenshot-card {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--border-radius-lg);
}

/* Pets Section (Reverse Column Order for visual appeal) */
.dipleons-pets .elementor-container {
  flex-direction: row;
}

.dipleons-pets .elementor-col-50:first-child {
  order: 2; /* Bild kommt nach Text auf Desktop */
  padding-left: var(--spacing-md);
}

.dipleons-pets .elementor-col-50:last-child {
  order: 1; /* Text kommt vor Bild auf Desktop */
  padding-right: var(--spacing-md);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Reviews Section */
.dipleons-reviews {
  background-color: var(--secondary-color);
  color: white;
  text-align: center;
  padding: var(--spacing-xl) 0;
}

.dipleons-reviews h2,
.dipleons-reviews p {
  color: white;
}

.dipleons-reviews h2::after {
  background-color: var(--accent-color);
}

.dipleons-review-content {
  background-color: rgba(255, 255, 255, 0.1);
  padding: var(--spacing-lg);
  border-radius: var(--border-radius-lg);
  max-width: 800px;
  margin: 0 auto;
}

.dipleons-screenshot-rating {
  max-width: 250px;
  margin-top: 30px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

/* FAQ Section */
.dipleons-faq {
  background-color: white;
  padding-bottom: var(--spacing-xl);
}

.dipleons-accordion-item {
  margin-bottom: 20px;
  border: 1px solid #e0e0e0;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  transition: all 0.3s;
}

.dipleons-accordion-item:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.dipleons-accordion-title {
  background-color: #ffffff;
  padding: 20px;
  cursor: pointer;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark-color);
  position: relative;
  transition: color 0.3s;
  margin-bottom: 0;
}

.dipleons-accordion-title::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--primary-color);
}

.dipleons-accordion-content {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  background-color: #fafafa;
}

/* (In einer echten Implementierung würde JavaScript diese Klasse hinzufügen/entfernen) */
.dipleons-accordion-item:focus-within .dipleons-accordion-content {
  max-height: 300px; /* Muss groß genug sein */
  padding: 20px;
}

.dipleons-accordion-item:focus-within .dipleons-accordion-title::after {
  content: "–";
}

/* Footer */
.dipleons-footer {
  background-color: var(--dark-color);
  color: var(--light-color);
  padding: 40px 0;
  text-align: center;
}

.dipleons-footer-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.dipleons-footer-menu .menu-item {
  margin: 0 15px;
}

.dipleons-footer-menu a {
  color: var(--light-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.dipleons-footer-menu a:hover {
  color: var(--primary-color);
}

.dipleons-copyright {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Animations */
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .elementor-section {
    padding: var(--spacing-lg) 0;
  }
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2rem;
  }
  .elementor-col-33,
  .elementor-col-50,
  .elementor-col-66 {
    flex-basis: 100%;
    margin-bottom: var(--spacing-md);
  }
  .dipleons-hero .elementor-col-50 {
    padding-left: 15px; /* Reset padding */
  }
  .dipleons-hero .elementor-container {
    flex-direction: column;
  }
  .dipleons-hero .elementor-col-50:last-child {
    order: -1; /* Bild über Text auf Mobile */
  }
  .dipleons-pets .elementor-col-50:first-child {
    order: 1; /* Bild wieder unter Text auf Mobile */
    padding-left: 15px;
  }
  .dipleons-pets .elementor-col-50:last-child {
    order: -1;
    padding-right: 15px;
  }
  .dipleons-menu {
    justify-content: center;
    margin-top: 15px;
  }
  .dipleons-menu .menu-item {
    margin: 0 10px;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.75rem;
  }
  p {
    font-size: 1rem;
  }
  .dipleons-menu {
    flex-direction: column;
    align-items: center;
  }
  .dipleons-menu .menu-item {
    margin: 5px 0;
  }
  .elementor-button {
    padding: 12px 25px;
    font-size: 1rem;
  }
}
