/* Dark Theme with Orange Accent */
:root {
  --primary-color: #f2af56; /* Orange */
  --background-color: #121212; /* Dark */
  --surface-color: #1e1e1e; /* Darker */
  --text-color: #ffffff; /* White */
  --secondary-text-color: #bbbbbb;
}

/* General Reset */
body, h1, h2, h3, p, ul, li {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: var(--background-color);
  color: var(--text-color);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Sticky Footer Layout */
.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
  padding: 20px;
  background: var(--surface-color);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  margin: 10px auto;
  width: 95%;
  z-index: 1;
}

/* Header & Navbar */
header {
  background: var(--surface-color);
  padding: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

/* Header Layout */
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 92%;
  margin: 0 auto;
}

/* Navigation Styling */
nav ul {
  list-style: none;
  display: flex;
  gap: 10px;
}

nav ul li {
  display: inline;
}

nav ul li a {
  color: var(--text-color);
  text-decoration: none;
  font-weight: bold;
  padding: 10px;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
  border-radius: 20px;
}

nav ul li a:hover {
  color: var(--primary-color);
  background-color: rgba(69, 69, 69, 0.2);
}

/* Footer */
footer {
  text-align: center;
  padding: 15px 0;
  background: var(--surface-color);
  color: var(--secondary-text-color);
  margin-top: auto;
  box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.3);
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 2rem;
  transition: all 0.3s ease;
  text-align: center;
}

/* 🟠 Primary Button */
.btn.primary {
  background: var(--primary-color);
  color: #000;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.3);
}

.btn.primary:hover {
  transform: translateY(-2px);
  background: rgba(255, 152, 0, 0.9);
  box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.4);
}

/* ⚪ Secondary Button */
.btn.secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.btn.secondary:hover {
  transform: translateY(-2px);
  background: rgba(255, 152, 0, 0.1);
  box-shadow: 0px 6px 14px rgba(0, 0, 0, 0.3);
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
	text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-container {
      flex-direction: column;
      align-items: center;
  }

  nav ul {
      flex-direction: column;
      align-items: center;
      padding: 10px;
  }

  nav ul li {
      margin: 5px 0;
  }

  .container {
      width: 95%;
  }
}