
:root{
  --yellow:#FDB813;
  --orange:#FF8C00;
  --dark:#222;
}
*{box-sizing:border-box;margin:0;padding:0}
body{
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color:var(--dark);
  line-height:1.6;
}
.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}
.site-header{
  background:linear-gradient(90deg,var(--yellow),var(--orange));
  padding:10px 0;
}
.header-flex{
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.logo{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:bold;
}
.logo img{
  /* height:48px; */
  height:78px;
}
nav a{
  margin-left:15px;
  text-decoration:none;
  color:#000;
  font-weight:600;
}
.hero{
  min-height:100vh;
  background:url('/assets/img/cover.png') center/cover no-repeat;
  display:flex;
  align-items:center;
}
.hero-overlay{
  background:rgba(0,0,0,0.35);
  color:#fff;
  padding:60px 20px;
  width:100%;
  text-align:center;
}
.hero h1{
  font-size:clamp(2rem,5vw,3.5rem);
}
.hero p{
  margin-top:10px;
  font-size:1.2rem;
}
.site-footer{
  background:#f4f4f4;
  padding:20px 0;
  text-align:center;
  font-size:0.9rem;
}
@media(max-width:768px){
  nav{display:none}
  .hero-overlay{padding:40px 15px}
}
