/* =========================
   Basvariabler & Reset
   ========================= */
:root{
  --bg:#ffffff;
  --text:#111827;
  --muted:#6b7280;
  --border:#e5e7eb;
  --card:#ffffff;
  --cta:#dc2626;          /* röd CTA */
}

*{ box-sizing:border-box; }
html,body{
  margin:0; padding:0;
  font-family:ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Inter,Arial,sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.6;
}
img{ max-width:100%; display:block; }
a{ text-decoration:none; color:inherit; }   /* aldrig blå per default */

/* Behagliga fokusringar (tangentbordstillgänglighet) */
:focus-visible{
  outline:2px solid #2563eb;
  outline-offset:2px;
}

/* Container */
.container{ max-width:1120px; margin:0 auto; padding:0 16px; }

/* =========================
   HEADER
   ========================= */
.header{
  position:sticky; top:0; z-index:50;
  backdrop-filter:saturate(180%) blur(10px);
  background:rgba(0,0,0,0.4);                 /* mörk transparens */
  border-bottom:1px solid rgba(255,255,255,0.1);
}
.header .row{
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 0;
}
.logo{
  font-weight:800; font-size:20px; letter-spacing:-0.01em;
  color:#fff;
}

/* Meny: dold på mobil, synlig från 768px */
.nav{
  display:none; align-items:center; gap:24px;
  background:rgba(0,0,0,0.4);
  border-radius:12px; padding:8px 16px;
  backdrop-filter:blur(6px);
}
@media (min-width:768px){
  .nav{ display:flex; }
}

