@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@500;900&display=swap");

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f0fff1;
  min-height: 100vh;
}

/* Container and layout */
.container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem 1rem;
}

.content {
  width: 100%;
  max-width: 48rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Title styles */
.title {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  color: #5603ad;
  font-size: 2.25rem;
  text-align: center;
  line-height: 1.1;
  margin-bottom: 2rem;
}

/* Responsive title sizes */
@media (min-width: 640px) {
  .title {
    font-size: 3rem;
  }
}

@media (min-width: 768px) {
  .title {
    font-size: 3.75rem;
    margin-bottom: 3rem;
  }
}

@media (min-width: 1024px) {
  .title {
    font-size: 4.5rem;
  }
}

@media (min-width: 1280px) {
  .title {
    font-size: 6rem;
  }
}

/* Buttons container */
.buttons-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  justify-content: center;
}

@media (min-width: 640px) {
  .buttons-container {
    flex-direction: row;
    gap: 1.5rem;
  }
}

@media (min-width: 768px) {
  .buttons-container {
    gap: 2rem;
  }
}

/* Button link wrapper */
.button-link {
  flex: none;
  width: 100%;
  text-decoration: none;
}

@media (min-width: 640px) {
  .button-link {
    width: auto;
    min-width: 12.5rem;
    max-width: 15.625rem;
  }
}

/* Button styles */
.button {
  background-color: #b3e9c7;
  border-radius: 2.8125rem;
  border: none;
  box-shadow: none;
  transition: box-shadow 0.3s ease;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.button:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Button content */
.button-content {
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 3.125rem;
  gap: 0.5rem;
}

@media (min-width: 640px) {
  .button-content {
    padding: 0.75rem;
    gap: 0.75rem;
  }
}

/* Icon container */
.icon-container {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #5603ad;
  display: block;
}

@media (min-width: 640px) {
  .icon {
    width: 1.5rem;
    height: 1.5rem;
  }
}

@media (min-width: 768px) {
  .icon {
    width: 2rem;
    height: 2rem;
  }
}

/* Button text */
.button-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  color: #5603ad;
  font-size: 0.875rem;
  text-align: center;
  line-height: normal;
}

@media (min-width: 640px) {
  .button-text {
    font-size: 1rem;
  }
}

@media (min-width: 768px) {
  .button-text {
    font-size: 1.125rem;
  }
}

@media (min-width: 1024px) {
  .button-text {
    font-size: 1.25rem;
  }
}

/* Badge styles */
.badge-container {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.netlify-badge {
  max-width: 100%;
  height: auto;
  transition: opacity 0.3s ease;
}

.netlify-badge:hover {
  opacity: 0.8;
}
