/* ===============================
   RESET & BAS
   =============================== */
*, *::before, *::after {
  box-sizing: border-box;
}
html, body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;
  line-height: 1.6;
  color: #0f172a;
  background: #fff;
}
img, svg {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ===============================
   HEADER
   =============================== */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.95);
  border-bottom: 1px solid #e2e8f0;
  backdrop-filter: blur(8px);
  text-align: center;
  padding: 1rem 0;
}
.header-top {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: .6rem 0;
}
.logo {
  height: 90px;
  width: auto;
  border-radius: .6rem;
  display: block;
}
@media (max-width: 768px) {
  .logo {
    height: 70px;
  }
}
.menu {
  display: flex !important;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  background: none;
  padding: 0;
  border: none;
}
.menu a {
  color: #475569;
  font-weight: 600;
}
.menu a.active,
.menu a:hover {
  color: #0f172a;
}

/* ===============================
   HERO
   =============================== */
.hero {
  padding: 4rem 0;
  text-align: center;
}
.hero .badge {
  background: #0ea5e9;
  color: #fff;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font-size: 0.9rem;
}
.hero h1 {
  font-size: 2.5rem;
  margin: 1rem 0;
}
.hero p {
  font-size: 1.1rem;
  color: #475569;
}
.hero-cta {
  margin: 1.5rem 0;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.trust span {
  display: block;
  margin: 0.3rem 0;
}

/* ===============================
   BUTTONS
   =============================== */
.btn {
  padding: 0.8rem 1.6rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: background 0.3s, color 0.3s;
}
.btn-primary {
  background: #0ea5e9;
  color: #fff;
}
.btn-primary:hover {
  background: #0284c7;
}
.btn-outline {
  border: 2px solid #0ea5e9;
  color: #0ea5e9;
  background: transparent;
}
.btn-outline:hover {
  background: #0ea5e9;
  color: #fff;
}

/* ===============================
   SERVICES
   =============================== */
.services {
  padding: 3rem 0;
  border-top: 1px solid #e2e8f0;
}
.section-title {
  text-align: center;
  margin: 0 0 2rem;
}
.section-title h2 {
  font-size: clamp(1.5rem, 3.2vw, 2.1rem);
  margin: 0.2rem 0;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 900px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}
.service {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 1rem;
  display: grid;
  gap: 0.4rem;
}
.service h3 {
  margin: 0.2rem 0;
}
.icon {
  width: 44px;
  height: 44px;
  border-radius: 0.7rem;
  display: grid;
  place-items: center;
  background: #e0f2fe;
}

/* ===============================
   GALLERY
   =============================== */
.gallery {
  padding: 3rem 0;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}
@media (max-width: 900px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.photo {
  border: 1px solid #e2e8f0;
  border-radius: 0.7rem;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===============================
   PRICES
   =============================== */
.prices {
  padding: 4rem 0;
  border-top: 1px solid #e2e8f0;
  background: #f9f9f9;
}
.price-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.price {
  font-size: 1.8rem;
  font-weight: bold;
  color: #0ea5e9;
  margin: 1rem 0;
}

/* ===============================
   TESTIMONIALS
   =============================== */
.testimonials {
  text-align: center;
  padding: 4rem 1rem;
  background: #f9f9f9;
}
.testimonials .section-title {
  margin-bottom: 2rem;
}
.testimonials .section-title h2 {
  font-size: 2rem;
}
.testimonial {
  display: none;
  font-size: 18px;
}
.testimonial.active {
  display: block;
}
.slider-dots {
  margin-top: 20px;
}
.slider-dots button {
  width: 14px;
  height: 14px;
  margin: 0 6px;
  border-radius: 50%;
  border: none;
  background: #bbb;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.slider-dots button.active {
  background: #333;
  transform: scale(1.3);
}

/* ===============================
   BOOKING / FORM
   =============================== */
.booking {
  padding: 5rem 1rem;
  background: #fff;
}
.booking .section-title {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.booking .section-title p {
  text-align: center;
  margin: 0 auto;       /* centrera blocket */
  display: block;       /* säkerställ block-nivå */
  font-size: 1.05rem;
  color: #475569;
}

form {
  display: grid;
  gap: 1rem;
  max-width: 700px;
  margin: 0 auto;
  background: #f9f9f9;
  padding: 2rem;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 800px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}
input, select, textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid #ddd;
  border-radius: 0.8rem;
  font-size: 1rem;
}
label {
  font-weight: bold;
  display: block;
  margin-bottom: 0.3rem;
}

/* ===============================
   FAQ
   =============================== */
.faq {
  padding: 4rem 0;
  background: #f9f9f9;   /* svag bakgrund */
  border-top: 1px solid #e2e8f0;
}

.faq details {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-bottom: 1rem;
  padding: 1rem;
}

.faq summary {
  font-weight: bold;
  cursor: pointer;
}

/* ===============================
   FOOTER
   =============================== */
footer {
  background: #0ea5e9;
  color: #fff;
  padding: 2rem 1rem;
  text-align: center;
}
footer a {
  color: #fff;
  text-decoration: underline;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.3);
  margin-top: 1rem;
  padding-top: 1rem;
  font-size: 0.9rem;
}
/* Honeypot – gömt men kvar i DOM för bots */
.sr-only {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
