/* Base styles */
body {
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  color: #000;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
}

.splash-container {
  padding: 2rem;
  max-width: 800px;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Desktop logo styles */
.desktop-logo {
  display: block;
  width: 300px;
  max-width: 100%;
  height: auto;
  margin-bottom: 2rem;
}

/* Mobile logo styles */
.mobile-logo {
  display: none;
  width: 220px;
  height: auto;
  margin-bottom: 1.5rem;
}

/* Headings and text */
h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

p {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.tagline {
  margin-top: 2rem;
  font-size: 1rem;
  color: #555;
}

.contact {
  margin-top: 3rem;
  font-size: 1rem;
  color: #333;
}

.contact a {
  color: #000;
  text-decoration: underline;
}

/* Mobile-specific overrides */
@media (max-width: 480px) {
  .desktop-logo {
    display: none;
  }

  .mobile-logo {
    display: block;
  }

  h1 {
    font-size: 2rem;
  }

  p {
    font-size: 1rem;
  }

  .splash-container {
    padding: 1.5rem 1rem;
  }
  .contact {
    margin-top: 2rem;
    font-size: 0.95rem;
  }
}
