body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to right, #f8f9fa, #e9ecef);
  margin: 0;
  padding: 0;
  color: #333;
}

.container {
  max-width: 800px;
  margin: 80px auto;
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
}

h1 {
  font-size: 2.5em;
  color: #3a2f1d;
  margin-bottom: 10px;
}

p {
  font-size: 1.2em;
  color: #555;
  margin-bottom: 30px;
}

a.button {
  display: inline-block;
  padding: 12px 24px;
  background-color: #c2a679;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

a.button:hover {
  background-color: #a88a5c;
  transform: translateY(-1px);
}

.button-group {
  margin-top: 20px;
}

.button.secondary {
  background-color: #6c757d;
  margin-left: 10px;
}

.button.secondary:hover {
  background-color: #495057;
}

.footer {
  margin-top: 40px;
  font-size: 0.9em;
  color: #888;
}

/* 🔗 Nav bar styles (for navbar.html) */
.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  background-color: #f3efe7;
  padding: 1rem;
  border-bottom: 1px solid #e0d9c5;
  border-radius: 0 0 8px 8px;
  margin-bottom: 2rem;
}

.nav .button {
  background-color: #b89b6a;
  font-size: 0.85rem;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  font-weight: 600;
  transition: background-color 0.2s ease;
}

.nav .button:hover {
  background-color: #9e8354;
}

/* 🔐 Login modal styles */
.modal {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.modal-content {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  width: 300px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.modal-content input {
  display: block;
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.5rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.modal-content button {
  margin-right: 0.5rem;
  padding: 0.5rem 1rem;
  font-weight: bold;
  border: none;
  border-radius: 4px;
  background-color: #c2a679;
  color: white;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.modal-content button:hover {
  background-color: #a88a5c;
}

.hidden {
  display: none;
}