/* file: style.css */
body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #111 0%, #1f1f1f 100%);
  color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  background: #1a1a1a;
  padding: 20px;
  text-align: center;
  border-bottom: 3px solid gold;
}

.logo {
  width: 120px;
  height: auto;
  margin-bottom: 10px;
}

h1 {
  font-size: 28px;
  color: gold;
  margin: 10px 0 5px;
}

.tagline {
  font-size: 14px;
  color: #ccc;
}

main {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 40px 20px;
  background: url('https://www.transparenttextures.com/patterns/black-linen.png');
  background-size: cover;
}

.hero h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
  animation: fadeInDown 1s ease-out;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn {
  background-color: gold;
  color: #000;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.btn:hover {
  background-color: #ffd700;
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
}

footer {
  background: #1a1a1a;
  text-align: center;
  padding: 20px;
  font-size: 12px;
  color: #777;
  border-top: 1px solid #333;
}

@media (max-width: 600px) {
  h1 {
    font-size: 22px;
  }

  .hero h2 {
    font-size: 20px;
  }

  .btn {
    padding: 10px 20px;
  }
}
