.hero {
  position: relative;
  min-height: calc(120vh - 90px);
  background: url("../images/hero-dubai.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 0 10%;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(3, 23, 25, 0.82) 0%,
      rgba(3, 23, 25, 0.68) 50%,
      rgba(3, 23, 25, 0.42) 100%
    ),
    linear-gradient(
      180deg,
      rgba(3, 23, 25, 0.22),
      rgba(3, 23, 25, 0.58)
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 980px;
}

.hero-tag {
  position: relative;
  display: inline-block;
  color: var(--accent);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 35px;
  padding-left: 50px;
}

.hero-tag::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 38px;
  height: 1px;
  background: var(--accent);
}

.hero h1 {
  max-width: 800px;

  font-family: "Cormorant Garamond", serif;
  font-weight: 900;

  font-size: 4.5rem;
  line-height: 0.88;

  letter-spacing: -4px;

  color: #f4f4f0;

  margin-bottom: 30px;
}

.hero p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-sans);
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 48px;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-btn {
  min-width: 300px;
  padding: 24px 34px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 3px;
  transition: 0.3s ease;
}

.hero-btn.primary {
  background: var(--accent);
  color: #ffffff;
}

.hero-btn.secondary {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.03);
}

.hero-btn:hover {
  transform: translateY(-4px);
}

.hero-btn.primary:hover {
  background: var(--accent-dark);
}

.hero-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}