/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: white;
  overflow: hidden;
}

/* Main Hero Section */
.hero-section {
  background-image: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c');
  background-size: 110%;
  background-position: center;
  height: 100vh;
  position: relative;
  animation: kenBurnsZoom 20s ease-in-out infinite alternate;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes kenBurnsZoom {
  0% {
    background-size: 110%;
  }
  100% {
    background-size: 120%;
  }
}

/* Top-left Logo */
.logo-top-left {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 100px;
  height: auto;
  opacity: 0;
  transform: translateX(-50px);
  animation: slideInLeft 1.5s ease-out forwards;
}
@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Overlay */
.overlay {
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* Content */
.content {
  text-align: center;
  animation: fadeSlideUp 1.5s ease-out forwards;
  opacity: 0;
  transform: translateY(30px);
  animation-delay: 0.4s;
}

@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.subtitle {
  font-size: 1.5rem;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(30px);
  animation: slideBottom 1s ease-out forwards;
  animation-delay: 1s;
}

@keyframes slideBottom {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.coming-soon {
  font-size: 4rem;
  font-weight: bold;
  letter-spacing: 5px;
  opacity: 0;
  transform: scale(0.8);
  animation: zoomIn 1.2s ease-out forwards;
  animation-delay: 1.6s;
}

@keyframes zoomIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.tagline {
  font-size: 1rem;
  margin-top: 20px;
  color: #ccc;
  opacity: 0;
  animation: fadeIn 1.5s ease-in forwards;
  animation-delay: 2.2s;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* Responsive Adjustments */
@media screen and (max-width: 1024px) {
  .logo-top-left {
    width: 120px;
    top: 16px;
    left: 16px;
  }

  .coming-soon {
    font-size: 3.2rem;
  }

  .subtitle {
    font-size: 1.3rem;
  }

  .tagline {
    font-size: 1rem;
  }
}

@media screen and (max-width: 768px) {
  .logo-top-left {
    width: 100px;
    top: 12px;
    left: 12px;
  }

  .coming-soon {
    font-size: 2.4rem;
  }

  .subtitle {
    font-size: 1.1rem;
  }

  .tagline {
    font-size: 0.95rem;
  }
}

@media screen and (max-width: 480px) {
  .content {
    padding: 0 10px;
  }

  .coming-soon {
    font-size: 2rem;
    letter-spacing: 2px;
  }

  .subtitle {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .tagline {
    font-size: 0.9rem;
  }

  .logo-top-left {
    width: 90px;
    top: 10px;
    left: 10px;
  }
}

