/*
Theme Name: Icehouse
Theme URI: https://team-icehouse.de
Description: Child-Theme von Kadence für Team Icehouse. Corporate Design: Schwarz / Rot (#E2001A) / Grün (#74B828), Logo Palme & Iglu, Schriften Montserrat + Manrope (selbst gehostet, DSGVO).
Author: Baumgärtner Marketing GmbH
Author URI: https://bm1.de
Template: kadence
Version: 1.1.0
Requires at least: 6.0
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: icehouse
*/

/* =========================================================================
   Icehouse Corporate Design – CSS Custom Properties
   ========================================================================= */
:root {
    --ih-red: #e2001a;        /* Hausfarbe / Hauptakzent */
    --ih-red-dark: #b40015;   /* Hover / Aktiv */
    --ih-green: #74b828;      /* Sekundär-Akzent */
    --ih-green-dark: #5d9a1f;
    --ih-black: #0d0d0f;
    --ih-ink: #15161a;        /* Fließtext */
    --ih-gray: #6a7077;
    --ih-line: #e6e6e2;
    --ih-bg: #f4f5f3;
    --ih-white: #ffffff;
    --ih-font-display: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
    --ih-font-body: 'Manrope', 'Helvetica Neue', Arial, sans-serif;
}

/* Basistypografie */
body {
    font-family: var(--ih-font-body);
    color: var(--ih-ink);
}
h1, h2, h3, h4, h5, h6,
.entry-title, .site-title {
    font-family: var(--ih-font-display);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    color: var(--ih-black);
}

/* Markenfarben auf Links/Akzente (zusätzlich zu Kadence-Palette) */
a { color: var(--ih-red); }
a:hover, a:focus { color: var(--ih-red-dark); }

/* Hilfsklassen für CD-Akzente */
.ih-accent-red { color: var(--ih-red); }
.ih-accent-green { color: var(--ih-green); }

/* Logo enthält bereits den Schriftzug → redundanten Site-Titel-Text ausblenden */
.site-branding .site-title { display: none; }
