/* Reset styles */
body, h1, h2, p, ul, li, a {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  box-sizing: border-box;
}

/* Global styles */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #fff;
  background: #121212;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Topbar */
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(10px);
  background: rgba(20, 20, 20, 0.8);
  padding: 10px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-text {
  font-size: 1.5rem;
  font-weight: bold;
  background: linear-gradient(to right, #ff6961, #ffffff, #89cff0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Desktop navigation */
.nav-desktop {
  display: none;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: #fff;
  font-size: 1rem;
  padding: 8px 12px;
  transition: background 0.3s, color 0.3s;
}

.nav-links a:hover {
  background: #333;
  border-radius: 5px;
}

/* Sidebar menu */
.sidebar {
  position: fixed;
  top: 0;
  left: -100%;
  width: 300px;
  height: 100%;
  background: #1e1e1e;
  transition: left 0.3s ease-in-out;
  z-index: 1000;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.sidebar.open {
  left: 0;
}

.close-btn {
  font-size: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  align-self: flex-end;
  cursor: pointer;
}

.sidebar-links {
  margin-top: 20px;
  gap: 20px;
  display: flex;
  flex-direction: column;
}

.sidebar-links a {
  color: white;
  font-size: 1rem;
  padding: 8px 12px;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.sidebar-links a:hover {
  background: #444;
}

/* Responsive */
@media screen and (min-width: 768px) {
  .nav-desktop {
    display: block;
  }

  .nav-btn {
    display: none;
  }

  .sidebar {
    display: none;
  }
}

/* Hero section */
.hero {
  text-align: center;
  padding: 100px 20px;
  background: #1e1e1e;
  flex-grow: 1;
}

.hero h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #ffcb05;
}

.hero p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.hero .btn {
  display: inline-block;
  padding: 10px 20px;
  background: #32cd32;
  color: white;
  border-radius: 5px;
  font-size: 1rem;
  transition: background 0.3s;
}

.hero .btn:hover {
  background: #28a745;
}

/* Footer */
footer {
  text-align: center;
  padding: 10px;
  background: #000;
  color: white;
  font-size: 0.9rem;
}
