* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter, sans-serif;
}


html {
  scroll-behavior: smooth;
}

html, body {
  overflow-x: hidden;
}

body {
  background: #fff;
  color: #111;
  cursor: default;
}


a, .card, .img-wrap {
  cursor: pointer;
}




/* NAV - SUPER CLEAN FLOAT */
.nav {
  position: fixed;
  top: 26px;
  left: 50%;
  transform: translateX(-50%);

  width: 90%;
  max-width: 2000px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 18px 34px;

  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(18px);

  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 999px;

  transition:
  padding 1.2s cubic-bezier(0.22, 1, 0.36, 1),
  background 1.2s cubic-bezier(0.22, 1, 0.36, 1),
  box-shadow 1.2s cubic-bezier(0.22, 1, 0.36, 1),
  max-width 1.4s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 9999;

  will-change: padding, max-width, background, box-shadow;
  backface-visibility: hidden;
}

/* scroll state */
.nav.scrolled {
  padding: 18px 40px;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.06);
  max-width: 1050px;
}

/* LEFT */
.left {
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.2px;
}

/* CENTER LINKS */
.center {
  display: flex;
  gap: 26px;
}

.center a {
  text-decoration: none;
  font-size: 15px;
  color: #444;
  position: relative;
  transition: color 0.25s ease, transform 0.25s ease;
}

.center a:hover {
  color: #000;
  transform: translateY(-1px);
}

/* underline */
.center a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 1px;
  background: #111;
  transition: 0.25s;
}

.center a:hover::after {
  width: 100%;
}

.right a {
  margin-left: 18px;
  text-decoration: none;
  color: #444;
  font-size: 14px;
}

.right a:hover {
  color: #000;
}

/* HERO */
.hero {
  height: 100vh;
  position: relative;

  display: flex;
  justify-content: center;
  align-items: center;

  overflow: hidden;
}



/* BACKGROUND SLIDESHOW */
.bg-slideshow {
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 90%;   /* 👈 gør den kortere i højden */

  overflow: hidden;
  z-index: 0;
}
.slider-track {
  display: flex;
  width: max-content;
  height: 100%;
  animation: scroll 180s linear infinite;
  will-change: transform;
}

.slider-track img {
  flex: 0 0 100vw;
  height: 100%;
  object-fit: cover;
  filter: blur(6px);
  transform: scale(1.05);
  
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.25),
    rgba(255,255,255,0.10)
  );
}

/* HERO CARD ABOVE */
.hero-card {
  position: relative;
  z-index: 2;

  text-align: center;
  max-width: 650px;

  color: #fff; /* vigtigt */
}

.hero-card h1 {
  font-size: 54px;
  font-weight: 600;

  color: #fff;

  text-shadow:
    0 10px 40px rgba(0,0,0,0.6),
    0 2px 10px rgba(0,0,0,0.4);
}

.hero-card p {
  color: rgba(255,255,255,0.85);
  text-shadow: 0 8px 25px rgba(0,0,0,0.5);
}


.hero-card .meta {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  margin-top: 6px;

  text-shadow: 0 8px 25px rgba(0,0,0,0.55);
}

.hero-card .bio {
  margin-top: 12px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;

  font-size: 15px;
  line-height: 1.6;

  color: rgba(255,255,255,0.78);

  text-shadow:
    0 10px 35px rgba(0,0,0,0.55),
    0 2px 10px rgba(0,0,0,0.35);
}



.profile {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;

  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
  margin-bottom: 20px;

  border: 2px solid rgba(255,255,255,0.3);
  box-shadow: 0 25px 60px rgba(0,0,0,0.4);
}



.profile {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
}

h1 {
  font-size: 46px;
  font-weight: 600;
}

.hero p {
  color: #666;
}

.desc {
  margin-top: 10px;
  max-width: 400px;
  color: #777;
  line-height: 1.6;
}

/* WORK */
.work {
  padding: 120px 10%;
  text-align: center;
}

