/* Landing page styles (uporablja CSS vars iz student.css) */

.landing-body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background: var(--sidebar-bg);
}

.landing-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background: var(--sidebar-bg);
  color: white;
  text-align: center;
}

.landing-content h1 {
  font-family: 'Fredoka One', cursive;
  font-size: 3rem;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.landing-content .subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.landing-content .cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.landing-content .cta-buttons .btn-child {
  background: var(--btn-bg);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s;
}

.landing-content .cta-buttons .btn-child:hover {
  background: var(--btn-hover);
}
