/* 🔹 Base font setup */

html {
  scroll-behavior: smooth;
}
body {
  font-family:
    "Segoe UI",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  font-size: 16px;
  font-weight: 100;
  line-height: 1.6;
  color: #111;
}

.alex-brush-regular {
  font-family: "Alex Brush", cursive;
  font-weight: 400;
  font-style: normal;
}

/* 🔹 Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "IBM Plex Serif", serif;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 0.5em;
  color: #111;
}

/* 🔹 Typografi scale */

h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.1rem;
}

h6 {
  font-size: 1rem;
}

/* 🔹 Paragraph */

p {
  margin-bottom: 1rem;
}

.Medium-font {
  font-size: 1.25rem;
  font-weight: 100;
}

.x-large-font {
  font-size: 6rem;
  font-weight: 500;
}

.semibold {
  font-weight: 500;
}
.bold {
  font-weight: 700;
}

/* 🔹 Small text */

small {
  font-size: 0.875rem;
  color: #666;
}

/* 🔹 Links */

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Bedre rendering */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.bg-light {
  background-color: #f8f6ff !important;
}

section {
}

.container {
  max-width: 1140px;
}

.custompadding {
  padding: 180px 0px;
}

.logo {
  font-weight: 500;
}

.logo img {
  height: 32px;
  width: 32px;
  display: inline-block;
  margin-right: 12px;
}

.Pygmee-nav {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.Pygmee-nav a {
  text-decoration: none;
}

.Pygmee-nav a:hover {
  color: #9324fb;
}

.Hero {
  background-image: url("assets/SectionBG.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.padding-bot-sm {
  padding-bottom: 24px;
}
.padding-bot-md {
  padding-bottom: 48px;
}

.padding-right-md {
  padding-right: 48px;
}

.padding-right-lg {
  padding-right: 60px;
}

.btn-pygmee {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  background-color: #9324fb;
  color: #fff;
  border: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);

  padding: 12px 20px;
  border-radius: 6px;

  font-weight: 500;
  text-decoration: none;

  transition:
    background-color 0.25s ease,
    transform 0.1s ease,
    box-shadow 0.2s ease;
}

/* Hover */
.btn-pygmee:hover {
  background-color: #7615d0;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* Pressed */
.btn-pygmee:active {
  background-color: #5a159a;
  transform: translateY(1px);
}

/* Fokus (vigtigt for UX) */
.btn-pygmee:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(147, 36, 251, 0.3);
}

/* Ikon */
.btn-pygmee i {
  transition: transform 0.2s ease;
}

/* Subtil micro interaction */
.btn-pygmee:hover i {
  transform: translateX(3px);
}

.icon-box {
  width: 40px;
  height: 40px;
  border: 1px solid #9324fb;
  border-radius: 8px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 48px;
  background-color: rgba(147, 36, 251, 0.05);
}

.icon-box i {
  font-size: 1rem;
  color: #9324fb;
  line-height: 1;
}

img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

blockquote {
  padding: 24px;
  background-color: #f8f6ff;
  border-radius: 25px;
}

.btn-ghost {
  color: #111;
}

.btn-ghost:hover {
  color: #9324fb;
  text-decoration: none;
}

.about-pygmee {
  position: relative;
  overflow: hidden;
}

.about-pygmee::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/HeroBG.png") center/cover no-repeat;
  opacity: 0.8;
  z-index: 0;
}

.about-pygmee > * {
  position: relative;
  z-index: 1;
}

.Gradient_BG {
  background: rgba(255, 255, 255, 0.2);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 34%, rgba(113, 101, 170, 0.2) 100%);
}

.BG-dark {
  background-color: #111;
  color: #fff;
}

.badge {
  padding: 8px 12px;
  background: #ece6ff;
}

.case-card {
  background: #fff;
  padding: 48px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.testimonial-section {
  background: radial-gradient(circle at center, rgba(147, 36, 251, 0.15), transparent 70%);
}

@media (max-width: 768px) {
  .Hero {
    text-align: left;
  }
  .Hero .row {
    gap: 24px;
  }
  .row {
    padding: 0 2em;
  }
  h1 {
    font-size: 2.2rem;
  }

  .custompadding {
    padding: 80px 0;
  }

  .Section-Image_01{
    display: none;
  }

  .case-card{
    margin-bottom: 48px;
  }
  .padding-right-lg{
    padding-right: 12px;
  }

}
