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

html, body {
  height: 100%;
  font-family: sans-serif;
  background-color: #f1f5f9;
  overflow-x: hidden;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  position: relative;
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.content {
  position: relative;
  z-index: 1;
  padding: 44px 40px 20px;
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* HEADER */

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  width: 100%;
  max-width: 100%;
  padding: 0 40px;
}

.logo {
  width: 44px;
  height: 44px;
  border-radius: 0.5rem;
  object-fit: contain;
}

/* HERO */

.hero {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 56px;
  padding: 0 40px;
  gap: 60px;
}

.hero-left {
  width: 55%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-text h1 {
  font-size: 4.5rem;
  font-weight: bold;
  color: #18181b;
  line-height: 84px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.decorative {
  width: 64px;
  height: 64px;
  object-fit: contain;
  flex-shrink: 0;
}

.hero-text p {
  font-size: 1.5rem;
  line-height: 2.25rem;
  color: #71717a;
}

.button-wrapper {
  margin-top: 3.5rem;
  width: 280px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background-color: #18181b;
  color: white;
  padding: 1rem 2rem;
  font-weight: bold;
  font-size: 1.125rem;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  line-height: 1.5;
  white-space: nowrap;         /* Prevent line breaks */
  max-width: 100%;
  text-decoration: none;
}

.button img {
  width: 18px;
}

.info {
  margin-top: 3.5rem;
  font-size: 1rem;
  font-weight: bold;
  color: #18181b;
  letter-spacing: 0.05em;
}

.hero-right {
  width: 45%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero-right img {
  width: 100%;
  max-width: 650px; /* was 550px before */
  object-fit: contain;
  aspect-ratio: 0.97;
  transform: scale(1.1); /* optional: slightly scale up for extra emphasis */
}

/* FOOTER */

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: #52525b;
  padding: 2rem 40px 0;
  width: 100%;
  max-width: 100%;
}

.footer-nav {
  display: flex;
  gap: 2.5rem;
}

.footer-nav a {
  color: #52525b;
  text-decoration: none;
}

.footer-nav a:hover {
  color: #18181b;
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    padding: 0 20px;
  }

  .hero-left,
  .hero-right {
    width: 100%;
  }

  .hero-right {
    justify-content: center;
    margin-top: 2rem;
  }

  .hero-text h1 {
    font-size: 2.5rem;
    line-height: 3rem;
  }

  .hero-text p {
    font-size: 1.125rem;
  }

  .button-wrapper {
    width: 100%;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 2rem 20px 0;
  }

  .footer-nav {
    flex-wrap: wrap;
    gap: 1rem;
  }
}
