/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Background Image */
body {
  background: url('https://images.unsplash.com/photo-1532384817631-5733c2ef3c84?auto=format&fit=crop&w=1470&q=80') no-repeat center center/cover;
  height: 100vh;
  font-family: 'Raleway', sans-serif;
  position: relative;
  color: white;
}

/* Dark overlay */
.overlay {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.65);
  z-index: 0;
}

/* Container with content */
.container {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.title {
  font-size: 4rem;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 2px;
  margin-bottom: 20px;
  animation: fadeInUp 1.5s ease-in-out;
}

.subtitle {
  font-size: 1.3rem;
  max-width: 600px;
  margin: 0 auto 20px;
  animation: fadeInUp 2.2s ease-in-out;
}

.tagline {
  font-size: 1rem;
  color: #f0db4f;
  font-weight: 700;
  animation: fadeInUp 2.8s ease-in-out;
}

/* Animation */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 600px) {
  .title {
    font-size: 2.5rem;
  }
  .subtitle {
    font-size: 1rem;
  }
}
