/*
Theme Name: intelego-classic
Theme URI: https://wordpress.10000.customer.intelego.solutions
Author: Intelego
Description: Companion-driven WordPress theme generated from Intelego profile and design tokens.
Version: 1.0.0
Text Domain: intelego-classic
*/

:root {
  --intelego-font-primary: Inter, Arial, Segoe UI, sans-serif;
  --intelego-color-bg: #031820;
  --intelego-color-surface: #062E3A;
  --intelego-color-surface-raised: #0a3d4d;
  --intelego-color-text: #ffffff;
  --intelego-color-muted: #6d8a96;
  --intelego-color-accent: #f39200;
  --intelego-color-accent-alt: #41c0f0;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--intelego-font-primary);
  background: radial-gradient(circle at 20% 10%, var(--intelego-color-surface-raised) 0%, var(--intelego-color-surface) 40%, var(--intelego-color-bg) 100%);
  color: var(--intelego-color-text);
  line-height: 1.65;
}

a {
  color: var(--intelego-color-accent-alt);
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--intelego-color-accent);
  text-decoration: underline;
}

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(3, 24, 32, 0.72);
  backdrop-filter: blur(6px);
}

.site-header-inner,
.site-content,
.site-footer-inner {
  width: min(1100px, calc(100% - 2.5rem));
  margin: 0 auto;
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.brand-logo {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.brand-title {
  margin: 0;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}

.brand-subtitle {
  margin: 0;
  color: var(--intelego-color-muted);
  font-size: 0.9rem;
}

.site-content {
  flex: 1;
  padding: 2rem 0 3rem;
}

.home-hero {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: linear-gradient(130deg, rgba(10, 61, 77, 0.72) 0%, rgba(6, 46, 58, 0.82) 70%);
  padding: 2rem;
  margin-bottom: 1.6rem;
}

.home-hero h1 {
  margin: 0 0 0.4rem;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.home-hero p {
  margin: 0;
  color: #d2e4ea;
}

.content-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(6, 46, 58, 0.6);
  padding: 1.3rem;
  margin-bottom: 1rem;
}

.entry-title {
  margin-top: 0;
  color: var(--intelego-color-text);
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 0 1.4rem;
  background: rgba(3, 24, 32, 0.8);
}

.site-footer-inner {
  color: var(--intelego-color-muted);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .site-header-inner,
  .site-content,
  .site-footer-inner {
    width: min(1100px, calc(100% - 1.4rem));
  }

  .home-hero {
    padding: 1.3rem;
  }
}
