/*
Theme Name: Beyond Simple
Version: 1.2
*/
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: #fff;
  color: #fff;
}
.hero {
  background: url('assets/images/hero.jpg') no-repeat center center;
  background-size: cover;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}
.hero h1 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  color: #fff;
  background-color: rgba(0,0,0,0.5);
  padding: 1rem;
  border-radius: 0.5rem;
  max-width: 900px;
}
.hero p {
  font-size: clamp(1rem, 3vw, 1.5rem);
  color: #fff;
  background-color: rgba(0,0,0,0.4);
  padding: 1rem;
  max-width: 900px;
  border-radius: 0.5rem;
  line-height: 1.5;
}
.hero .buttons {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.hero .buttons a {
  display: inline-block;
  margin: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
  min-width: 220px;
  text-align: center;
}
.hero .buttons a.explore {
  background-color: #7b4f4f;
}
.hero .buttons a.test {
  background-color: #c37a46;
}
.hero .buttons a:hover {
  opacity: 0.85;
}
