/* Grundinställningar */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background-color: #f9f9f9;
  color: #222;
}

/* Header */
header {
  background-color: #000;
  color: #fff;
  padding: 15px 0;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 600;
  font-size: 1.5rem;
  color: #ffcc00;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

nav a:hover {
  color: #ffcc00;
}

.phone a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.phone a:hover {
  color: #ffcc00;
}


/* Hero */
#hero {
  background-color: #ffcc00; /* Byt senare till bakgrundsbild */
  color: #000;
  text-align: center;
  padding: 100px 20px;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 1.2rem;
}

/* Tjänster */
#tjanster {
  text-align: center;
  padding: 60px 20px;
}

#tjanster h2 {
  margin-bottom: 40px;
  font-size: 2rem;
  color: #000;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.card {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card h3 {
  color: #ffcc00;
  margin-bottom: 10px;
}

/* Footer */
footer {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

/* Responsivitet */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    gap: 10px;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  #hero {
    padding: 80px 20px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }
}

/* Om oss – modern sektion */
.about-section {
  background-color: #000;
  color: #fff;
  padding: 80px 20px;
}

.about-section h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 50px;
  color: #ffcc00;
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.about-card {
  background-color: #111;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(255, 204, 0, 0.3);
}

.about-card h3 {
  color: #ffcc00;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.about-card p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #ddd;
}

.language-switch {
  display: flex;
  gap: 8px;
}

.language-switch button {
  background: transparent;
  border: 1px solid #ffcc00;
  color: #ffcc00;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
}

.language-switch button:hover {
  background-color: #ffcc00;
  color: #000;
}

/* Rabatter sektion */
.discount-section {
  background-color: #111;
  color: #fff;
  padding: 80px 20px;
}

.discount-section h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 50px;
  color: #ffcc00;
}

.discount-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.discount-card {
  background-color: #000;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.discount-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(255, 204, 0, 0.3);
}

.discount-card h3 {
  color: #ffcc00;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.discount-card p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #ddd;
}