.projects {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.projects div {
  height: 180px;
  background: #f6f6f6;
}


.footer {
  margin-top: 140px;
  padding: 80px 10% 40px;

  background: #fff;
  border-top: 1px solid rgba(0,0,0,0.06);
}

/* MAIN GRID */
.footer-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
}

/* BRAND */
.brand {
  font-size: 18px;
  font-weight: 600;
  color: #111;
}

.sub {
  margin-top: 6px;
  font-size: 13px;
  color: #888;
}

/* SECTION TITLE */
.title {
  font-size: 13px;
  color: #aaa;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* LINKS */
.footer a {
  display: block;
  text-decoration: none;

  font-size: 14px;
  color: #555;

  margin-bottom: 10px;

  transition: 0.25s;
}

.footer a:hover {
  color: #000;
  transform: translateX(2px);
}

/* DIVIDER FEEL BETWEEN SECTIONS */
.footer-col {
  position: relative;
}

.footer-col:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -30px;
  top: 0;

  width: 1px;
  height: 100%;

  background: rgba(0,0,0,0.06);
}

/* BOTTOM */
.footer-bottom {
  margin-top: 60px;
  text-align: center;

  font-size: 13px;
  color: #aaa;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-col::after {
    display: none;
  }
}

@media (max-width: 500px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .projects {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 34px;
  }
}

.brand {
  text-decoration: none;
  color: #111;

  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.3px;

  transition: 0.2s;
}

.brand:hover {
  opacity: 0.7;
}




.project {
  padding: 140px 10% 120px;
}

.project-hero {
  height: 400px;
  background: #eee;
  border-radius: 20px;
  margin-bottom: 40px;
}

.project-meta {
  color: #888;
  margin: 10px 0 20px;
}

.project-text {
  max-width: 600px;
  line-height: 1.6;
  color: #555;
}

.project-gallery {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}



.project-gallery img {
  opacity: 1; /* vigtigt */
  transform: none;
}

.project-gallery img:nth-child(2) { animation-delay: 0.05s; }
.project-gallery img:nth-child(3) { animation-delay: 0.1s; }
.project-gallery img:nth-child(4) { animation-delay: 0.15s; }

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.projects {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.project-card {
  display: flex;
  flex-direction: column;
  gap: 10px;

  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
}

.project-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 14px;

  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.project-card:hover img {
  transform: scale(1.03);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.work h2 {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}

.project-card h3 {
  font-size: 14px;
  font-weight: 600;
  margin-top: 8px;
  color: #111;
  letter-spacing: -0.2px;
}

.project-card p {
  font-size: 12.5px;
  color: rgba(0,0,0,0.6);
  line-height: 1.4;
  margin-top: 3px;
}

.project-card .text {
  background: transparent !important;
  padding: 0 !important;
  margin: 0;
}

.project-card {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}


.contact {
  padding: 100px 10%;
  text-align: center;
}

/* GRID */
.contact-grid {
  margin-top: 40px;

  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* CARD */
.contact-card {
  display: flex;
  align-items: center;
  gap: 14px;

  padding: 14px 18px;
  border-radius: 14px;

  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);

  border: 1px solid rgba(0,0,0,0.06);

  transition: all 0.25s ease;
  cursor: pointer;
}

/* HOVER */
.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* ICON */
.icon {
  width: 22px;
  height: 22px;
  color: #111;

  display: flex;
  align-items: center;
  justify-content: center;
}

.icon svg {
  width: 100%;
  height: 100%;
}

/* TEXT */
.text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.label {
  font-size: 11px;
  color: #888;
}

.value {
  font-size: 13px;
  color: #111;
  font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .contact-grid {
    flex-direction: column;
    align-items: center;
  }
}


.hint {
  font-size: 11px;
  color: rgba(0,0,0,0.35);
  margin-top: 2px;

  transition: 0.2s ease;
}

/* lidt hover feedback */
.contact-card:hover .hint {
  color: rgba(0,0,0,0.55);
}







.services {
  padding: 120px 10%;
  text-align: center;
}

.services h2 {
  font-size: 32px;
  margin-bottom: 6px;
}

.services-sub {
  color: #777;
  font-size: 14px;
  margin-bottom: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px; /* mindre spacing = mere clean */
}

.service {
  padding: 18px 18px; /* mindre box */
  border-radius: 14px;

  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);

  text-align: left;

  transition: 0.25s ease;
}

.service:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.service h3 {
  font-size: 16px;
  margin-bottom: 6px;
}

.service p {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
}






.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  text-decoration: none;
  font-size: 15px;
  color: #444;
  transition: 0.2s;
}

