@import url('https://fonts.googleapis.com/css2?family=Habibi&family=Mulish:ital,wght@0,200..1000;1,200..1000&family=Roboto+Slab:wght@100..900&display=swap');


body {
  background-color: rgb(56, 107, 192);
}

h1 {
  font-family: "Roboto Slab";
}

h2,h4 {
  font-family: "Habibi";
}

p, span{
  font-family: "Mulish";
}

.map {
  background-color: rgb(251, 251, 251);
}

.service-card {
  text-align: center;
  padding: 1rem;
  border-radius: 0.75rem;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  max-width: 100%; /* <- förhindrar overflow */
  box-sizing: border-box;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 2px 6px #0d6efd;
}

.service-icon {
  font-size: 2rem;
  color: #0d6efd;
  margin-bottom: 0.5rem;
}

.logo-first {
  color: #0d6efd;
}

.logo-secondary {
  color: #ffc107;
  text-shadow: 1px 1px 1px #0d6efd;
}

/* Add subtle section separation */
section {
  position: relative;
}

section + section {
  border-top: 1px solid rgba(0, 0, 0, 0.05); /* subtle separator line */
}

/* Optional modern background shades */
.bg-alt {
  background-color: #f8f9fb; /* light gray-blue */
}

.bg-white {
  background-color: #ffffff;
}

.bg-light {
  background-color: #f6f6f6;
}

.section-pill {
  display: inline-block;
  background: #0d6efd; /* brand blue */
  color: #fff;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
}

.map iframe {
    border-radius: 10px;
    max-width: 100%;
    height: 400px;
  }
  
@media screen and (min-width: 600px) {
  .container {
    max-width: 1200px; /* prevents super-wide stretching */
  }
  .carousel-item img {
    max-height: 500px;
    object-fit: cover;
  }
  h2,
  h4 {
    margin-top: 2rem;
    margin-bottom: 1.5rem;
  }

  p {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  
}
