body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #13201d;
  background-color: #ece7de;
}

.hero-section {
  min-height: 108vh;
  background-image:
    linear-gradient(
      to bottom,
      rgba(7, 20, 18, 0.62) 0%,
      rgba(10, 28, 25, 0.32) 42%,
      rgba(27, 58, 53, 0.32) 68%,
      rgba(236, 231, 222, 0.55) 88%,
      rgba(236, 231, 222, 0.96) 100%
    ),
    url("https://forward-static.s3.eu-north-1.amazonaws.com/gd_course/gd_course_NHH_2026_group3/pictures/home_background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.hero-layer {
  min-height: 108vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px 220px 24px;
}

.hero-inner {
  width: 100%;
  max-width: 980px;
  text-align: center;
  color: #ffffff;
}

.hero-inner h1 {
  font-size: 86px;
  line-height: 0.95;
  letter-spacing: -2px;
  margin-bottom: 26px;
  color: #f8f7f2;
  font-family:
    "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans",
    Arial, sans-serif;
}

.hero-description {
  max-width: 760px;
  margin: 0 auto 36px auto;
  font-size: 25px;
  color: rgba(255, 255, 255, 0.92);
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-main,
.btn-ghost {
  display: inline-block;
  padding: 15px 28px;
  border-radius: 12px;
  font-weight: bold;
  font-size: 17px;
  transition: 0.2s ease;
}

.btn-main {
  background-color: #f3efe7;
  color: #143632;
}

.btn-main:hover {
  background-color: #ffffff;
  color: #143632;
}

.btn-ghost {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.btn-ghost:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.intro-panel-section {
  position: relative;
  margin-top: -150px;
  padding: 0 24px 50px 24px;
  z-index: 2;
}

.intro-panel {
  max-width: 1120px;
  margin: 0 auto;
  background: linear-gradient(135deg, #efe8dc 0%, #e8e0d4 100%);
  border-radius: 32px;
  padding: 42px 46px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #5d6f67;
  margin-bottom: 14px;
}

.intro-panel h2 {
  font-size: 42px;
  line-height: 1.05;
  color: #173330;
  margin-bottom: 0;
}

.intro-panel-right {
  display: flex;
  align-items: center;
}

.intro-panel-right p {
  font-size: 19px;
  color: #34433f;
}

.about-section {
  padding: 35px 24px 110px 24px;
  background-color: #ece7de;
}

.about-header {
  max-width: 900px;
  margin: 0 auto 44px auto;
  text-align: center;
}

.about-header h2 {
  font-size: 56px;
  line-height: 1.05;
  color: #173330;
  margin-bottom: 0;
}

.team-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.profile-card {
  background: #f6f2ea;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(21, 45, 42, 0.08);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.profile-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 38px rgba(21, 45, 42, 0.12);
}

.profile-top {
  height: 95px;
  background: linear-gradient(135deg, #5fb43a 0%, #2d6037 100%);
}

.profile-content {
  padding: 0 24px 28px 24px;
  text-align: center;
  margin-top: -52px;
}
.profile-info {
  margin: 14px 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #4a5a58;
  font-size: 16px;
}

.profile-info span {
  display: block;
}

.profile-content img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  margin: 0 auto 18px auto;
  border: 6px solid #f6f2ea;
  background-color: #ffffff;
}

.profile-content h3 {
  font-size: 28px;
  line-height: 1.15;
  color: #101917;
  margin-bottom: 14px;
}

.profile-line {
  font-size: 17px;
  color: #4b5854;
  margin-bottom: 8px;
}

.profile-btn {
  display: inline-block;
  margin-top: 22px;
  padding: 12px 22px;
  border-radius: 10px;
  background: linear-gradient(135deg, #469355 0%, #5fb43b 100%);
  color: #ffffff;
  font-weight: bold;
  transition: 0.2s ease;
}

.profile-btn:hover {
  background: linear-gradient(135deg, #275732 0%, #3d8426 100%);
  color: white;
}

@media (max-width: 1100px) {
  .hero-inner h1 {
    font-size: 68px;
  }

  .hero-description {
    font-size: 22px;
  }

  .intro-panel {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-layer {
    padding: 70px 20px 130px 20px;
  }

  .hero-inner h1 {
    font-size: 46px;
    line-height: 1.02;
  }

  .hero-description {
    font-size: 18px;
  }

  .btn-main,
  .btn-ghost {
    width: 100%;
    max-width: 240px;
  }

  .intro-panel-section {
    margin-top: -70px;
    padding: 0 18px 20px 18px;
  }

  .intro-panel {
    padding: 28px 24px;
    border-radius: 22px;
  }

  .intro-panel h2 {
    font-size: 32px;
  }

  .intro-panel-right p {
    font-size: 17px;
  }

  .about-section {
    padding: 45px 18px 80px 18px;
  }

  .about-header h2 {
    font-size: 36px;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .profile-content h3 {
    font-size: 24px;
  }

  .profile-line {
    font-size: 16px;
  }
}
