/* General Body Styles */
body {
  font-family: "Josefin Sans", sans-serif;
  font-size: 18px;
  line-height: 1.6em;
  padding: 40px 20px;
  max-width: 800px;
  margin: auto;
  color: #414141;
}

a {
  color: #414141;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  text-decoration: none;
  color: #000;
}

a:visited {
  color: #414141;
}

/* Hero Section */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3em;
}

.logo-container {
  margin-bottom: 20px;
}

.logo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: linear-gradient(to bottom, #ff8c00, #ff0000);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

h1 {
  font-size: 3em;
  margin-bottom: 0.2em;
  line-height: 1.2;
}

.tagline {
  font-size: 1.2em;
  font-weight: 400;
  margin-bottom: 1.5em;
  color: #666;
}

/* App Store Button */
.app-store-button-container {
  margin-bottom: 2em;
}

.app-store-button img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 13px; /* Match the App Store button's rounding */
}

.app-store-button:hover img {
  transform: scale(1.05); /* Slight zoom on hover */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); /* Lift effect */
}

/* Description Text */
.description {
  max-width: 600px; /* Constrain line length for readability */
  margin: 0 auto 3em;
}

/* Footer */
footer {
  text-align: center;
  margin-top: 3em;
  padding-top: 1.5em;
  font-size: 0.8em;
  border-top: 1px solid #e0e0e0;
  color: #888;
}

footer a {
  margin: 0 10px;
  color: #666;
}

footer a:hover {
  color: #000;
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  body {
    font-size: 16px;
    padding: 20px 15px;
  }
  h1 {
    font-size: 2.5em;
  }
  .tagline {
    font-size: 1.1em;
  }
  .logo {
    width: 120px;
    height: 120px;
  }
}
