/*
Theme Name:   Hello Trassify Child
Theme URI:    https://trassify.de
Description:  Child-Theme für Hello Elementor. Bindet die Trassify-Hausschrift Scandia und die Markenfarben ein. Layout wird in Elementor gebaut; dieses Theme liefert nur die Marken-Basis.
Author:       Trassify
Template:     hello-elementor
Version:      1.0.0
Text Domain:  hello-trassify-child
*/

/* =========================================================
   1) SCANDIA – Hausschrift (aus Webflow-Export übernommen)
   Dateien liegen in /fonts. OTF ist okay, moderne Browser
   unterstützen es; bei Bedarf später auf woff2 umstellen.
   ========================================================= */
@font-face{
  font-family:'Scandia';
  src:url('fonts/scandia-light.otf') format('opentype');
  font-weight:300; font-style:normal; font-display:swap;
}
@font-face{
  font-family:'Scandia';
  src:url('fonts/scandia.otf') format('opentype');
  font-weight:400; font-style:normal; font-display:swap;
}
@font-face{
  font-family:'Scandia';
  src:url('fonts/scandia-italic.otf') format('opentype');
  font-weight:400; font-style:italic; font-display:swap;
}
@font-face{
  font-family:'Scandia';
  src:url('fonts/scandia-medium.otf') format('opentype');
  font-weight:500; font-style:normal; font-display:swap;
}
@font-face{
  font-family:'Scandia';
  src:url('fonts/scandia-bold.otf') format('opentype');
  font-weight:700; font-style:normal; font-display:swap;
}

/* =========================================================
   2) MARKENFARBEN – echte Werte aus dem Webflow-Export
   Als CSS-Variablen, damit du sie zentral referenzieren
   kannst. In Elementor besser zusätzlich als Global Colors
   anlegen (siehe README).
   ========================================================= */
:root{
  --trassify-gruen:      #a6c4a1;  /* Markengrün (Logo/Akzent) */
  --trassify-bg:         #f2f1ee;  /* Body-Hintergrund, warmweiß */
  --trassify-schwarz:    #000000;
  --trassify-weiss:      #ffffff;
  --trassify-text:       #333333;  /* Fließtext */
  --trassify-text-2:     #6b6b6b;  /* Sekundärtext */
  --trassify-text-3:     #7d7d7d;  /* Paragraph-Grau */
  --trassify-neutral-300:#e6e6e6;  /* Linien/Border hell */
  --trassify-neutral-400:#b1b1b1;
  --trassify-success:    #cef5ca;
  --trassify-success-dk: #114e0b;
}

/* =========================================================
   3) GLOBALE BASIS – dezent, damit Scandia + Farben greifen,
   ohne Elementor-Layouts zu stören.
   ========================================================= */
body{
  font-family:'Scandia', Arial, sans-serif;
  font-weight:300;
  color:var(--trassify-text);
  background-color:var(--trassify-bg);
}
h1,h2,h3,h4,h5,h6{
  font-family:'Scandia', Arial, sans-serif;
  font-weight:300;              /* Trassify-Look: leichte Headlines */
  color:var(--trassify-schwarz);
}
a{ color:var(--trassify-gruen); }
em{ font-style:italic; font-weight:500; }
