/* ══ ODIN — Global style override ══
   Importerar kairos-theme.css och skriver över legacy-färger
   för startsida och landningssida. */

@import url('/static/kairos-theme.css');

/* Landing page hero */
.landing-page .hero {
  position: relative; min-height: 100vh;
  background: url('/static/img/hero-bg-new.jpg') center center/cover no-repeat fixed;
  color: white; display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center; padding-bottom: 40px;
}
.hero-reviews-strip {
  width: 100%; overflow: hidden; margin-top: 36px;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(5,3,2,0.45) 0%, rgba(0,0,0,0.1) 40%, rgba(0,0,0,0.05) 70%, rgba(5,3,10,0.2) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 900px; padding: 0 20px; }
.hero h1 { font-family: var(--font-serif); font-size: 4.5rem; margin-bottom: 0.2em; letter-spacing: 1px; font-weight: 300; }
.hero h2 { font-family: var(--font-serif); font-size: 1.9rem; font-weight: 300; margin-bottom: 1.5em; opacity: 0.88; }
.hero .lead { font-size: 1.15rem; line-height: 1.7; margin-bottom: 3em; max-width: 680px; margin-left: auto; margin-right: auto; opacity: 0.85; }

.hero-buttons .btn {
  font-family: var(--font-sans); font-size: 0.92rem; font-weight: 600;
  padding: 14px 38px; margin: 0 8px; border-radius: 99px; text-decoration: none;
  letter-spacing: 0.04em; text-transform: uppercase; display: inline-block;
  transition: all 0.18s;
}
.btn.primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: white; border: none; box-shadow: 0 4px 16px rgba(184,147,90,0.3);
}
.btn.primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(184,147,90,0.4); }
.btn.secondary {
  background: transparent; border: 1.5px solid rgba(255,255,255,0.5); color: white;
}
.btn.secondary:hover { background: rgba(255,255,255,0.1); border-color: white; }

/* Sektioner */
.what-is-kairos { padding: 100px 20px; background: var(--surface); text-align: center; }
.what-is-kairos h2 { font-family: var(--font-serif); font-size: 2.6rem; margin-bottom: 1em; color: var(--text); font-weight: 400; }
.what-is-kairos p { font-size: 1.1rem; line-height: 1.85; max-width: 820px; margin: 0 auto 2em; color: var(--text2); }

.benefits { padding: 80px 20px; background: var(--bg2); }
.benefits h2 { font-family: var(--font-serif); text-align: center; font-size: 2.4rem; margin-bottom: 3em; color: var(--text); font-weight: 400; }
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; max-width: 1200px; margin: 0 auto; }
.benefit { background: var(--surface); padding: 36px; border-radius: var(--r-lg); border: 1px solid var(--border); text-align: center; transition: transform 0.2s, box-shadow 0.2s; }
.benefit:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.benefit h3 { font-family: var(--font-serif); font-size: 1.4rem; margin-bottom: 0.8em; color: var(--text); font-weight: 400; }
.benefit p { color: var(--text2); font-size: 0.92rem; line-height: 1.7; }

.cta-section { position: relative; padding: 100px 20px; background: url('/static/img/hero-bg-new.jpg') center/cover no-repeat fixed; color: white; text-align: center; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: rgba(28,26,23,0.6); }
.cta-section > * { position: relative; z-index: 1; }
.cta-section h2 { font-family: var(--font-serif); font-size: 2.8rem; margin-bottom: 1.5em; font-weight: 300; }

footer { background: #1C1A17; color: rgba(244,240,234,0.5); padding: 48px 20px 28px; text-align: center; }
footer a { color: var(--gold-light); text-decoration: none; margin: 0 10px; }
footer a:hover { color: var(--gold); }
