/*
Theme Name: Innere Arbeit Freiburg
Theme URI: https://innere-arbeit-freiburg.de
Author: Davide Donetto
Author URI: https://innere-arbeit-freiburg.de
Description: Tema personalizzato per Innere Arbeit Freiburg — Psychologische Beratung & Systemisches Coaching
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: innere-arbeit
Tags: coaching, psychology, one-page
*/

/* ============================================================
   VARIABILI & RESET
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,600;9..144,700&family=Plus+Jakarta+Sans:wght@400;500;600&display=swap');

:root {
  /* Palette */
  --teal-dark:    #0F6E56;
  --teal-base:    #1D9E75;
  --teal-mid:     #5DCAA5;
  --teal-light:   #E1F5EE;
  --gold-dark:    #854F0B;
  --gold-base:    #BA7517;
  --gold-mid:     #EF9F27;
  --gold-light:   #FAEEDA;
  --stone-text:   #2C2C2A;
  --stone-muted:  #5F5E5A;
  --stone-border: #D3D1C7;
  --stone-bg:     #F1EFE8;
  --warm-white:   #F8F6F1;
  --white:        #FFFFFF;
  --acid-light:	  #EBFACA;

  /* Tipografia */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Plus Jakarta Sans', 'Helvetica Neue', Arial, sans-serif;

  /* Spaziatura */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  6rem;
  --space-xxl: 8rem;

  /* Layout */
  --max-width:      1100px;
  --content-width:  720px;
  --radius:         8px;
  --radius-lg:      16px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  color: var(--stone-text);
  background-color: var(--warm-white);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--teal-base);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--teal-dark);
}

/* ============================================================
   TIPOGRAFIA
   ============================================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.15;
  color: var(--teal-dark);
  font-weight: 700;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); color: var(--stone-text); }
h4 { font-size: 1.1rem; color: var(--stone-text); }

p { margin-bottom: 1.25rem; }
p:last-child { margin-bottom: 0; }

.text-muted { color: var(--stone-muted); }
.text-center { text-align: center; }

/* ============================================================
   LAYOUT
   ============================================================ */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container--narrow {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

section {
  padding: var(--space-xl) 0;
}

section.bg-white    { background-color: var(--warm-white); }
section.bg-green    { background-color: var(--acid-light); }
section.bg-gold    { background-color: var(--gold-light); }

/* ============================================================
   HEADER & NAVIGAZIONE
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--warm-white);
  border-bottom: 1px solid var(--stone-border);
  padding: var(--space-sm) 0;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.site-header__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.site-header__logo img,
.custom-logo-link img {
  width: 44px !important;
  height: 44px !important;
  object-fit: contain;
}

.site-header__logo-text {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--stone-text);
  line-height: 1.2;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.02em;
  text-transform: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.site-nav a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--stone-text);
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--teal-base);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--stone-text);
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: var(--space-xxl) 0;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--teal-dark);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 110, 86, 0.88) 0%,
    rgba(8, 80, 65, 0.75) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  text-align: center;
  margin: 0 auto;
}

.hero__content h1 {
  color: var(--white);
  margin-bottom: var(--space-md);
  font-weight: 700;
}

.hero__content p {
  color: rgba(255,255,255,0.88);
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.hero .btn--white {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.hero .btn--white:hover {
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

/* ============================================================
   PULSANTI
   ============================================================ */

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
  text-decoration: none;
  letter-spacing: 0.01em;
}

.btn--primary {
  background-color: var(--teal-base);
  color: var(--white);
}

.btn--primary:hover {
  background-color: var(--teal-dark);
  color: var(--white);
}

.btn--outline {
  background-color: transparent;
  color: var(--teal-base);
  border: 1.5px solid var(--teal-base);
}

.btn--outline:hover {
  background-color: var(--teal-light);
  color: var(--teal-dark);
}

.btn--white {
  background-color: var(--white);
  color: var(--teal-dark);
}

.btn--white:hover {
  background-color: var(--teal-light);
  color: var(--teal-dark);
}

/* ============================================================
   SEZIONE: EIN UNGEWÖHNLICHER WEG
   ============================================================ */

.section-story {
  background-color: var(--warm-white);
}

.section-story .container--narrow p {
  font-size: 1.05rem;
}

/* ============================================================
   SEZIONE: DAVIDE DONETTO (Über mich)
   ============================================================ */

.section-uebermich {
  background-color: var(--acid-light);
}

.uebermich__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.uebermich__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

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

.uebermich__content h2 {
  margin-bottom: var(--space-sm);
}

.uebermich__list {
  list-style: none;
  margin: var(--space-md) 0;
}

