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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #1a1a1a;
  line-height: 1.5;
  background: #ffffff;
}

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

/* --- Mobile-first bas --- */
.site-header .container {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 16px;
  padding-bottom: 16px;
}
.logo { font-weight: 700; font-size: 1.1rem; }
.site-header nav a {
  margin-right: 16px;
  color: #1a1a1a;
  text-decoration: none;
  font-size: 0.9rem;
}

.hero { padding: 40px 0; text-align: center; }
.hero h1 { font-size: 1.8rem; margin-bottom: 8px; }
.hero .tagline { font-size: 1rem; color: #555; margin-bottom: 24px; }
.hero-image { width: 100%; border-radius: 8px; margin-top: 24px; }

.btn-primary {
  display: inline-block;
  background: var(--accent, #1a1a1a);
  color: white;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
}

.services { padding: 40px 0; background: #fafafa; }
.services h2, .hours h2, .contact h2 { margin-bottom: 20px; font-size: 1.3rem; }
.services-list { display: grid; grid-template-columns: 1fr; gap: 12px; }
.service-card { background: white; padding: 16px; border-radius: 8px; border: 1px solid #eee; }
.service-card .price { color: var(--accent); font-weight: 600; }

.hours { padding: 40px 0; }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 8px 0; border-bottom: 1px solid #eee; }
.hours-table td:last-child { text-align: right; }

.contact { padding: 40px 0; background: #fafafa; }
.contact p { margin-bottom: 8px; }
.contact a { color: var(--accent); text-decoration: none; }

.site-footer { padding: 20px 0; text-align: center; color: #888; font-size: 0.8rem; }
.site-footer a { color: #888; }

/* --- Skala upp för större skärmar --- */
@media (min-width: 768px) {
  .site-header .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .hero h1 { font-size: 2.6rem; }
  .hero .tagline { font-size: 1.2rem; }
  .services-list { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
}
