/* ===============================
   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 (modern version)
   =============================== */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  backdrop-filter: blur(8px);
}
.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 1.2rem;
  color: #0f172a;
  text-decoration: none;
}
/* Gör loggan fristående från bildbegränsningar */
.logo {
  height: clamp(90px, 9vw, 130px);
  width: auto;
  max-width: none !important;
  margin-right: 0.75rem;
  transition: height 0.3s ease, transform 0.25s ease;
}
.logo:hover {
  transform: scale(1.05);
}

/* När man scrollar – krymp loggan lite */
.site-header.scrolled .logo {
  height: clamp(60px, 7vw, 90px);
}


/* NAVIGATION */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-weight: 600;
  letter-spacing: 0.2px;
  color: #0f172a;
  transition: color 0.25s ease;
}
.nav-links a:hover {
  color: #0ea5e9;
}
.nav-links a.active {
  color: #0284c7;
}
.btn-nav {
  background: linear-gradient(135deg, #0ea5e9, #38bdf8);
  color: #fff !important;
  padding: 0.6rem 1.2rem;
  border-radius: 10px;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(14,165,233,0.25);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-nav:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(14,165,233,0.3);
}

/* MOBILE MENU */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #0f172a;
  transition: all 0.3s ease;
}
@media (max-width: 800px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    flex-direction: column;
    background: #fff;
    height: 100vh;
    width: 70%;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    box-shadow: -4px 0 12px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
  }
  .nav-links.open {
    right: 0;
  }
  .menu-toggle {
    display: flex;
  }
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}

/* ===============================
   HERO
   =============================== */
.hero {
  padding: 8rem 0 4rem; /* extra top för att inte krocka med fixed header */
  text-align: center;
}
.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 1rem 0;
  font-weight: 800;
}
.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;
  font-size: 1rem;
}

/* ===============================
   BUTTONS
   =============================== */
.btn {
  padding: 0.8rem 1.6rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
}
.btn-primary {
  background: #0ea5e9;
  color: #fff;
}
.btn-primary:hover {
  background: #0284c7;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.btn-outline {
  border: 2px solid #0ea5e9;
  color: #0ea5e9;
  background: transparent;
}
.btn-outline:hover {
  background: #0ea5e9;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* ===============================
   SECTIONS: SERVICES, GALLERY, PRICES
   =============================== */
.services, .gallery, .prices {
  padding: 4rem 0;
  background: #f9f9f9;
  border-top: 1px solid #e2e8f0;
}
.section-title {
  text-align: center;
  margin-bottom: 2rem;
}
.section-title h2 {
  font-size: clamp(1.5rem, 3.2vw, 2.1rem);
  margin: 0.2rem 0;
}
.section-title h2::after {
  content: '';
  display: block;
  height: 3px;
  width: 50%;
  background: #0ea5e9;
  margin: 6px auto 0;
  border-radius: 2px;
}

/* SERVICES GRID */
.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: 1.2rem;
  transition: transform 0.3s, box-shadow 0.3s;
}
.service:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}
.icon {
  width: 44px;
  height: 44px;
  border-radius: 0.7rem;
  display: grid;
  place-items: center;
  background: #e0f2fe;
  font-size: 1.4rem;
}

/* PRICES */
.price-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  max-width: 400px;
  margin: 1rem auto;
}
.price {
  font-size: 1.8rem;
  font-weight: bold;
  color: #0ea5e9;
  margin: 1rem 0;
}

/* ===============================
   TESTIMONIALS (emoji slider)
   =============================== */
.testimonials {
  text-align: center;
  padding: 4rem 1rem;
  background: #f9f9f9;
}
.testimonial-slider {
  position: relative;
  max-width: 600px;
  margin: 2rem auto 0;
}
.testimonial {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: opacity 1s ease-in-out;
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.testimonial.active {
  opacity: 1;
  position: relative;
}
.testimonial .emoji {
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* ===============================
   BOOKING FORM
   =============================== */
.booking {
  padding: 6rem 1rem;
  background: #fff;
}
form {
  display: grid;
  gap: 1.5rem;
  max-width: 700px;
  margin: 0 auto;
  background: #f9f9f9;
  padding: 3rem;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@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-item {
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}
.faq-question {
  padding: 1rem;
  font-weight: bold;
  cursor: pointer;
  background: #f1f5f9;
  transition: background 0.3s;
}
.faq-question:hover {
  background: #e0f2fe;
}
.faq-answer {
  padding: 0 1rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.active .faq-answer {
  padding: 1rem;
  max-height: 500px;
}

/* ===============================
   FOOTER
   =============================== */
footer {
  background: #0ea5e9;
  color: #fff;
  padding: 2rem 1rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  align-items: start;
  margin-bottom: 1.5rem;
}
.footer-logo {
  height: 80px;
  width: auto;
  margin-bottom: 1rem;
}
footer h4 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}
footer a {
  color: #fff;
  text-decoration: underline;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.3);
  padding-top: 1rem;
  font-size: 0.9rem;
  text-align: center;
}
