/* Personlig utveckling med Lasse – stilmall */

:root {
  --green-dark: #2f4237;
  --green: #4a6652;
  --sand: #f6f2ea;
  --sand-dark: #ece5d8;
  --gold: #c9a227;
  --text: #2b2b28;
  --text-soft: #5f5f58;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(47, 66, 55, 0.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--sand);
  line-height: 1.7;
}

h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--green-dark);
}

img { max-width: 100%; display: block; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

.section { padding: 90px 0; }

.center { text-align: center; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 10px;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(47, 66, 55, 0.85);
  backdrop-filter: blur(8px);
}

.nav {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  color: var(--white);
  text-decoration: none;
  font-family: Georgia, serif;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark { height: 34px; width: 34px; }

.logo span { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 26px;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.95rem;
}

.nav-links a:hover { color: var(--gold); }

/* Hero */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(30, 42, 34, 0.45), rgba(30, 42, 34, 0.55)),
    url("../images/hero.jpg") center 30% / cover no-repeat;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 120px 24px 60px;
  color: var(--white);
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  margin-bottom: 18px;
}

.hero-sub {
  font-size: 1.2rem;
  max-width: 34rem;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.92);
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  margin-right: 12px;
  margin-bottom: 12px;
  transition: transform 0.15s ease, background 0.15s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary { background: var(--gold); color: var(--green-dark); }

.btn-ghost {
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: var(--white);
}

/* Om Lasse */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-img img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-text h2 { font-size: 2.2rem; margin-bottom: 18px; }

.about-text p { margin-bottom: 16px; color: var(--text-soft); }

.about-text blockquote {
  border-left: 4px solid var(--gold);
  padding-left: 18px;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--green);
}

/* Varför meditation */
.why { background: var(--sand-dark); }

.why h2 { font-size: 2.2rem; margin-bottom: 50px; }

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

.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.card img { height: 210px; width: 100%; object-fit: cover; }

.card-body { padding: 24px; }

.card-body h3 { margin-bottom: 10px; font-size: 1.3rem; }

.card-body p { color: var(--text-soft); font-size: 0.97rem; }

/* Citat-band */
.quote-band {
  background-position: center 65%;
  background-size: cover;
  background-attachment: fixed;
}

.quote-overlay {
  background: rgba(30, 42, 34, 0.55);
  padding: 110px 24px;
  text-align: center;
  color: var(--white);
}

.quote-overlay p {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2rem);
  max-width: 42rem;
  margin: 0 auto 14px;
}

.quote-overlay span { color: var(--gold); letter-spacing: 0.05em; }

/* Tjänster */
.services h2 { font-size: 2.2rem; margin-bottom: 50px; }

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

.service {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 28px;
  box-shadow: var(--shadow);
  text-align: center;
}

.service-icon { font-size: 2.2rem; margin-bottom: 14px; }

.service h3 { font-size: 1.25rem; margin-bottom: 12px; }

.service p { color: var(--text-soft); font-size: 0.97rem; }

.service-meta {
  margin-top: 14px;
  font-size: 0.85rem !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold) !important;
  font-weight: 600;
}

/* Galleri */
.gallery h2 { font-size: 2.2rem; margin-bottom: 50px; }

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

.gallery-grid figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-grid figure:hover img { transform: scale(1.04); }

.gallery-grid .span2 { grid-column: span 2; }

/* Kontakt */
.contact { background: var(--sand-dark); }

.contact h2 { font-size: 2.2rem; margin-bottom: 16px; }

.contact-text p { color: var(--text-soft); margin-bottom: 18px; }

.contact-list { list-style: none; }

.contact-list li { margin-bottom: 8px; }

.contact-list a { color: var(--green); }

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.contact-form label {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--green-dark);
}

.contact-form input,
.contact-form textarea {
  border: 1px solid #d8d2c4;
  border-radius: 8px;
  padding: 12px 14px;
  margin-bottom: 18px;
  font: inherit;
  background: var(--sand);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--gold);
  border-color: transparent;
}

.contact-form .btn { align-self: flex-start; border: none; cursor: pointer; }

/* Sidfot */
.site-footer {
  background: var(--green-dark);
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  padding: 34px 24px;
  font-size: 0.9rem;
}

.site-footer .credits { margin-top: 6px; font-size: 0.8rem; opacity: 0.7; }

.site-footer a { color: var(--gold); }

/* Mobil */
@media (max-width: 820px) {
  .two-col { grid-template-columns: 1fr; gap: 36px; }
  .cards, .services-grid { grid-template-columns: 1fr; }
  .nav-links { gap: 16px; }
  .nav-links a { font-size: 0.85rem; }
  .section { padding: 60px 0; }
  .quote-band { background-attachment: scroll; }
}