.uebermich__list li {
  padding: 0.4rem 0;
  padding-left: 1.25rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--stone-text);
  border-bottom: 1px solid rgba(15, 110, 86, 0.15);
}

.uebermich__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--teal-base);
}

/* ============================================================
   SEZIONE: WOMIT ICH DIR HELFEN KANN (Dienstleistungen)
   ============================================================ */

.section-services {
  background-color: var(--warm-white);
}

.section-services .section-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.service-card {
  background-color: var(--acid-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.service-card:hover {
  box-shadow: 0 8px 32px rgba(15, 110, 86, 0.12);
  transform: translateY(-2px);
}

.service-card__image {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-card:hover .service-card__image img {
  transform: scale(1.03);
}

.service-card__body {
  padding: var(--space-md);
}

.service-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--teal-dark);
  margin-bottom: 0.75rem;
  text-align: center;
}

.service-card__body p {
  font-size: 0.9rem;
  color: var(--stone-muted);
  text-align: center;
  margin-bottom: 0;
}

/* ============================================================
   SEZIONE: WIE ICH ARBEITE
   ============================================================ */

.section-approach {
  background-color: var(--acid-light);
}

.section-approach .container--narrow {
  text-align: center;
}

.section-approach h2 {
  margin-bottom: var(--space-md);
}

.approach-details {
  margin-top: var(--space-lg);
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.approach-detail {
  text-align: center;
}

.approach-detail__number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--teal-base);
  line-height: 1;
}

.approach-detail__label {
  font-size: 0.85rem;
  color: var(--stone-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.25rem;
}

/* ============================================================
   SEZIONE: KONTAKT
   ============================================================ */

.section-contact {
  background-color: var(--warm-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact-intro h2 {
  margin-bottom: var(--space-md);
}

.contact-intro p {
  font-size: 1.05rem;
  color: var(--stone-muted);
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-group label {
  font-size: 14px;
  font-weight: 500;
  color: var(--stone-text);
}

.form-group input,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--stone-text);
  background-color: var(--white);
  border: 1px solid var(--stone-border);
  border-radius: var(--radius);
  padding: 12px 14px;
  width: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal-base);
  box-shadow: 0 0 0 3px rgba(29, 158, 117, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-note {
  font-size: 13px;
  color: var(--stone-muted);
  margin-top: 0.5rem;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 textarea {
  border: 1px solid var(--stone-border);
  border-radius: var(--radius);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--stone-text);
  background-color: var(--white);
  width: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 textarea:focus {
  outline: none;
  border-color: var(--teal-base);
  box-shadow: 0 0 0 3px rgba(29, 158, 117, 0.12);
}

.wpcf7 input[type="submit"] {
  background-color: var(--teal-base);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  padding: 14px 32px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.wpcf7 input[type="submit"]:hover {
  background-color: var(--teal-dark);
}

/* ============================================================
   SEZIONE HEADER UTILITY
   ============================================================ */

.section-header {
  margin-bottom: var(--space-lg);
}

.section-header h2 {
  margin-bottom: 0.75rem;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--stone-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background-color: var(--teal-dark);
  color: var(--teal-light);
  padding: var(--space-lg) 0;
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
}

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

.site-footer__logo img {
  width: 40px;
  height: 40px;
  opacity: 0.9;
}

.site-footer__logo-text {
  font-size: 13px;
  color: var(--teal-light);
  line-height: 1.3;
}

.site-footer__links {
  display: flex;
  gap: var(--space-md);
}

.site-footer__links a {
  font-size: 13px;
  color: var(--teal-mid);
  transition: color 0.2s ease;
}

.site-footer__links a:hover {
  color: var(--white);
}

.site-footer__copy {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  width: 100%;
  text-align: center;
  margin-top: var(--space-sm);
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .uebermich__grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .uebermich__image {
    max-width: 480px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  :root {
    --space-xl: 4rem;
    --space-xxl: 5rem;
  }

  .site-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--warm-white);
    border-bottom: 1px solid var(--stone-border);
    padding: var(--space-md);
    gap: var(--space-sm);
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .site-header {
    position: relative;
  }

  .hero {
    min-height: 60vh;
    padding: var(--space-xl) 0;
  }

  .approach-details {
    gap: var(--space-md);
  }

  .site-footer__inner {
    flex-direction: column;
    text-align: center;
  }

  .site-footer__links {
    justify-content: center;
  }
}

/* ============================================================
   ANIMAZIONI SCROLL
   ============================================================ */

@media (prefers-reduced-motion: no-preference) {
  .fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   PAGINE SUPPLEMENTARI
   ============================================================ */

.page-content h2 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.page-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.page-content p {
  margin-bottom: 1rem;
}

.page-content a {
  word-break: break-all;
}
Sonnet 4.6 Niedrig
