/*
Theme Name: Elevoro Coaching
Theme URI: https://leo.vipimp.de/
Author: Elevoro Coaching
Author URI: https://leo.vipimp.de/
Description: A modern, performance-focused WordPress theme for Elevoro Coaching, featuring appointment scheduling, service highlights, and client plan access.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: elevoro-coaching
Tags: custom-colors, custom-menu, featured-images, flexible-header, full-width-template
*/

:root {
  --ec-dark: #0d2418;
  --ec-primary: #4e7f62;
  --ec-secondary: #2f5a41;
  --ec-accent: #d5c8a8;
  --ec-light: #f3efe6;
  --ec-text: #1e2a22;
  --ec-muted: #5b6a5f;
  --ec-radius: 16px;
  --ec-transition: 0.3s ease;
  --ec-spacing: clamp(3rem, 5vw, 6rem);
  --ec-max-width: 1180px;
  --ec-overlay: rgba(12, 33, 23, 0.72);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ec-text);
  background-color: var(--ec-light);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--ec-transition);
}

a:hover,
 a:focus {
  color: var(--ec-secondary);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(13, 36, 24, 0.88);
  backdrop-filter: blur(12px);
  color: #fff;
}

.site-header .inner {
  max-width: var(--ec-max-width);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.branding {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.branding .logo {
  display: block;
  width: 170px;
  max-width: 60vw;
}

.branding .logo img {
  display: block;
  width: 100%;
  height: auto;
}

.branding .site-title {
  font-size: 1.125rem;
  margin: 0;
  letter-spacing: 0.05em;
}
.branding__title {
  display: flex;
  align-items: center;
}

.branding__title .site-title {
  font-size: 1.125rem;
  margin: 0;
  letter-spacing: 0.05em;
}


.main-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.75rem;
}

.main-navigation a {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
}

.cta-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform var(--ec-transition), box-shadow var(--ec-transition), background var(--ec-transition);
  text-align: center;
}

.cta-button--primary {
  background: linear-gradient(135deg, var(--ec-primary), var(--ec-secondary));
  color: #fff;
  box-shadow: 0 18px 38px rgba(34, 73, 52, 0.35);
}

.cta-button--primary:hover,
.cta-button--primary:focus {
  transform: translateY(-1px);
  box-shadow: 0 20px 44px rgba(34, 73, 52, 0.4);
}

.cta-button--ghost {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.cta-button--ghost:hover,
.cta-button--ghost:focus {
  background: rgba(255, 255, 255, 0.2);
}

.cta-button--whatsapp {
  background: linear-gradient(135deg, #1d8b4f, #0f5e2f);
  color: #fff;
  box-shadow: 0 16px 32px rgba(15, 94, 47, 0.35);
}

.cta-button--whatsapp:hover,
.cta-button--whatsapp:focus {
  box-shadow: 0 20px 40px rgba(15, 94, 47, 0.45);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  color: #fff;
  padding: var(--ec-spacing) 1.5rem;
  overflow: hidden;
}

.hero__media,
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__media {
  pointer-events: none;
}

.hero__overlay {
  z-index: -1;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.75);
}

.hero__overlay {
  background: linear-gradient(140deg, rgba(8, 20, 14, 0.75) 0%, rgba(17, 40, 28, 0.7) 55%, rgba(24, 54, 39, 0.45) 100%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--ec-max-width);
  margin: 0 auto;
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero__content p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 520px;
}

.hero .stats {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.hero .stat {
  background: rgba(255, 255, 255, 0.12);
  padding: 1rem 1.25rem;
  border-radius: var(--ec-radius);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero__actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero__visual img {
  width: 100%;
  max-width: 420px;
  filter: drop-shadow(0 30px 60px rgba(10, 20, 15, 0.35));
}

.section {
  padding: var(--ec-spacing) 1.5rem;
  position: relative;
}

.section .inner {
  max-width: var(--ec-max-width);
  margin: 0 auto;
}

.section-title {
  font-size: clamp(2rem, 3vw, 2.75rem);
  margin-bottom: 1.25rem;
}

.section-intro {
  max-width: 640px;
  color: var(--ec-muted);
  margin-bottom: 2.5rem;
}

.cards {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
  background: rgba(255, 255, 255, 0.88);
  border-radius: var(--ec-radius);
  padding: 1.75rem;
  box-shadow: 0 20px 40px rgba(15, 35, 26, 0.08);
  border: 1px solid rgba(47, 90, 65, 0.12);
}

.card h3 {
  margin-top: 0;
  font-size: 1.25rem;
}

.card p {
  color: var(--ec-muted);
}

.card .badge {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(78, 127, 98, 0.18);
  color: var(--ec-secondary);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.testimonials {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.testimonial {
  background: rgba(255, 255, 255, 0.9);
  padding: 1.75rem;
  border-radius: var(--ec-radius);
  box-shadow: 0 18px 38px rgba(15, 35, 26, 0.08);
  border: 1px solid rgba(47, 90, 65, 0.08);
}

.testimonial strong {
  display: block;
  margin-top: 1rem;
  color: var(--ec-secondary);
}

.section-cta {
  background: linear-gradient(150deg, rgba(47, 90, 65, 0.95) 0%, rgba(22, 44, 33, 0.95) 100%);
  color: #fff;
  border-radius: var(--ec-radius);
  padding: 3rem;
  display: grid;
  gap: 1rem;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  box-shadow: 0 35px 60px rgba(15, 35, 26, 0.22);
}

.section-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
}

.section-cta .cta-button {
  justify-self: start;
}

.section--contact {
  position: relative;
  color: #fff;
  overflow: hidden;
}

.section--contact .inner {
  position: relative;
  z-index: 1;
}

.section--contact .section-title {
  color: #fff;
}

.section--contact .section-intro {
  color: rgba(255, 255, 255, 0.85);
}

.section__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
}

.section__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7);
}

.section--contact::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(9, 26, 17, 0.8) 0%, rgba(17, 40, 28, 0.78) 60%, rgba(30, 52, 39, 0.65) 100%);
  z-index: -1;
}

.contact-card {
  position: relative;
  z-index: 1;
  background: rgba(14, 32, 22, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 30px 60px rgba(9, 22, 16, 0.5);
  border-radius: calc(var(--ec-radius) + 4px);
  padding: clamp(2.5rem, 6vw, 3.5rem);
  max-width: 720px;
}

.contact-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-card .cta-button--ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.contact-card .cta-button--ghost:hover,
.contact-card .cta-button--ghost:focus {
  background: rgba(255, 255, 255, 0.16);
}

.contact-card__note {
  margin-top: 1.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.site-footer {
  background: #0d2418;
  color: rgba(255, 255, 255, 0.72);
  padding: 3rem 1.5rem;
}

.site-footer .inner {
  max-width: var(--ec-max-width);
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  .main-navigation ul {
    display: none;
  }

  .hero__inner {
    text-align: center;
  }

  .hero__content {
    order: 2;
  }

  .hero__visual {
    order: 1;
    display: flex;
    justify-content: center;
  }

  .hero__visual img {
    max-width: 320px;
  }

  .hero__actions {
    justify-content: center;
  }

  .section-cta {
    text-align: center;
  }

  .section-cta .cta-button {
    justify-self: center;
  }

  .contact-card {
    padding: 2.25rem 1.75rem;
  }
}

.hero__media img.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
