/* Weka Mobile Landing Page Styles */


:root {
  /* Primary Colors */
  --background-secondary: #0A2E20;
  --background-primary: #E0F5E9;
  
  /* Accent Colors */
  --accent-primary: #6DDC84;
  --accent-secondary: #3AB757;
  
  /* Typography */
  --text-dark: #0A2E20;
  --text-light: #ffffff;
}

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

body {
  font-family: 'Outfit', 'Arial', sans-serif;
  background-color: var(--background-primary);
  color: var(--text-dark);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.hero {
  padding: 6rem 0;
  text-align: center;
  color: var(--text-dark);
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .logo {
  max-width: 200px;
  height: auto;
  margin-bottom: 2rem;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
  transition: transform 0.3s ease;
}

.hero .logo:hover {
  transform: scale(1.05);
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
  font-weight: bold;
}

.hero .tagline {
  font-size: 1.5rem;
  margin-bottom: 3rem;
}

/* Footer */
footer {
  background-color: var(--background-secondary);
  color: var(--background-primary);
  text-align: center;
  padding: 2rem 0;
  border-top: 1px solid var(--accent-secondary);
}

footer p {
  margin: 0.5rem 0;
}

footer a {
  color: var(--accent-primary);
  text-decoration: none;
  font-weight: bold;
}

footer a:hover {
  color: var(--accent-secondary);
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero .logo {
    max-width: 150px;
    margin-bottom: 1.5rem;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero .tagline {
    font-size: 1.2rem;
  }
  
  .hero {
    padding: 4rem 0;
  }
}
