body {
  font-family: 'Open Sans', sans-serif;
  margin-top: 76px;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: #ffffff;
}

.navbar {
  background: #1a3c6e !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand, .nav-link {
  font-weight: 600;
}

.hero {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('/images/109.png') center/cover no-repeat;
  height: 90vh;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.btn-primary {
  background: #c9a74e;
  border: none;
  padding: 10px 24px;
}

.btn-primary:hover {
  background: #b8953a;
}

.card {
  transition: transform 0.3s, box-shadow 0.3s;
  border: none;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

footer a {
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* New: For members-only */
#protected-content {
  display: none; /* Hidden by default */
}

#login-message {
  text-align: center;
  padding: 20px;
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 5px;
}