@font-face {
  font-family: "LivvicRegular";
  src: url("assets/fonts/Livvic-Regular.woff") format("woff"),
    url("assets/fonts/Livvic-Regular.ttf.ttf") format("truetype");
  /* src: url("assets/fonts/Livvic-Regular.ttf.woff2") format("woff2"),
      url("assets/fonts/Livvic-Regular.ttf.woff") format("woff"),
      url("assets/fonts/Livvic-Regular.ttf.ttf") format("truetype"); */
  font-weight: normal;
  font-style: normal;
}

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "LivvicRegular", "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  background: #f1eeff;
}

.cf-turnstile {
  margin-top: 10px;
}

/* Navbar styles matching Figma design */
.navbar-desktop {
  background-color: #ffffff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 9px 60px 9px 70px;
  position: relative;
  width: 100%;
  border-bottom: 1px solid #d2c8fd;
}

.logo-container {
  height: 45.161px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  width: 150px;
}

.logo-container img {
  display: block;
  max-width: none;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Main content styles */
main {
  max-width: 1280px;
  margin: 0 auto;
}

/* Form styles */
form {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

label {
  font-family: "LivvicRegular", sans-serif;
  font-size: 14px;
  color: #2c1942;
  letter-spacing: 1px;
  font-weight: 400;
  line-height: normal;
  text-align: left;
  margin-bottom: 4px;
}

input[type="email"] {
  background-color: #ffffff;
  border: 2px solid #2c1942;
  border-radius: 8px;
  box-shadow: 1px 1px 0px 0px #2c1942, 2px 2px 0px 0px #2c1942;
  padding: 12px 16px;
  font-family: "LivvicRegular", sans-serif;
  font-size: 16px;
  color: #2c1942;
  letter-spacing: 0.5px;
  line-height: normal;
  width: 100%;
  box-sizing: border-box;
}

input[type="email"]::placeholder {
  color: #a4a4a4;
  font-family: "LivvicRegular", sans-serif;
  font-size: 16px;
  letter-spacing: 0.5px;
}

input[type="email"]:focus {
  outline: none;
  border-color: #2c1942;
  box-shadow: 1px 1px 0px 0px #2c1942, 2px 2px 0px 0px #2c1942;
}

button {
  background-color: #e01e60;
  color: #fff1f4;
  border: 2px solid #2c1942;
  border-radius: 8px;
  box-shadow: 1px 1px 0px 0px #2c1942, 2px 2px 0px 0px #2c1942;
  padding: 14px 16px;
  font-family: "LivvicRegular", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: normal;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  margin-top: 30px;
}

button:hover {
  background-color: #c91955;
  box-shadow: 1px 1px 0px 0px #2c1942, 2px 2px 0px 0px #2c1942;
}

button:active {
  transform: translate(1px, 1px);
  box-shadow: 0px 0px 0px 0px #2c1942, 1px 1px 0px 0px #2c1942;
}

/* Responsive images (handled within specific components) */

/* Hero Banner styles matching Figma design */
.hero-banner {
  display: block;
  width: 100%;
}

.hero-banner img {
  display: block;
  width: 100%;
  height: auto;
}

/* Title and Description Container styles matching Figma design */
.title-description-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 75%;
  text-align: center;
  margin: 0 auto;
  max-width: 869px;
}

.description-title {
  margin-top: 40px;
  color: #2c1942;
  text-align: center;
  font-family: "LivvicRegular";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.5px;
}

.description-text {
  margin-top: 40px;
  margin-bottom: 30px;
  color: #2c1942;
  text-align: center;
  font-family: "LivvicRegular";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.5px;
}

.whats-come-container {
  position: relative;
  width: 100%;
  text-align: center;
  max-width: 869px;
  margin-top: 30px;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
}

.whats-come-image {
  display: block;
}

/* AMOE Blurb styles matching Figma design */
.amoe-container {
  background: linear-gradient(90deg, #ccc0ff 10%, #afe9f4 50%, #ffe6a5 100%);
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 7px 0;
  width: 100%;
  box-sizing: border-box;
  margin-top: 70px;
}

.amoe-text {
  font-family: "LivvicRegular", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 22px;
  color: #6632a1;
  text-align: center;
  margin: 0;
  padding: 0 20px;
  max-width: 1200px;
}

/* Footer styles matching Figma design */
.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 20px 0;
  width: 100%;
  box-sizing: border-box;
  margin-top: 20px;
}

.footer-text {
  font-family: "LivvicRegular", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 22px;
  color: #818181;
  text-align: center;
  margin: 0;
  max-width: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.margin-top-10 {
  margin-top: 10px;
}

.footer-copyright {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

.footer-logo {
  height: 20px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.footer-age {
  height: 20px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.footer-copyright-text {
  font-family: "LivvicRegular", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 22px;
  color: #818181;
  text-align: center;
}

/* Mobile footer adjustments */
@media (max-width: 768px) {
  .footer-container {
    padding: 30px 15px;
  }

  .footer-text {
    font-size: 12px;
    line-height: 20px;
    flex-direction: column;
    gap: 5px;
  }

  .footer-copyright {
    flex-direction: column;
    gap: 5px;
  }

  .footer-copyright-text {
    font-size: 12px;
    line-height: 20px;
  }
}

/* Mobile responsive styles */
@media (max-width: 768px) {
  .navbar-desktop {
    padding: 12px 0;
    justify-content: center;
  }

  .logo-container {
    height: 46px;
    width: 151px;
  }

  .title-description-container {
    width: 90%;
  }
  .description-title {
    text-align: left;
    font-size: 16px;
    letter-spacing: 1px;
  }

  .description-text {
    text-align: left;
  }

  form {
    width: 90%;
  }

  .whats-come-container {
    width: 90%;
  }

  .whats-come-container {
    margin-top: 30px;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
  }
}
