.spline-sans-mono-400 {
  font-family: "Spline Sans Mono", monospace;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.spline-sans-mono-700 {
  font-family: "Spline Sans Mono", monospace;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: bold;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.inter-700 {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: bold;
}

.inter-400 {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

html,
body {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Spline Sans Mono", Arial, sans-serif;
  background-color: #e8dff6;
  color: #46237a;
  margin: 0;
}

#hero-section {
  height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.hero-images {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  width: 100%;
  max-width: 900px;
  max-height: 60vh;
}

.hero-images img {
  height: 100%;
  width: auto;
  max-width: calc(50% - 10px);
  max-height: 60vh;
  border-radius: 12px;
  object-fit: cover;
}

#title {
  font-size: 3rem;
  padding: 20px;
}

.full-section {
  width: 100%;
  padding: 60px 40px;
}

.full-section.odd {
  background-color: #46237a;
  color: #e8dff6;
}

.full-section.even {
  background-color: #e8dff6;
  color: #46237a;
}

.section-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.full-section.even .section-text {
  order: 2;
  justify-self: center;
}

.full-section.even .section-image {
  order: 1;
}

.section-text h2 {
  font-family: "Spline Sans Mono", monospace;
  font-size: 2rem;
  margin-bottom: 20px;
}

.section-text ul {
  list-style-position: inside;
  font-size: 1.1rem;
  line-height: 1.8;
}

.section-image {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.image-row {
  display: flex;
  gap: 16px;
  width: 100%;
}

.image-row img {
  width: calc(50% - 8px);
}

.section-image img {
  border-radius: 12px;
  max-width: 100%;
  max-height: calc(100vh / 3);
  object-fit: contain;
}

footer.full-section a {
  color: inherit;
}

footer.full-section a:hover {
  text-decoration: underline;
}

.made-by {
  text-align: center;
  font-size: 0.9rem;
  margin-top: 40px;
  opacity: 0.6;
  margin-bottom: -10px;
}

ul {
  padding-left: 0;
}

li {
  margin-bottom: 6px;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;

  &:hover {
    text-decoration: underline;
  }
}

.tagline {
  max-width: 800px;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0 auto 30px;
  padding: 0 20px;
}

.hero-contact {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
  font-size: 1.1rem;
}

* {
  box-sizing: border-box;
}

/* Tablet styles */
@media (max-width: 768px) {
  #hero-section {
    height: auto;
    min-height: 90vh;
  }

  .hero-contact {
    flex-direction: column;
    align-items: center;
  }

  .hero-images {
    flex-direction: column;
    align-items: center;
    max-height: none;
  }

  .hero-images img {
    width: 80%;
    max-width: 350px;
    height: auto;
    max-height: none;
  }

  .section-text ul {
    text-align: left;
  }

  .section-content {
    grid-template-columns: 1fr;
  }

  .full-section.odd .section-image {
    order: 2;
  }

  .full-section.odd .section-text {
    order: 1;
  }

  .full-section.even .section-text {
    order: 1;
  }

  .full-section.even .section-image {
    order: 2;
  }

  .full-section.even .section-text {
    justify-self: stretch;
  }

  .section-text {
    text-align: center;
  }
}

/* Mobile styles */
@media (max-width: 480px) {
  #title {
    font-size: 2rem;
    padding: 15px;
  }

  .hero-images img {
    width: 90%;
    max-width: none;
  }

  .full-section {
    padding: 40px 20px;
  }

  .section-text h2 {
    font-size: 1.5rem;
  }
}
