/* Light Mode */
:root {
  --primary: #E8E2D2 !important; /* sand-50 */
  --primary-hover: #BDB2EC !important; /* indigo-250 */
  --spacing: 0.3rem;
  --contrast: #000;
  --secondary: #B3B9C5 !important; /* zinc-250 */
}

/* Dark Mode */
[data-theme="dark"] {
  --primary: #615E55 !important; /* sand-600 */
  --primary-hover: #524ED2 !important; /* indigo-600 */
  --contrast: #FFF;
  --secondary: #4D535E !important; /* zinc-650 */
}

/* Buttons */
.button-primary {
  background-color: var(--primary);
  color: var(--contrast);
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Adds a subtle shadow */
}

.button-primary:hover {
  background-color: var(--primary-hover);
}
.button-primary:active {
  background-color: var(--primary-hover);
  transform: scale(0.98); /* Adds a slight "pressed" effect */
  box-shadow: None
}

.button-container {
  display: flex;
  gap: 10%; /* Adjust spacing between buttons */
}

/* Links */
a {
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

/* Custom classes */
.responsive {
  width: 100%;
  max-width: 600px;
  display: block;
  margin: 0 auto;
}

.logo {
  width: 100%;
  max-width: 300px;
  display: inline-block;
  margin: 0 auto;
}

.centered {
  justify-content: center;
}

.space-below {
  padding-bottom: 2rem;
}

/* Base */
html, body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
}

header {
  margin: 0; /* Adjust values as needed */
}

.content {
  flex: 1; /* Pushes the footer down */
}

.footer {
  text-align: center;
  padding: 10px;
}

/* Navigation */
.burger {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
}

.menu {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

@media (max-width: 576px) {
  .burger {
    display: block;
  }

  .menu {
    display: none;
    flex-direction: column;
  }

  .menu.show {
    display: flex;
  }

  .menu ul {
    flex-direction: column;
  }
}