/* Länkar i headern – alltid vita */
.header a,
.header a:visited{ color:#fff; }

/* CTA – “Boka tid” */
.cta{
  padding:10px 14px; border-radius:16px;
  background:var(--cta); color:#fff; font-weight:600;
  transition:all .25s ease;
  box-shadow:0 0 10px rgba(220,38,38,0.3);
}
.cta:hover{
  transform:scale(1.05);
  background:#b91c1c;                       /* mörkare röd vid hover */
  box-shadow:0 0 14px rgba(220,38,38,0.5);
}

/* Menyknapp & ev. mobilmeny är avstängda (enkelt & stabilt) */
.menu-btn{ display:none !important; }
.mobile{ display:none !important; }

/* Sociala ikoner (om du visar dem i nav) */
.social-wrap{ display:flex; align-items:center; gap:10px; margin-left:8px; }
.social-btn{
  display:flex; align-items:center; justify-content:center;
  width:34px; height:34px; border-radius:50%;
  background:#fff; transition:transform .25s ease;
}
.social-btn:hover{ transform:scale(1.1); }
.social-icon{ width:18px; height:18px; filter:invert(0%); opacity:.9; transition:opacity .2s; }
.social-btn:hover .social-icon{ opacity:1; }

/* --- MOBIL: loggan på egen rad överst --- */
@media (max-width:768px){
  .header .row{
    display:grid;
    grid-template-columns:1fr;
    grid-template-rows:auto auto;   /* rad 1: logga, rad 2: (ev) nav/cta */
    row-gap:8px;
    padding:10px 0;
  }
  .logo{ justify-self:center; }     /* centrera loggan på egen rad */
}

/* =========================
   HERO
   ========================= */
.hero{ position:relative; }
.hero .bg{ height:68vh; }
@media (min-width:768px){ .hero .bg{ height:82vh; } }
.hero .overlay{ height:100%; background:rgba(0,0,0,.4); }
.hero .inner{
  height:100%;
  display:flex; flex-direction:column;
  justify-content:center; align-items:flex-start;
  color:#fff;
}
.hero .kicker{
  letter-spacing:.2em; text-transform:uppercase;
  opacity:.9; font-size:14px;
}
.hero h1{
  font-size:40px; line-height:1.1; margin:8px 0 0;
  font-weight:900; max-width:48ch;
}
@media (min-width:768px){ .hero h1{ font-size:60px; } }
.hero p{
  max-width:60ch; color:rgba(255,255,255,.9);
  margin-top:12px;
}
.hero .buttons{ display:flex; gap:12px; margin-top:24px; }
.btn{
  display:inline-block; padding:12px 16px; border-radius:16px;
  border:1px solid rgba(255,255,255,.7); color:#fff;
}
.btn.primary{
  background:#fff; color:#111827; border-color:#fff;
  font-weight:600;
}

/* =========================
   FEATURE STRIP
   ========================= */
.strip{ background:#fff; border-top:1px solid var(--border); }
.strip .grid{
  display:grid; grid-template-columns:repeat(2,1fr);
  gap:16px; padding:24px 0; text-align:center; font-size:14px;
}
.strip p{ margin:0; }
.strip .title{ font-weight:600; }
.strip .muted{ color:var(--muted); }
@media (min-width:768px){ .strip .grid{ grid-template-columns:repeat(4,1fr); } }

/* =========================
   SECTIONS (priser/galleri/kontakt)
   ========================= */
.section{ padding:64px 0; background:#f9fafb; }
.section .head{
  display:flex; align-items:flex-end; justify-content:space-between;
  gap:24px;
}
.section h2{ font-size:32px; font-weight:900; margin:0; }
.section p.lead{ color:var(--muted); margin:8px 0 0; }

/* Kort & grid */
.grid{ display:grid; grid-template-columns:1fr; gap:16px; margin-top:24px; }
@media (min-width:640px){ .grid{ grid-template-columns:repeat(2,1fr); } }
@media (min-width:1024px){ .grid{ grid-template-columns:repeat(3,1fr); } }

.card{
  background:var(--card); border:1px solid var(--border);
  border-radius:16px; padding:20px;
  box-shadow:0 1px 2px rgba(0,0,0,.04);
}
.card .row{ display:flex; align-items:flex-start; justify-content:space-between; }
.card h3{ margin:0; font-size:18px; font-weight:800; }
.badge{ font-size:12px; padding:4px 8px; border-radius:999px; background:#f3f4f6; }
.card p{ margin:10px 0; color:#4b5563; font-size:14px; }
.card ul{ margin:12px 0 0; padding-left:18px; color:#374151; font-size:14px; }

/* =========================
   GALLERI
   ========================= */
.gallery{ background:#f9fafb; }
.gallery-grid{
  display:grid; grid-template-columns:repeat(2,1fr);
  gap:12px; margin-top:24px;
}
@media (min-width:768px){
  .gallery-grid{ grid-template-columns:repeat(3,1fr); gap:16px; }
}
.gallery-grid img{
  width:100%; height:240px; object-fit:cover; border-radius:12px;
}

/* =========================
   FORMULÄR
   ========================= */
.form{
  background:#fff; border:1px solid var(--border);
  border-radius:16px; padding:24px;
  box-shadow:0 1px 2px rgba(0,0,0,.04); margin-top:16px;
}
.row2{ display:grid; grid-template-columns:1fr; gap:16px; }
@media (min-width:768px){ .row2{ grid-template-columns:1fr 1fr; } }

label span{ display:block; font-size:14px; }
input,select,textarea{
  width:100%; margin-top:6px;
  border:1px solid var(--border); border-radius:12px;
  padding:10px 12px; font-size:16px;
}
textarea{ min-height:110px; resize:vertical; }
button.primary{
  background:#000; color:#fff; border:none;
  border-radius:16px; padding:12px 16px; font-weight:600;
}
.help{ font-size:14px; color:var(--muted); }

/* =========================
   FOOTER
   ========================= */
.footer{
  border-top:1px solid var(--border);
  padding:40px 0; background:#fff;
}
.footer .grid{ display:grid; grid-template-columns:1fr; gap:16px; }
@media (min-width:768px){ .footer .grid{ grid-template-columns:repeat(4,1fr); } }
.footer p{ margin:6px 0; }
.footer .muted{ color:var(--muted); }
.footer .copy{ margin-top:16px; text-align:center; font-size:12px; color:var(--muted); }

/* Säkra att länkar i innehåll/footern inte blir blå (även tel/mail) */
.footer a, .section a,
a[href^="tel"], a[href^="mailto"]{
  color:inherit !important;
  text-decoration-color: currentColor;
}
.footer a{
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}
