* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
}

body {
  font-family: "Noto Kufi Arabic", Arial, sans-serif;
  overflow-x: hidden;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-image: url("hero-bg.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.25),
      rgba(0, 0, 0, 0.45)
    );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1100px;
  padding: 40px 20px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo {
  width: 180px;
  height: auto;
  margin-bottom: 150px;
}

.email-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  margin-bottom: 22px;
  color: #ffffff;
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.email-icon {
  font-size: 13px;
}

.brand-small {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-bottom: 6px;
  color: #c9a45c;
  font-size: 14px;
  letter-spacing: 3px;
  font-weight: 500;
}

h1 {
  color: #ffffff;
  font-size: 46px;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: -1px;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
}

/* Tablet */
@media (max-width: 992px) {
  .logo {
    width: 155px;
    margin-bottom: 120px;
  }

  h1 {
    font-size: 38px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hero {
    min-height: 100vh;
    background-position: center center;
  }

  .hero-content {
    padding: 32px 18px;
  }

  .logo {
    width: 130px;
    margin-bottom: 95px;
  }

  .email-badge {
    font-size: 12px;
    padding: 8px 14px;
    margin-bottom: 18px;
  }

  .brand-small {
    font-size: 12px;
    letter-spacing: 2px;
  }

  h1 {
    font-size: 30px;
    line-height: 1.6;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .hero {
    background-position: center center;
  }

  .logo {
    width: 115px;
    margin-bottom: 80px;
  }

  h1 {
    font-size: 25px;
  }
}
