* {
  box-sizing: border-box;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

body {
  margin: 0;
  width: 100%;
  min-height: 75vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-image: url(https://img.freepik.com/free-photo/warehouse-interior-with-forklifts-shelving_23-2152005456.jpg?semt=ais_hybrid&w=740&q=80);
  background-size: cover;
  background-position: center;
  filter: blur(12px);
  opacity: 0.30;
  transform: scale(1.05);
  z-index: -1;
}

body > * {
  position: relative;
  z-index: 1;
}

body::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
}


.hero {
  background: #ffffff;
  padding: 80px 40px;
  min-height: 45vh;
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
  overflow: hidden;
}


.container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 80px;
}

.image-wrapper img {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  object-fit: cover;
}

.name {
  display: block;
  margin-bottom: 20px;
  font-weight: 600;
  color: #555;
}

.text-wrapper h1 {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.text-wrapper p {
  max-width: 420px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #555;
}

.buttons button{
  display: inline-block;
  padding: 14px 28px;
  margin-right: 12px;
  border-radius: 50px;
  text-decoration: none;
  background: #f1f1f1;
  color: #000000;
  font-weight: 500;
  background: #ffffff;
}

.buttons button.primary {
  background: #ffffff;
  color: rgb(0, 0, 0);
}

.buttons button:hover {
    background: #ff7a6c;
    color: #ffffff;
}

.buttons button:active {
    transform: translateY(2px);
}

.disclaimer {
  position: fixed;
  top: 16px;
  right: 18px;
  max-width: 340px;
  font-size: 0.8rem;
  color: #ffffff;
  background: rgba(73, 73, 73, 0.85);
  padding: 8px 12px;
  border-radius: 8px;
  line-height: 1.4;
  z-index: 1000;
}

.disclaimer_2 {
  position: fixed;
  top: 16px;
  left: 18px;
  font-size: 0.9rem;
  color: #ffffff;
  background: rgba(73, 73, 73, 0.85);
  padding: 8px 12px;
  border-radius: 8px;
  line-height: 1.4;
  z-index: 1000;
}

.fed-text {
  font-weight: 800;
  color: rgb(255, 230, 0);
}

.rolldown {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.6s ease, opacity 0.4s ease;
}

.rolldown.active {
  max-height: 2000px; /* nok til indhold */
  opacity: 1;
  margin-top: 60px;
  animation: fadeUp 0.6s ease forwards;
}

@keyframes fadeUp {
  from {
    transfrom: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.rolldown h3 {
  font-size: 2.2rem;
  margin-bottom: 25px;
  color: #ff7a6c;
  position: relative;
  display: inline-block;
}

.rolldown h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 4px;
  background: #ff7a6c;
  border-radius: 4px;
}

.rolldown p {
  line-height: 1.6;
  color: #333;
}

.experience-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  color: #ffffff;
  margin-top: 20px;
}

.experience-list li {
  background: #ff7a6c;
  padding: 14px 18px;
  border-radius: 12px;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.hypotetisk-image {
  margin: 40px auto;
  border-radius: 12px;
  font-size: 0.85rem;
  color: #777;
  text-align: center;
}

.imagedoc {
  width: 100%;
  max-width: 700px;
  border-radius: 16px;
  margin-top: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25),
             0 5px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.page-content {
  padding-bottom: 120px;
}

h4 {
  margin-top: 34px;
  margin-bottom: 12px;
  color: #000000;
}

.education-image {
  margin-top: 20px;
  text-align: center;
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25),
             0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-section {
  text-align: left;
}

.contact-intro {
  max-width: 500px;
  margin-bottom: 30px;
  color: #ffffff;
  line-height: 1.6;
}

.contact-cards {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.contact-card {
  background: #ff7a6c;
  border-radius: 14px;
  padding: 20px 24px;
  min-width: 260px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.6);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 6px;
}

.contact-card a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500px;
}

.contact-note {
  margin-top: 30px;
  font-size: 0.85rem;
  color: #777;
}

.social-icons i {
  font-size: 24px;
  color: #ffffff;
  width: 50px;
  height: 50px;
  background-color: #0e76a8;
  border-radius: 50%;
  line-height: 50px;
  transition: color 0.3s ease;
  text-align: center;
  margin-top: 334px;
}


.social-icons i:hover {
  color: #ffffff;
  background: #ff7a6c;
  }

  .section-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 50px;
  border-radius: 20px;
  backdrop-filter: blur(6px);
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.contact-card-everything {
  background: rgba(255, 255, 255, 0.95);
  padding: 50px;
  border-radius: 20px;
  backdrop-filter: blur(6px);
  transition: transform 0.3s ease;
}

.disclaimer, 
.disclaimer_2 {
  position: fixed;
  z-index: 9999;
}

.hero {
  position: relative;
  z-index: 2;
}

.education-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 50px;
  border-radius: 20px;
  backdrop-filter: blur(6px);
  transition: transform 0.3s ease;
}
