/*
Theme Name: Cody Child
Theme URI: https://example.com/cody
Template: cody
Author: Henning
Author URI: https://example.com
Description: Child-Theme von Cody. Eigene Anpassungen hier vornehmen, ohne das Parent-Theme zu verändern.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cody-child
*/

/* =========================================================
   Eigene Anpassungen (überschreiben das Parent-Theme)
   =========================================================
   Die Design-Tokens des Parent-Themes lassen sich hier
   bequem überschreiben, z. B.:

   :root {
       --cody-color-accent: #db2777;
   }
   ========================================================= */

:root {
    --cody-color-text: #1a1a1a;
    --cody-color-bg: #ffffff;
    --cody-color-accent: #2563eb;
    --cody-color-muted: #6b7280;
    --cody-color-border: #e5e7eb;
    --cody-color-bg2: #e4e4e4;

    --cody-font-base: "Montserrat";
    --cody-font-weight: 600;
    --cody-font-size: 1rem;
    --cody-line-height: 1.6;

    --cody-content-width: 70rem;
    --cody-space: 1rem;
}

/* montserrat-300 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 300;
    src: url('fonts/montserrat-v31-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* montserrat-regular - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    src: url('fonts/montserrat-v31-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* montserrat-500 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    src: url('fonts/montserrat-v31-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* montserrat-600 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    src: url('fonts/montserrat-v31-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}