* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  color: white;
}

/* HERO */
.hero {
  height: 100vh;
  background: url('background.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* DARK OVERLAY (important pentru premium look) */
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.7),
    rgba(0,0,0,0.85)
  );
}

/* CONTENT */
.content {
  position: relative;
  max-width: 700px;
  text-align: center;
  padding: 20px;
  animation: fadeIn 1.5s ease;
}

h1 {
  font-size: 42px;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.85);
}

.email {
  font-weight: bold;
  color: #9f7aea;
}

/* BUTTON */
.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 30px;
  border: 1px solid white;
  text-decoration: none;
  color: white;
  letter-spacing: 2px;
  transition: 0.3s;
}

.btn:hover {
  background: white;
  color: black;
}

/* ANIMATION */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
