/* ============================================================
   EIFEL-KURIER – hero.css
   Hero-Sektionen, Page-Header
   ============================================================ */

/* --- Startseite Hero -------------------------------------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--gradient-hero);
}

.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 80px 0 60px;
}

.hero-logo-wrap {
  margin-bottom: 40px;
}

.hero-logo {
  max-height: 120px;
  max-width: 360px;
  width: auto;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.4));
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(106,191,75,0.2);
  border: 1px solid rgba(106,191,75,0.4);
  color: var(--color-light-green);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-light-green);
  animation: pulse-dot 2s infinite;
}

.hero h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero h1 .accent {
  color: var(--color-light-green);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.8);
  margin-bottom: 16px;
  max-width: 580px;
  line-height: 1.7;
}

.hero-slogan {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--color-light-green);
  margin-bottom: 40px;
  font-weight: 500;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.9);
  font-size: 1.05rem;
  font-weight: 600;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 12px 24px;
  border-radius: 100px;
  backdrop-filter: blur(8px);
  transition: background var(--transition), border-color var(--transition);
}

.hero-phone:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.4);
}

.hero-phone svg {
  color: var(--color-light-green);
  flex-shrink: 0;
}

.hero-phone a {
  color: inherit;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce-down 2s infinite;
  z-index: 2;
}

.hero-scroll-hint svg {
  opacity: 0.6;
}

/* --- Page Header (Unterseiten) ---------------------------- */
.page-header {
  background: var(--gradient-section);
  padding: 120px 0 64px;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-header .container {
  position: relative;
  z-index: 1;
}

.page-header-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}

.page-header-breadcrumb a {
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}

.page-header-breadcrumb a:hover {
  color: var(--color-light-green);
}

.page-header-breadcrumb span {
  color: rgba(255,255,255,0.4);
}

.page-header h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.page-header p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
}

/* --- Animationen ------------------------------------------ */
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.5); opacity: 0.5; }
}

@keyframes bounce-down {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

@keyframes hero-gradient-shift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* --- Responsive ------------------------------------------- */
@media (max-width: 768px) {
  .hero { min-height: 88svh; }
  .hero-content { padding: 72px 0 48px; }
  .hero-logo { max-height: 80px; max-width: 240px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .page-header { padding: 100px 0 48px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.9rem; }
  .hero-phone { font-size: 0.95rem; }
}
