/* style.css */

body {
  margin: 0;
  padding: 20px;
  /* Add padding around the body to create spacing */
  background-color: #ffffff;
  /* Set the outer background to white */
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.hero-section {
  position: relative;
  width: 100%;
  max-width: 1450px;
  /* Sets a max width to narrow the hero section */
  padding: 60px 20px;
  background-color: var(--pastel-purple-core);
  border-radius: 20px;
  /* Adds rounded corners */
  box-sizing: border-box;
  overflow: visible;
  /* Ensure content is not cut off */
  margin: 20px auto;
  /* Adds margin to the top and bottom, centers horizontally */
}

.logo-title {
  display: flex;
  align-items: center;
  padding-bottom: 20px;
  /* Add some spacing below the logo and title */
}

.hero-section .heading {
  font-family: "Petrona", serif;
  font-weight: var(--heading-heading-1-font-weight);
  color: var(--white);
  font-size: var(--heading-heading-1-font-size);
  letter-spacing: var(--heading-heading-1-letter-spacing);
  line-height: var(--heading-heading-1-line-height);
  z-index: 1;
  margin-bottom: 20px;
  /* Add spacing below the heading */
}

.hero-section .supporting-text {
  font-family: var(--body-medium-normal-font-family);
  font-weight: var(--body-medium-normal-font-weight);
  color: var(--white);
  font-size: var(--body-medium-normal-font-size);
  letter-spacing: var(--body-medium-normal-letter-spacing);
  line-height: var(--body-medium-normal-line-height);
  z-index: 1;
  margin-top: 0;
}

.hero-section .download-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.hero-section .download-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: none;
  padding: 0;
}

.hero-section .download-button .download-icon {
  height: 50px;
  width: auto;
  /* Maintain aspect ratio and uniform size */
  display: block;
  /* Ensure consistent display */
}

.cta-button {
  display: inline-block;
  padding: 15px 30px;
  /* Add padding for button size */
  background-color: #00bfa6;
  /* White background for contrast */
  color: white;
  /* Text color matching the theme */
  font-family: "Petrona", serif;
  /* Font to match the theme */
  font-weight: 700;
  /* Bold text */
  font-size: 22px;
  /* Font size for readability */
  text-decoration: none;
  /* Remove underline */
  border-radius: 8px;
  /* Rounded corners */
  transition: background-color 0.3s, transform 0.3s;
  /* Smooth hover effect */
  text-align: center;
  /* Center the text */
}

.cta-button:hover {
  background-color: #009687;
  /* Slightly darker background on hover */
  transform: translateY(-3px);
}

.hero-section .logo {
  width: 75px;
  height: auto;
}

.hero-section .text-wrapper {
  font-family: "Petrona", serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
  line-height: 1.2;
}

.app-screenshot {
  width: 80%;
  max-width: 300px;
  margin: 0 auto;
  display: block;
  /* Ensures image is displayed as a block element */
  margin-bottom: 20px;
  /* Adds space below the image */
}

.footer {
  background-color: #f8f9fa;
  padding: 20px 0;
  border-top: 2px solid #e0e0e0;
  text-align: center;
  margin-top: auto;
  /* Pushes footer to the bottom */
}

.footer-links a {
  color: #555;
  text-decoration: none;
  font-weight: 500;
}

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

.footer-copy p {
  color: #777;
  margin: 0;
}
