/* ✅ General Reset & Body Background */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1950&q=80') no-repeat center center fixed;
  background-size: cover;
  backdrop-filter: blur(5px);
  color: #fff;
}

/* ✅ Header Styling */
header {
  padding: 20px 30px;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.logo {
  width: 250px;
  height: auto;
  filter: brightness(0) invert(1);
  max-width: 100%;
}

/* ✅ Navigation Buttons */
.nav-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.nav-btns a {
  padding: 10px 18px;
  text-decoration: none;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  transition: background 0.3s ease, color 0.3s ease;
}

.nav-btns a:hover {
  background: #ffcc70;
  color: #222;
}

/* ✅ Hero Section */
.hero {
  text-align: center;
  padding: 100px 20px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* ✅ Buttons */
.btn {
  padding: 14px 28px;
  font-size: 1.1rem;
  background: #ffcc70;
  color: #222;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
  text-decoration: none;
}

.btn:hover {
  background: #ffb347;
}

/* ✅ Footer */
footer {
  text-align: center;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.5);
  font-size: 0.9rem;
  color: #fff;
}

/* ✅ Responsive Styles */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  .logo {
    width: 200px;
    margin-bottom: 15px;
  }

  .nav-btns {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-btns a {
    width: 100%;
    font-size: 1rem;
    padding: 12px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .btn {
    font-size: 1rem;
    padding: 12px 20px;
  }
}

@media (max-width: 480px) {
  .logo {
    width: 160px;
  }

  .nav-btns a {
    font-size: 0.95rem;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

  .hero p {
    font-size: 0.9rem;
  }

  .btn {
    padding: 10px 18px;
    font-size: 0.95rem;
  }
}