.dropbtn:hover {
  color: #000;
}

/* dropdown box */
.dropdown-content {
  position: absolute;
  top: 35px;
  left: 0;

  min-width: 180px;

  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(16px);

  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 14px;

  padding: 8px;

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);

  transition: 0.25s ease;

  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  z-index: 9999;
}

/* show on hover */
.dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* links */
.dropdown-content a {
  display: block;
  padding: 10px 12px;

  font-size: 13px;
  color: #444;
  text-decoration: none;

  border-radius: 10px;

  transition: 0.2s;
}

.dropdown-content a:hover {
  background: rgba(0,0,0,0.04);
  color: #000;
}





/* work */


.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

/* CARD */
.card {
  position: relative;
  display: block;

  border-radius: 16px;
  overflow: hidden;

  background: #eee;
}

/* IMAGE */
.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

  transition: transform 0.4s ease;
}

/* HOVER ZOOM */
.card:hover img {
  transform: scale(1.05);
}

/* OVERLAY */
.card .overlay {
  position: absolute;
  inset: 0;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  padding: 16px;

  background: linear-gradient(
    to top,
    rgba(0,0,0,0.65),
    rgba(0,0,0,0)
  );

  opacity: 0;
  transition: 0.3s ease;
}

/* SHOW ON HOVER */
.card:hover .overlay {
  opacity: 1;
}

/* TEXT */
.card h3 {
  color: #fff;
  font-size: 15px;
  margin-bottom: 4px;
}

.card p {
  color: rgba(255,255,255,0.85);
  font-size: 12px;
}


.page-title {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 6px;
}

.page-sub {
  font-size: 14px;
  color: #777;

  max-width: 420px;

  line-height: 1.5;
}


.project-gallery {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  animation: fadeUp 0.6s ease forwards;
}

.project-gallery img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}


.back {
  padding: 120px 10% 0;
}

.back a {
  text-decoration: none;
  font-size: 14px;
  color: #666;

  transition: 0.2s;
}

.back a:hover {
  color: #000;
  transform: translateX(-2px);
}



.img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  width: 100%;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
}

.img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;

  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;

  filter: saturate(1.05) contrast(1.02);
}

.img-wrap:hover img {
  transform: scale(1.08);
}
/* ✨ SHINE */
.img-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;

  width: 50%;
  height: 100%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.5),
    transparent
  );

  transform: skewX(-20deg);
}

/* animation */
.img-wrap:hover::after {
  animation: shine 0.8s ease;
}

@keyframes shine {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}







.results {
  padding: 120px 10%;
  text-align: center;
}

.results-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.result {
  padding: 25px;
  border-radius: 14px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(0,0,0,0.06);
}

.result h3 {
  font-size: 28px;
  font-weight: 600;
}

.result p {
  font-size: 13px;
  color: #777;
}





.process {
  padding: 140px 10%;
  text-align: center;
  position: relative;
}

.process-flow {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  position: relative;
}

/* line */
.flow-line {
  position: absolute;
  top: 18px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: rgba(0,0,0,0.08);
  overflow: hidden;
}

/* animated moving dot (the “arrow feel”) */
.flow-line::after {
  content: "";
  position: absolute;
  width: 20%;
  height: 100%;
  background: #111;
  animation: flow 3s infinite ease-in-out;
}

@keyframes flow {
  0% { left: -20%; }
  100% { left: 120%; }
}

.step {
  width: 22%;
  position: relative;
  text-align: center;
}

.dot {
  width: 12px;
  height: 12px;
  background: #111;
  border-radius: 50%;
  margin: 0 auto 12px;
  transition: 0.3s ease;
}

