/*
Theme Name: Animal VitalAir Lounge
Theme URI: https://animalvitalairlounge.de
Author: Harald
Description: Custom-Theme für den mobilen Regenerations- und Inhalationsanhänger "Animal VitalAir Lounge" (O2-, Sole- und Magnetfeldtherapie für Hunde & Pferde). Design und Farbschema basieren auf dem Flyer der Marke.
Version: 1.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: avl
*/

/* =====================================================
   1. FARBSCHEMA (aus dem Flyer)
   ===================================================== */
:root {
  --avl-black: #0c0c0c;
  --avl-black-soft: #141414;
  --avl-panel: #1a1a1a;
  --avl-border: #2b2b2b;
  --avl-lime: #c6d92e;
  --avl-lime-dark: #a3b224;
  --avl-white: #f5f5f2;
  --avl-gray: #b7b7b2;
  --avl-gray-dim: #8c8c86;
  --font-display: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
  --font-script: "Playfair Display", Georgia, serif;
}

/* =====================================================
   2. RESET & BASICS
   ===================================================== */
*, *::before, *::after { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--avl-black);
  color: var(--avl-white);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--avl-lime); text-decoration: none; }
a:hover { color: var(--avl-white); }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 0.5em;
  line-height: 1.15;
}
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.avl-accent { color: var(--avl-lime); }
section { padding: 80px 0; }
.avl-section-alt { background: var(--avl-black-soft); }

/* =====================================================
   3. HEADER
   ===================================================== */
.avl-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12, 12, 12, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--avl-border);
}
.avl-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.avl-logo { display: flex; align-items: center; gap: 12px; }
.avl-logo img { height: 48px; width: auto; }
.avl-logo-text {
  font-family: var(--font-display);
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--avl-white);
}
.avl-logo-text .thin { font-weight: 300; }
.avl-logo-text .accent { color: var(--avl-lime); font-style: italic; }

.avl-nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
}
.avl-nav a {
  color: var(--avl-white);
  font-family: var(--font-display);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.avl-nav a:hover { color: var(--avl-lime); }

.avl-nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--avl-lime);
  color: var(--avl-lime);
  padding: 8px 12px;
  font-size: 16px;
  cursor: pointer;
}

/* =====================================================
   4. HERO
   ===================================================== */
.avl-hero {
  position: relative;
  padding: 100px 0 90px;
  background: radial-gradient(ellipse at 30% 0%, #232310 0%, var(--avl-black) 65%);
  overflow: hidden;
}
.avl-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.avl-hero h1 {
  font-size: clamp(34px, 5vw, 56px);
  color: var(--avl-white);
}
.avl-hero h1 .accent { color: var(--avl-lime); }
.avl-hero-sub {
  color: var(--avl-gray);
  font-size: 18px;
  max-width: 480px;
  margin: 20px 0 8px;
}
.avl-hero-sub strong { color: var(--avl-lime); }
.avl-hero-tagline {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 1px;
  margin-top: 28px;
}
.avl-hero-tagline span { color: var(--avl-lime); }
.avl-hero-image {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--avl-border);
}
.avl-cta-row { display: flex; gap: 16px; margin-top: 32px; flex-wrap: wrap; }

/* Buttons */
.avl-btn {
  display: inline-block;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  padding: 14px 30px;
  border-radius: 2px;
  transition: all 0.2s ease;
}
.avl-btn-primary {
  background: var(--avl-lime);
  color: var(--avl-black);
}
.avl-btn-primary:hover { background: var(--avl-lime-dark); color: var(--avl-black); }
.avl-btn-outline {
  border: 1px solid var(--avl-lime);
  color: var(--avl-lime);
}
.avl-btn-outline:hover { background: var(--avl-lime); color: var(--avl-black); }

/* =====================================================
   5. CHECKLISTE / BENEFITS
   ===================================================== */
