/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Outfit', sans-serif;
  background: linear-gradient(120deg, #fff2e0, #ffd1a1, #ffab40); /* خلفية برتقالية تدريجية */
  color: #2b2b2b;
  height: 100vh;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  text-align: center;
  z-index: 2;
  padding: 40px;
}

h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #ff6600; /* برتقالي غامق */
  margin-bottom: 1rem;
}

.tagline {
  font-size: 1.3rem;
  color: #ff8f1f; /* برتقالي متوسط */
  margin-bottom: 1.5rem;
}

.teaser {
  font-size: 1.1rem;
  font-weight: 400;
  color: #4b2e1e; /* بني خفيف ليتماشى مع البرتقالي */
  margin-bottom: 3rem;
}

footer {
  font-size: 0.9rem;
  color: #7a4f3a; /* بني خفيف */
}

/* Background blur element */
.background-blur {
  position: absolute;
  width: 500px;
  height: 500px;
  top: 50%;
  left: 50%;
  background: radial-gradient(circle at center, rgba(255, 140, 0, 0.3), transparent 70%);
  transform: translate(-50%, -50%);
  filter: blur(80px);
  z-index: 1;
}

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.4s; }
.delay-2 { transition-delay: 0.8s; }
.delay-3 { transition-delay: 1.2s; }