.step:hover .dot {
  transform: scale(1.4);
  background: #000;
}

.step h3 {
  font-size: 16px;
  margin-bottom: 6px;
}

.step p {
  font-size: 13px;
  color: #777;
}







/* =======================
   REVIEWS WRAPPER FIX
======================= */

.reviews {
  padding: 140px 10%;
  text-align: center;
}

/* =======================
   REVIEWS CAROUSEL FIX
======================= */

.carousel {
  position: relative;
  max-width: 1200px;
  margin: 70px auto;
  overflow: visible; /* ❗ vigtig fix */
}

/* TRACK */
.track {
  display: flex;
  gap: 0;
  transition: transform 0.5s ease;
  will-change: transform;
}



/* CARD - NORMAL STØRRELSE (FIXED) */
/* CARD */
.review-card {
  flex: 0 0 calc(33.333% - 26px);
  margin: 0 13px;

  padding: 24px;
  border-radius: 18px;

  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 14px 40px rgba(0,0,0,0.08);
}

/* hover */
.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 60px rgba(0,0,0,0.12);
}

/* TEXT ALIGN FIX */
.review-text {
  font-size: 14px;
  line-height: 1.6;
  color: #444;
  text-align: left;
}

/* TOP */
.review-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}


.review-top img {
  width: 40px;   /* mindre */
  height: 40px;

  border-radius: 50%; /* helt rund */
  object-fit: cover;

  border: 2px solid rgba(0,0,0,0.06);
}

/* TEXT LEFT ALIGN FIX */
.review-text {
  font-size: 14px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 16px;

  text-align: left;
}


.review-name {
  font-weight: 600;
  font-size: 14px;
  color: #111;
}

/* username styling */
.review-username {
  font-size: 12px;

  color: #5b6cff; /* nice soft blue */
  font-weight: 500;

  letter-spacing: 0.2px;

  padding: 2px 8px;
  border-radius: 999px;

  background: rgba(91,108,255,0.08);
  display: inline-block;
  
  margin-top: 2px;
  box-shadow: 0 6px 20px rgba(91,108,255,0.15);
}

/* STARS */
.stars {
  display: flex;
  gap: 5px;
}

/* FORCE COLOR */
.star {
  width: 18px;
  height: 18px;

  fill: #ff8a1f !important; /* 🔥 vigtig fix */
  color: #ff8a1f;

  filter: drop-shadow(0 2px 6px rgba(255,138,31,0.25));
}

/* empty stars */
.star.empty {
  fill: rgba(0,0,0,0.12) !important;
  color: rgba(0,0,0,0.12);
}
/* =======================
   ARROWS FIX (REAL FIX)
======================= */

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  background: transparent; /* ❗ ingen baggrund */
  border: none;           /* ❗ ingen cirkel/ramme */

  width: 40px;
  height: 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 32px;
  color: #111;

  cursor: pointer;
  z-index: 999;

  transition: 0.2s ease;
}

/* hover */
.arrow:hover {
  transform: translateY(-50%) scale(1.2);
  opacity: 0.7;
}

/* positions */
.arrow.left {
  left: -20px;
}

.arrow.right {
  right: -20px;
}

/* remove focus weirdness */
.arrow:focus {
  outline: none;
}
/* =======================
   RESPONSIVE
======================= */

@media (max-width: 900px) {
  .review-card {
    flex: 0 0 85%;
  }

  .arrow.left {
    left: 8px;
  }

  .arrow.right {
    right: 8px;
  }
}


.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
}

.sticky-cta a {
  display: inline-block;

  padding: 12px 18px;
  border-radius: 999px;

  background: rgba(0,0,0,0.9);
  color: #fff;

  font-size: 13px;
  font-weight: 500;
  text-decoration: none;

  box-shadow: 0 12px 30px rgba(0,0,0,0.15);

  transition: 0.25s ease;
}

.sticky-cta a:hover {
  transform: translateY(-2px);
  background: rgba(0,0,0,1);
}



body {
  animation: pageIn 0.8s ease;
}

@keyframes pageIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}