/* Landing Page Styles */

#landing-section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: white;
}

.landing-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  width: 100%;
}

.logo-container {
  text-align: center;
}

.hero-text {
  text-align: center;
  padding: 30px;
  background: white;
  position: relative;
  width: 600px;
  max-width: 90%;
}

.hero-text h1 {
  font-family: 'Special Elite', cursive;
  margin: 20px 0;
}

.tagline {
  font-family: 'Gloria Hallelujah', cursive;
  margin: 15px 0;
}

.features {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin: 30px 0;
}

.feature {
  text-align: center;
}

.feature-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto;
}

.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.auth-container {
  text-align: center;
  padding: 30px;
  background: white;
  position: relative;
  width: 600px;
  max-width: 90%;
}

.auth-title {
  font-family: 'Special Elite', cursive;
  margin: 20px 0;
}

.auth-button {
  display: inline-block;
  padding: 12px 24px;
  margin: 10px;
  font-family: 'Gloria Hallelujah', cursive;
  font-size: 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
}

.google-btn {
  background: #4285f4;
  color: white;
}

.google-btn:hover {
  background: #357ae8;
}

.magic-btn {
  background: #FF6B6B;
  color: white;
}

.magic-btn:hover {
  background: #FF5252;
}

.divider {
  margin: 20px 0;
  font-family: 'Gloria Hallelujah', cursive;
  color: #666;
}

.email-input {
  width: 80%;
  max-width: 300px;
  padding: 10px;
  margin: 10px auto;
  display: block;
  border: 2px solid #333;
  border-radius: 4px;
  font-family: 'Gloria Hallelujah', cursive;
  font-size: 16px;
  text-align: center;
}

#landing-footer {
  margin-top: 30px;
  text-align: center;
  font-family: 'Gloria Hallelujah', cursive;
  width: 100%;
}