body {
  margin: 0;
}

* {
  box-sizing: border-box;
  font-family: "Outfit", sans-serif;
}

h1 {
  font-weight: bold;
  margin-top: 1.5em;
  padding-bottom: 1.5em;
  line-height: 1.3;
  font-size: 2.5rem;
  color: #f0f0f4;
}

h2,
h3 {
  font-weight: normal;
  margin-top: 3em;
}



section :is(h1, h2, h3):first-of-type {
  margin-top: initial;
}

a {
  color: #e2a324;
  text-decoration: none;
}

a:hover {
  color: #2b2b2b;
  text-decoration: underline;
}

a.button {
  display: inline-block;
  background-color: #007bff;
  color: white;
  font-size: 16px;
  padding: 12px 24px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

p,
li {
  line-height: 2em;
}

section {
  padding-bottom: 40px;
}

.left,
.right {
  background-color: #fcfcff;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

.header {
  border-bottom: 1px solid black;
}

.header svg {
  max-height: 6vh;
}

.hero {
  min-height: 35vh;
  background: linear-gradient(to left, rgba(0,0,0,0.7), rgba(0,0,0,0));
  background-image: url("/assets/home-bg.png");
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid black;
  transition: background-image 0.5s ease-in-out;
}

.hero-text {
  padding: 2rem;
  text-align: right;
  width: 100%;
}

.hero-cta {
  display: inline-block;
  background: #e2a324; /* accent color */
  color: #000;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.feature {
  max-width: 200px;
  text-align: center;
  background: #e2a324;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.feature h3 {
  margin-bottom: 0.5rem;
}

.feature p {
  font-size: 0.95rem;
  line-height: 1.4;
}

.footer {
  min-height: 2.5vh;
  border-top: 1px solid darkgrey;
  justify-content: right;
  padding: 5px;
  color: darkgrey;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

.navbar {
  display: flex;
  background-color: #f5f5f5e7;
  position: sticky;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.menu {
  display: flex;
  justify-content: right;
  padding: 1rem 1rem;
  gap: 2rem;
}

.menu a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  cursor: pointer;
}

.menu a.active {
  color: #e2a324;
}

section {
  display: none;
}

section.active {
  display: block;
}

.intro {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  justify-content: space-between;
}

.intro img {
  width: 100%;
  max-width: 180px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.intro p {
  flex: 1 1 auto;
  margin: 0;
}

.support-btn {
  font-family: "Helvetica Neue", Helvetica, Arial, Verdana, sans-serif;
  display: inline-block;
  font-weight: 400;
  line-height: 1.5;
  color: #000000;
  min-width: 212px;
  background-color: #e2a324;
  text-align: center;
  border-radius: 0.25rem;
  margin-left: 2px;
  margin-right: 2px;
  padding: 0.375rem 0.75rem;
}

@media (min-width: 1441px) {
  .column {
    float: left;
    padding: 40px;
  }

  .left {
    width: 20vw;
  }
  .middle {
    width: 50vw;
  }
  .right {
    width: 30vw;
  }

  .row {
    flex-direction: row;
  }

  .gutter-content {
    position: relative;
    top: 0vh;
  }

  .hero-text {
    margin-left: 20vw;
    margin-right: 25vw;
  }

  .menu {
    width: 50vw;
    margin-left: auto;
    margin-right: 30vw;
  }
}

@media (max-width: 1440px) {
  .row {
    flex-direction: column-reverse;
  }

  .column {
    padding: 20px;
    width: 100%;
  }

  .left,
  .middle,
  .right {
    width: 100%; /* Stack them on small screens */
  }

  .left,
  .right {
    height: 0px;
    display: none;
  }

  .intro {
    flex-direction: column; /* stack vertically */
    align-items: center; /* center horizontally */
  }

  .intro img {
    width: 50%;
    max-width: 200px;
    margin-bottom: 1rem;
  }

  .intro p {
    flex: unset; /* remove flex-grow for mobile */
    text-align: left;
  }

  .menu {
    width: 100%;
  }
}
