* { margin:0; padding:0; box-sizing:border-box; }
html, body { height:100%; font-family:'Segoe UI', sans-serif; }
.hero {
  position: relative;
  width:100%;
  height:100vh;
  background: url('../images/background.jpg') center/cover no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
}
.overlay {
  position:absolute;
  top:0; left:0; right:0; bottom:0;
  background: rgba(0,0,0,0.6);
}
.logo {
  position:absolute;
  top:2rem;
  right:2rem;
  max-width:180px;
  z-index:2;
}
.content {
  position:relative;
  z-index:2;
  max-width:480px;
  text-align:center;
  color:#FFF;
  padding:2rem;
  background: rgba(255,255,255,0.1);
  border-radius:8px;
  border:1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(5px);
}
.content h1 {
  font-size:2.5rem;
  color:#FFD700;
  margin-bottom:1rem;
}
.content p {
  font-size:1.1rem;
  line-height:1.5;
  margin-bottom:1.5rem;
}
.content p a {
  color:#FFD700;
  text-decoration:none;
}
.content p a:hover {
  text-decoration:underline;
}
.contact-form input {
  width:100%;
  padding:0.8rem;
  margin-bottom:0.8rem;
  border:none;
  border-radius:5px;
}
.contact-form button {
  width:100%;
  padding:0.8rem;
  background:#FFD700;
  color:#4B0082;
  border:none;
  border-radius:5px;
  font-size:1rem;
  cursor:pointer;
  transition:background 0.3s ease;
}
.contact-form button:hover {
  background:#FFC107;
}
