/* Homepage Styles - Mobile First */

/* Page Layout - No Scroll */
html {
  height: 100vh;
  overflow: hidden;
}

body {
  display: flex;
  flex-direction: column;
  height: 100vh;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

/* Main Content */
.homepage-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
  width: 100%;
  box-sizing: border-box;
}

/* Hero Section */
.hero {
  text-align: center;
  margin-bottom: 2rem;
  padding: 0;
}

.hero-title {
  font-family: 'Paytone One', sans-serif;
  font-size: 1.75rem;
  color: rgba(32, 39, 70, 0.9);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.hero-description {
  font-family: Helvetica, sans-serif;
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Actions Section */
.actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

/* Button Styles */
.btn {
  font-family: 'Paytone One', sans-serif;
  display: inline-block;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  text-decoration: none;
  text-align: center;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  min-width: 200px;
  box-sizing: border-box;
}

.btn-primary {
  background-color: rgba(32, 39, 70, 1.0);
  color: #FFFFFF;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: rgba(32, 39, 70, 0.85);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(32, 39, 70, 0.3);
  outline: 2px solid rgba(32, 39, 70, 1.0);
  outline-offset: 2px;
}

.btn-secondary {
  background-color: #31AFD4;
  color: #FFFFFF;
}

.btn-secondary:hover,
.btn-secondary:focus {
  background-color: #2a9bb8;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(49, 175, 212, 0.3);
  outline: 2px solid #31AFD4;
  outline-offset: 2px;
}

.btn-outline {
  background-color: transparent;
  color: rgba(32, 39, 70, 1.0);
  border: 2px solid rgba(32, 39, 70, 1.0);
}

.btn-outline:hover,
.btn-outline:focus {
  background-color: rgba(32, 39, 70, 1.0);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(32, 39, 70, 0.3);
  outline: 2px solid rgba(32, 39, 70, 1.0);
  outline-offset: 2px;
}

/* Tablet and Up */
@media (min-width: 768px) {
  .homepage-main {
    padding: 2rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1.125rem;
  }

  .actions {
    flex-direction: row;
    justify-content: center;
    gap: 1.5rem;
  }

  .btn {
    min-width: 180px;
  }
}

/* Desktop and Up */
@media (min-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }

  .hero-description {
    font-size: 1.25rem;
  }

  .actions {
    gap: 2rem;
  }

  .btn {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
  }
}
