/* ===== Reset & bas ===== */
@keyframes wobble {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(10deg);
  }
  50% {
    transform: rotate(0deg);
  }
  75% {
    transform: rotate(-10deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: linear-gradient(135deg, #fef7f0 0%, #ffffff 100%);
}

/* ===== Typografi ===== */
h1 {
  line-height: 1.2;
  font-size: clamp(2.3rem, 6vw, 3rem);
  font-weight: 800;
  background: linear-gradient(90deg, #ff7f50, #f39c12);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 24px;
  font-family: "Poppins", sans-serif;
  -webkit-text-stroke: 0.3px black;
}

h2 {
  font-family: "Poppins", sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 32px;
  color: #1a1a1a;
  margin-top: 20px;
}

h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1a1a1a;
}

p {
  font-size: 1.125rem;
  color: #6b7280;
  margin-bottom: 16px;
}

/* ===== Layout ===== */
.container {
  max-width: 85%;
  margin: 0 auto;
  padding: 0 24px;
}

.color-section-container,
.white-section-container {
  max-width: 75%;
  margin: 0 auto;
}

.color-section {
  padding: 4em;
  background-color: #fef7f0;
}

.white-section {
  padding: 4em;
  background-color: #ffffff;
}

.hero {
  margin-top: 6em;
  padding-bottom: 2em;
  text-align: center;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.card {
  background: #fff;
  border-radius: 1rem;
  padding: 2.5rem;
  box-shadow: 5px 6px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.card h3 {
  margin-top: 0;
  font-size: 1.25rem;
  color: #333;
}

.card p {
  margin: 0.75rem 0 0;
  color: #555;
  line-height: 1.5;
}

.product-title {
  text-align: center;
}

.opportunity-text-header {
  padding-top: 1.5em;
}

/* Små skärmar */
@media (max-width: 768px) {
  h1 {
    font-size: 3rem;
  }

  .container {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .color-section-container,
  .white-section-container {
    max-width: 90%;
    margin: 0 auto;
    text-align: center;
  }

  .color-section {
    padding: 1em;
    padding-bottom: 2em;
  }

  .white-section {
    padding: 1em;
    padding-bottom: 2em;
  }

  .hero {
    margin-top: 4em;
    padding-bottom: 3em;
  }

  .opportunity-text-header {
    padding-top: 1em;
  }
}
