/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #1f1c2c, #928dab);
  color: #fff;
  overflow-x: hidden;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: url("../images/todo.jpg") no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.overlay {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 50px;
  border-radius: 20px;
  text-align: center;
  animation: fadeInUp 1.5s ease-out;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.hero h1 {
  font-size: 3em;
  margin-bottom: 10px;
  color: #080808;
  animation: bounceIn 2s ease;
}

.hero p {
  font-size: 1.5em;
  color: #080808;
  margin-bottom: 30px;
}

/* Navigation */
nav a {
  text-decoration: none;
  padding: 12px 25px;
  background: #ffffff33;
  color: white;
  border: 2px solid white;
  border-radius: 30px;
  transition: all 0.3s ease;
  font-weight: bold;
  text-transform: uppercase;
}

nav a:hover {
  background: white;
  color: #333;
  transform: scale(1.1);
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.2);
  font-size: 0.9em;
}

/* Animations */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounceIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  60% {
    transform: scale(1.05);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .overlay {
    padding: 30px;
  }

  .hero h1 {
    font-size: 2.2em;
  }

  .hero p {
    font-size: 1.2em;
  }
}
