/*
Theme Name: TSEG Simple Header
Theme URI: https://example.com/
Author: You
Description: Minimal theme with a static header and page content only.
Version: 1.0.0
Requires at least: 5.0
Tested up to: 6.5
License: GPL-2.0-or-later
Text Domain: tseg-simple-header
*/
:root{
  --bg:#2c2c2c;
  --bg-grad-start:#3a3a3a;
  --bg-grad-end:#2e2e2e;
  --dark:#1f1f1f;
  --light:#ffffff;
  --muted:#cfcfcf;
  --accent:#8bc53f;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,sans-serif;color:#111;background:#fff;line-height:1.6}

/* Header */
.site-header{
  background: linear-gradient(180deg, var(--bg-grad-start), var(--bg-grad-end));
  border-bottom: 6px solid #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,.25) inset;
}
.header-inner{
  max-width: 1140px;
  margin: 0 auto;
  padding: 18px 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.brand{
  display:flex;
  align-items:center;
  gap:14px;
}
.brand img{
  display:block;
  height:46px;
  width:auto;
}
.brand .brand-text{
  font-weight:800;
  letter-spacing:1px;
  color:#fff;
  font-size:28px;
}

/* Tagline block (right side) */
.tagline{
  text-align:right;
  color:#e9e9e9;
  font-weight:700;
  line-height:1.15;
}
.tagline .small{font-size:14px;display:block;opacity:.95}
.tagline .big{font-size:18px;display:block}
.tagline .accent{color:var(--accent)}

/* Content area */
.site-content{
  max-width: 1140px;
  margin: 32px auto;
  padding: 0 20px 60px;
}
.site-content h1, .site-content h2, .site-content h3{line-height:1.25}
.site-content a{color:#0a6cff;text-decoration:none}
.site-content a:hover{text-decoration:underline}

/* Make WP images responsive */
.site-content img{max-width:100%;height:auto}
.wp-block{max-width:unset}
