* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #f5f7fb;
  color: #222;
}

img,
iframe {
  max-width: 100%;
}

/* =========================
   ØVERSTE MENU
========================= */

nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;

  min-height: 90px;
  padding: 0 8%;

  display: flex;
  justify-content: space-between;
  align-items: center;

  background: transparent;
}

/* Logo */
.logo-box {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-box img {
  height: 68px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Menu-links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  font-size: 20px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #F50D61;
}

/* =========================
   HERO
========================= */

.hero {
  min-height: 50vh;
  padding: 120px 8% 70px 8%;

  display: flex;
  align-items: center;

  background:
    linear-gradient(
      135deg,
      rgba(255, 150, 40, 0.38) 0%,
      rgba(40, 160, 80, 0.34) 12%,
      rgba(40, 90, 190, 0.34) 24%,
      rgba(130, 60, 170, 0.34) 36%,
      rgba(255, 210, 70, 0.36) 48%,
      rgba(238, 40, 90, 0.34) 58%,
      rgba(0, 0, 0, 0.18) 68%,
      rgba(120, 70, 40, 0.24) 76%,
      rgba(255, 255, 255, 0.34) 84%,
      rgba(245, 169, 184, 0.36) 92%,
      rgba(91, 206, 250, 0.36) 100%
    ),
    linear-gradient(
      135deg,
      #fce7f3 0%,
      #ede9fe 45%,
      #dbeafe 100%
    );

  color: white;
}

.hero-content {
  max-width: 950px;
}

.hero h1 {
  font-size: 48px;
  line-height: 1.15;
  margin-bottom: 20px;
  max-width: 900px;

  color: white;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.22);
}

.hero p {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 30px;
  max-width: 550px;

  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
}

/* =========================
   ABOUT
========================= */

.about-section {
  padding: 80px 8%;
  background: white;
}

.about-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-text {
  width: 100%;
}

.about-text h2 {
  font-size: 36px;
  color: #F50D61;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 18px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 18px;
}

.about-box {
  width: 100%;
  background: #f5f7fb;
  padding: 35px;

  border-radius: 22px;
  border-left: 6px solid #F50D61;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
}

.about-box h3 {
  font-size: 26px;
  color: #F50D61;
  margin-bottom: 18px;
}

.about-box ul {
  list-style: none;
}

.about-box li {
  font-size: 17px;
  color: #444;
  margin-bottom: 14px;
  position: relative;
  padding-left: 28px;
}

.about-box li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: #F50D61;
  font-weight: bold;
}

/* =========================
   KALENDER
========================= */

.google-calendar-section {
  padding: 70px 8%;
  background: #f5f7fb;
}

.google-calendar-section h2 {
  font-size: 36px;
  color: #F50D61;
  margin-bottom: 30px;
}

.calendar-wrapper {
  background: white;
  padding: 20px;

  border-radius: 18px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);

  overflow: hidden;
}

.calendar-wrapper iframe {
  width: 100%;
  height: 650px;
  border: none;
  border-radius: 12px;
}

/* =========================
   CAROUSEL
========================= */

.carousel-section {
  padding: 70px 8%;
  background: #f5f7fb;
  text-align: center;
}

.carousel-section h2 {
  font-size: 36px;
  color: #F50D61;
  margin-bottom: 30px;
}

.carousel {
  position: relative;
  max-width: 900px;
  height: 500px;
  margin: 0 auto;

  border-radius: 22px;
  overflow: hidden;

  background: white;
}

.carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  width: 52px;
  height: 52px;

  border: none;
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.88);
  color: #F50D61;

  font-size: 22px;
  cursor: pointer;
  z-index: 2;

  display: flex;
  align-items: center;
  justify-content: center;
}

.prev {
  left: 18px;
}

.next {
  right: 18px;
}

/* =========================
   SOCIALE MEDIER
========================= */

.social-section {
  padding: 70px 8%;
  background: white;
  text-align: center;
}

