/*
Theme Name: HouseHosting Contact
Theme URI: https://househosting.eu/
Author: HouseHosting.eu
Description: Lightweight contact and server responsibility page for HouseHosting.eu.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: househosting
*/

:root {
  --ink: #13233a;
  --muted: #5d6b7e;
  --line: #dce4ed;
  --blue: #1769e0;
  --blue-dark: #0d4fae;
  --soft: #f3f7fb;
  --white: #fff;
  --green: #16815b;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: #f7f9fc;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a { color: var(--blue-dark); }
a:hover { color: var(--blue); }

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.wrap {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: -.02em;
}

.brand-mark {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  border-radius: 10px;
  font-size: .9rem;
}

.header-contact {
  color: var(--muted);
  font-size: .9rem;
}

.hero {
  padding: 92px 0 72px;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 20%, rgba(77, 158, 255, .28), transparent 28%),
    linear-gradient(135deg, #102947 0%, #0c4b91 100%);
}

.eyebrow {
  margin: 0 0 13px;
  color: #a9d2ff;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -.05em;
}

.hero-copy {
  max-width: 710px;
  margin: 24px 0 0;
  color: #dcecff;
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 28px;
  padding: 9px 13px;
  color: #e5fff5;
  background: rgba(17, 139, 93, .35);
  border: 1px solid rgba(168, 255, 219, .32);
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 700;
}

.status::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #53e1aa;
  border-radius: 50%;
}

.content { padding: 64px 0 80px; }

.section-heading {
  max-width: 700px;
  margin-bottom: 28px;
}

.section-heading h2 {
  margin: 0 0 8px;
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  letter-spacing: -.03em;
}

.section-heading p { margin: 0; color: var(--muted); }

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(30, 57, 88, .06);
}

.card-label {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.card h3 { margin: 0 0 8px; font-size: 1.18rem; }
.card p { margin: 0; color: var(--muted); }
.card a { font-weight: 750; text-decoration: none; overflow-wrap: anywhere; }

.notice {
  margin-top: 24px;
  padding: 28px;
  background: var(--soft);
  border-left: 4px solid var(--blue);
  border-radius: 4px 14px 14px 4px;
}

.notice h2 { margin: 0 0 8px; font-size: 1.25rem; }
.notice p { margin: 0; color: var(--muted); }

.details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}

.details h2 { margin: 0 0 12px; font-size: 1.4rem; }
.details p { margin: 0 0 10px; color: var(--muted); }

.site-footer {
  padding: 30px 0;
  color: #bac7d6;
  background: #0e2035;
  font-size: .88rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.site-footer p { margin: 0; }
.site-footer a { color: #dcecff; }

@media (max-width: 760px) {
  .hero { padding: 68px 0 56px; }
  .cards, .details { grid-template-columns: 1fr; }
  .details { gap: 22px; }
  .header-contact { display: none; }
  .footer-inner { flex-direction: column; }
}