.avl-benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.avl-check-list { list-style: none; margin: 32px 0 0; padding: 0; }
.avl-check-list li {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--avl-border);
  font-size: 16px;
}
.avl-check-list li::before {
  content: "\2713";
  color: var(--avl-lime);
  border: 1px solid var(--avl-lime);
  border-radius: 50%;
  width: 22px;
  height: 22px;
  min-width: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}
.avl-benefits-image { border-radius: 4px; overflow: hidden; border: 1px solid var(--avl-border); }

/* =====================================================
   6. IDEAL FÜR (Icon-Grid)
   ===================================================== */
.avl-idealfor-title { text-align: center; margin-bottom: 40px; }
.avl-idealfor-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  text-align: center;
}
.avl-idealfor-item .icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 14px;
  border: 1px solid var(--avl-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--avl-lime);
  font-size: 26px;
}
.avl-idealfor-item span {
  display: block;
  font-family: var(--font-display);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--avl-gray);
}

/* =====================================================
   7. THERAPIE-BLÖCKE
   ===================================================== */
.avl-therapy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}
.avl-therapy-card {
  background: var(--avl-panel);
  border: 1px solid var(--avl-border);
  border-radius: 4px;
  padding: 32px;
}
.avl-therapy-card .icon {
  width: 56px;
  height: 56px;
  border: 2px solid var(--avl-lime);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--avl-lime);
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 20px;
}
.avl-therapy-card h3 { font-size: 18px; color: var(--avl-white); }
.avl-therapy-card p { color: var(--avl-gray); font-size: 15px; margin: 0; }

/* =====================================================
   8. MOBIL BUCHBAR / KONTAKT
   ===================================================== */
.avl-booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.avl-booking-image { border-radius: 4px; overflow: hidden; border: 1px solid var(--avl-border); }
.avl-booking-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  columns: 2;
  column-gap: 24px;
}
.avl-booking-list li {
  display: flex;
  gap: 10px;
  padding: 8px 0;
  break-inside: avoid;
  font-size: 15px;
}
.avl-booking-list li::before {
  content: "\2713";
  color: var(--avl-lime);
}
.avl-contact-box {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--avl-border);
}
.avl-contact-box h4 { color: var(--avl-lime); font-size: 16px; }
.avl-contact-box a, .avl-contact-box span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--avl-white);
  margin: 8px 0;
  font-size: 15px;
}

/* =====================================================
   9. FOOTER
   ===================================================== */
.avl-footer {
  background: var(--avl-black-soft);
  border-top: 1px solid var(--avl-border);
  padding: 48px 0 28px;
}
.avl-footer-tagline {
  text-align: center;
  font-family: var(--font-script);
  font-style: italic;
  font-size: 22px;
  color: var(--avl-gray);
  margin-bottom: 32px;
}
.avl-footer-tagline .heart { color: var(--avl-lime); }
.avl-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--avl-gray-dim);
  border-top: 1px solid var(--avl-border);
  padding-top: 20px;
  flex-wrap: wrap;
  gap: 12px;
}
.avl-footer-bottom a { color: var(--avl-gray-dim); }
.avl-footer-bottom a:hover { color: var(--avl-lime); }

/* =====================================================
   10. RESPONSIVE
   ===================================================== */
@media (max-width: 900px) {
  .avl-hero-grid, .avl-benefits-grid, .avl-booking-grid { grid-template-columns: 1fr; }
  .avl-idealfor-grid { grid-template-columns: repeat(3, 1fr); }
  .avl-therapy-grid { grid-template-columns: 1fr; }
  .avl-booking-list { columns: 1; }
  .avl-nav { display: none; }
  .avl-nav.is-open { display: block; position: absolute; top: 100%; left: 0; right: 0; background: var(--avl-black); border-bottom: 1px solid var(--avl-border); }
  .avl-nav.is-open ul { flex-direction: column; padding: 20px 24px; gap: 16px; }
  .avl-nav-toggle { display: block; }
  .avl-footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 600px) {
  .avl-idealfor-grid { grid-template-columns: repeat(2, 1fr); }
  section { padding: 56px 0; }
}