.social-section h2 {
  font-size: 36px;
  color: #F50D61;
  margin-bottom: 10px;
}

.social-section > p {
  font-size: 18px;
  color: #555;
  margin-bottom: 35px;
}

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

.social-card {
  background: #f5f7fb;

  padding: 30px 20px;
  border-radius: 18px;

  text-decoration: none;
  color: #222;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
}

.social-card h3 {
  margin-top: 15px;
  margin-bottom: 10px;
  font-size: 22px;
}

.social-card p {
  font-size: 16px;
  color: #555;
  margin-bottom: 0;
}

.circle-icon {
  width: 110px;
  height: 110px;

  margin: 0 auto 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);

  color: white;
  font-size: 58px;
}

.circle-icon i {
  color: white !important;
  -webkit-text-fill-color: white;
  background: none;
  font-size: 58px;
}

.rainbow-bg {
  background: linear-gradient(
    135deg,
    red,
    orange,
    yellow,
    green,
    blue,
    indigo,
    violet
  );
}

/* =========================
   TABLET / MOBIL
========================= */

@media (max-width: 800px) {

  /* =========================
     MENU
  ========================= */

  nav {
    width: 100%;
    height: 64px;
    min-height: 64px;

    padding: 0 14px;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;

    flex-wrap: nowrap;
    gap: 8px;
  }

  .logo-box {
    display: flex;
    align-items: center;

    height: 64px;
    flex: 0 0 auto;
  }

  .logo-box img {
    height: 36px;
    width: auto;
  }

  .nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;

    height: 64px;
    flex: 1;

    flex-wrap: nowrap;
    gap: 14px;
  }

  .nav-links a {
    display: flex;
    align-items: center;

    height: 64px;

    font-size: 13px;
    line-height: 1;
    white-space: nowrap;
  }

  /* =========================
     HERO
     styr bredde her
  ========================= */

  .hero {
    min-height: 62vh;

    /* HERO sideafstand */
    padding-left: 22px;
    padding-right: 22px;

    padding-top: 90px;
    padding-bottom: 48px;

    justify-content: center;
    text-align: center;
  }

  .hero-content {
    /* HERO indholdsbredde */
    width: 94%;
    max-width: 520px;

    margin: 0 auto;
  }

  .hero h1 {
    font-size: 27px;
    line-height: 1.28;
    margin-bottom: 16px;
  }

  .hero p {
    font-size: 16px;
    line-height: 1.5;

    width: 90%;
    max-width: 420px;

    margin: 0 auto;
  }

  /* =========================
     ABOUT
     styr bredde her
  ========================= */

  .about-section {
    /* ABOUT ydre bredde */
    padding: 48px 20px;
  }

  .about-content {
    display: grid;
    grid-template-columns: 1fr;

    width: 100%;
    margin: 0 auto;

    gap: 28px;
  }

  .about-text {
    /* ABOUT tekstbredde */
    width: 100%;
    max-width: 680px;

    margin: 0 auto;
  }

  .about-text h2 {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 18px;
  }

  .about-text p {
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 18px;
  }

  .about-box {
    /* WHAT WE DO bredde */
    width: 90%;
    max-width: 560px;

    margin: 0 auto;

    padding: 24px 22px;

    border-radius: 18px;
    border-left-width: 5px;
  }

  .about-box h3 {
    font-size: 21px;
    margin-bottom: 16px;
  }

  .about-box li {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 12px;
    padding-left: 24px;
  }

  /* =========================
     KALENDER
     styr bredde her
  ========================= */

  .google-calendar-section {
    /* KALENDER ydre bredde */
    padding: 50px 10px;
  }

  .google-calendar-section h2 {
    font-size: 27px;
  }

  .calendar-wrapper {
    /* KALENDER boksbredde */
    width: 100%;
    max-width: 760px;

    margin: 0 auto;

    padding: 6px;
  }

  .calendar-wrapper iframe {
    width: 100%;
    height: 430px;
  }

  /* =========================
     CAROUSEL
     styr bredde her
  ========================= */

  .carousel-section {
    /* CAROUSEL ydre bredde */
    padding: 50px 10px;
  }

  .carousel-section h2 {
    font-size: 27px;
  }

  .carousel {
    /* CAROUSEL billedbredde */
    width: 96%;
    max-width: 650px;

    height: 260px;

    margin: 0 auto;
  }

  .carousel-btn {
    width: 38px;
    height: 38px;
    font-size: 15px;
  }

  .prev {
    left: 10px;
  }

  .next {
    right: 10px;
  }

  /* =========================
     SOCIALE MEDIER
     styr bredde her
  ========================= */

  .social-section {
    /* SOCIAL sektionens ydre bredde */
    padding: 50px 24px;
  }

  .social-section h2 {
    font-size: 27px;
  }

  .social-section > p {
    font-size: 15px;
    margin-bottom: 25px;
  }

  .social-grid {
    grid-template-columns: 1fr;

    /* SOCIAL kortenes bredde */
    width: 92%;
    max-width: 580px;

    margin: 0 auto;

    gap: 14px;
  }

  .social-card {
    width: 100%;
    padding: 20px 15px;
  }

  .circle-icon {
    width: 65px;
    height: 65px;

    margin-bottom: 10px;

    font-size: 30px;
  }

  .circle-icon i {
    font-size: 30px;
  }

  .social-card h3 {
    font-size: 18px;
    margin-top: 8px;
    margin-bottom: 5px;
  }

  .social-card p {
    font-size: 14px;
    line-height: 1.4;
  }
}

