/*
Theme Name: Falk Størling Group
Theme URI: https://coachfalcon.dk/
Author: Falk Størling Group
Description: Et simpelt, seriøst one-page tema til Falk Størling Group med sektioner for virksomheder, om og kontakt.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fsg
*/

:root{
  --fsg-bg:#0b0f14;
  --fsg-surface:#111823;
  --fsg-text:#e9eef6;
  --fsg-muted:#aab6c6;
  --fsg-line:rgba(255,255,255,.10);
  --fsg-max:1100px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,"Apple Color Emoji","Segoe UI Emoji";
  background:linear-gradient(180deg,var(--fsg-bg),#05070a);
  color:var(--fsg-text);
  line-height:1.55;
}

a{color:inherit;text-decoration:none}
a:hover{opacity:.9}

.container{max-width:var(--fsg-max);margin:0 auto;padding:0 20px}

.site-header{
  position:sticky;top:0;z-index:50;
  background:rgba(11,15,20,.78);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--fsg-line);
}

.header-inner{display:flex;align-items:center;justify-content:space-between;gap:20px;min-height:70px}

.brand-link{display:flex;align-items:center;gap:12px}
.brand-text{font-weight:700;letter-spacing:.2px}
.custom-logo{max-height:34px;width:auto}

.nav-list{list-style:none;margin:0;padding:0;display:flex;gap:18px;align-items:center}
.nav-list a{color:var(--fsg-muted);font-weight:600;font-size:14px}
.nav-list a:hover{color:var(--fsg-text)}

.hero{padding:72px 0 36px}
.hero-card{
  background:linear-gradient(180deg,rgba(255,255,255,.06),rgba(255,255,255,.02));
  border:1px solid var(--fsg-line);
  border-radius:18px;
  padding:34px;
}
.hero h1{margin:0 0 10px;font-size:40px;letter-spacing:-.5px}
.hero p{margin:0;color:var(--fsg-muted);max-width:72ch}

.hero-actions{margin-top:22px;display:flex;gap:10px;flex-wrap:wrap}
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:12px 14px;border-radius:12px;
  border:1px solid var(--fsg-line);
  background:rgba(255,255,255,.06);
  font-weight:700;font-size:14px;
}
.btn.primary{
  background:#ffffff;
  color:#0b0f14;
  border-color:#ffffff;
}

.section{padding:44px 0}
.section h2{margin:0 0 14px;font-size:22px}
.section p{color:var(--fsg-muted);margin:0 0 14px}

.grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px}
@media (max-width: 900px){.grid{grid-template-columns:1fr}}
.card{
  background:rgba(255,255,255,.04);
  border:1px solid var(--fsg-line);
  border-radius:16px;
  padding:18px;
  display:flex;flex-direction:column;gap:8px;
  min-height:140px;
}
.card-title{font-weight:800}
.card-desc{color:var(--fsg-muted);font-size:14px}
.card-link{margin-top:auto;color:var(--fsg-text);font-weight:800;font-size:14px}

.split{display:grid;grid-template-columns:1.2fr .8fr;gap:16px}
@media (max-width: 900px){.split{grid-template-columns:1fr}}
.panel{
  background:rgba(255,255,255,.04);
  border:1px solid var(--fsg-line);
  border-radius:16px;
  padding:18px;
}

label{display:block;font-weight:700;font-size:13px;margin:0 0 6px}
input,textarea{
  width:100%;
  border-radius:12px;
  border:1px solid var(--fsg-line);
  background:rgba(0,0,0,.25);
  color:var(--fsg-text);
  padding:12px 12px;
  outline:none;
}
textarea{min-height:120px;resize:vertical}
.form-row{margin-bottom:12px}

.notice{
  margin:0 0 14px;
  padding:12px 12px;
  border-radius:12px;
  border:1px solid var(--fsg-line);
  background:rgba(255,255,255,.06);
  color:var(--fsg-text);
  font-weight:700;
}

.site-footer{
  border-top:1px solid var(--fsg-line);
  padding:22px 0;
  color:var(--fsg-muted);
}
.footer-inner{display:flex;align-items:center;justify-content:space-between;gap:18px;flex-wrap:wrap}
.footer-title{color:var(--fsg-text);font-weight:800}
.to-top{color:var(--fsg-muted);font-weight:700}