*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  font-family: "Satoshi", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  overflow-x: hidden;
}

.homepage {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/Picture 1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.background-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  max-width: 800px;
  width: 100%;
}

.logo {
  max-width: 100%;
  height: auto;
  width: min(600px, 80vw);
  margin-bottom: 2.5rem;
  display: block;
}

.description {
  color: #ffffff;
  font-size: clamp(18px, 4vw, 24px);
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: #42c5c7;
  color: #ffffff;
  text-decoration: none;
  font-size: clamp(16px, 3vw, 20px);
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-family: "Satoshi", sans-serif;
  box-shadow: 0 4px 15px rgba(66, 197, 199, 0.3);
}

.cta-button:hover {
  background-color: #38b0b2;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(66, 197, 199, 0.4);
}

.cta-button:active {
  transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .content {
    padding: 1.5rem;
  }

  .logo {
    width: min(500px, 75vw);
    margin-bottom: 2rem;
  }

  .description {
    margin-bottom: 2rem;
    font-size: 18px;
  }

  .cta-button {
    padding: 0.875rem 2rem;
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .content {
    padding: 1rem;
  }

  .logo {
    width: min(400px, 70vw);
    margin-bottom: 1.5rem;
  }

  .description {
    margin-bottom: 1.5rem;
    font-size: 16px;
    line-height: 1.5;
  }

  .cta-button {
    padding: 0.75rem 1.75rem;
    font-size: 16px;
  }
}

@media (min-width: 1920px) {
  .logo {
    width: 600px;
  }

  .description {
    font-size: 26px;
  }

  .cta-button {
    font-size: 22px;
    padding: 1.125rem 3rem;
  }
}
