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

html,
body {
  height: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
  background-image: url("./purple_blue_stars_uhdp_1.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  color: #fff;
  display: flex;
  flex-direction: column;
}

.hero {
  flex: 1;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.6);
  letter-spacing: 0.02em;
}

.logo {
  max-width: 90vw;
  width: 360px;
  height: auto;
  filter: drop-shadow(0 4px 24px rgba(0, 0, 0, 0.4));
}

.book-btn {
  display: inline-block;
  padding: 1rem 3rem;
  font-size: 1.25rem;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, #7b2d8e 0%, #4a1259 100%);
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(123, 45, 142, 0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.book-btn:hover,
.book-btn:focus {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(123, 45, 142, 0.7);
  outline: none;
}

.footer {
  background: linear-gradient(180deg, #3a1a4a 0%, #2a0f38 100%);
  padding: 3rem 2rem;
  text-align: center;
}

.contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 3rem;
}

.contact-link {
  color: #e0d4f7;
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.2s ease;
}

.contact-link:hover,
.contact-link:focus {
  color: #fff;
}

.contact-label {
  font-weight: 600;
  color: #fff;
}

@media (max-width: 480px) {
  .title {
    font-size: 1.75rem;
  }

  .logo {
    width: 220px;
  }

  .book-btn {
    padding: 0.875rem 2rem;
    font-size: 1.1rem;
  }

  .contact {
    flex-direction: column;
    gap: 1rem;
  }
}