/* =========================
   SMÅ MOBILER
========================= */

@media (max-width: 480px) {

  /* MENU */
  nav {
    height: 58px;
    min-height: 58px;

    padding: 0 10px;
    gap: 7px;
  }

  .logo-box {
    height: 58px;
  }

  .logo-box img {
    height: 31px;
  }

  .nav-links {
    height: 58px;
    gap: 9px;
  }

  .nav-links a {
    height: 58px;

    font-size: 11px;
    white-space: nowrap;
  }

  /* HERO */
  .hero {
    padding-left: 18px;
    padding-right: 18px;

    padding-top: 82px;
    padding-bottom: 42px;
  }

  .hero-content {
    /* ændr fx til 100% hvis den skal være bredere */
    width: 96%;
  }

  .hero h1 {
    font-size: 24px;
  }

  .hero p {
    width: 94%;
    font-size: 15px;
  }

  /* ABOUT */
  .about-section {
    padding-left: 22px;
    padding-right: 22px;
  }

  .about-text {
    /* ændr denne for selve teksten */
    width: 100%;
  }

  .about-text h2 {
    font-size: 27px;
  }

  .about-text p {
    font-size: 16px;
  }

  .about-box {
    /* ændr fx 88%, 92%, 100% */
    width: 92%;

    padding: 21px 19px;
  }

  /* KALENDER */
  .google-calendar-section {
    padding-left: 8px;
    padding-right: 8px;
  }

  .calendar-wrapper {
    /* kalenderen næsten helt ud til kanten */
    width: 100%;
  }

  .calendar-wrapper iframe {
    height: 400px;
  }

  /* CAROUSEL */
  .carousel-section {
    padding-left: 8px;
    padding-right: 8px;
  }

  .carousel {
    /* billedets bredde */
    width: 97%;
    height: 220px;
  }

  /* SOCIAL */
  .social-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .social-grid {
    /* sociale kort lidt smallere */
    width: 94%;
  }

  .circle-icon {
    width: 58px;
    height: 58px;
  }

  .circle-icon i {
    font-size: 26px;
  }

  .social-card {
    padding: 18px 12px;
  }

  .social-card h3 {
    font-size: 17px;
  }

  .social-card p {
    font-size: 13px;
  }
}