

/* styles2_enhanced.css base */
body {
  font-family: "Montserrat", sans-serif;
  background-color: #f8f9fa;
}
h1, h2, h3, h4 {
  font-family: "Ubuntu", sans-serif;
  color: #0d6efd;
}
.navbar {
  background-color: #0d6efd;
}
.navbar-brand {
  font-size: 1.5rem;
  font-weight: bold;
}
.title-image {
  max-width: 100%;
  height: auto;
  padding: 20px;
}
.big-heading {
  font-size: 2.5rem;
  margin-top: 40px;
  font-weight: 600;
}
.form-first-h1 {
  margin-top: 20px;
  font-size: 1.8rem;
  font-weight: bold;
  color: #212529;
}
form hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 2px solid #0d6efd;
}
.form-left-field {
  text-align: right;
  padding-right: 10px;
  font-weight: 500;
}
label.form-label {
  color: #212529;
}
.btn-primary {
  background-color: #0d6efd;
  border: none;
}
.btn-primary:hover {
  background-color: #0b5ed7;
}
footer {
  padding: 20px 0;
  text-align: center;
  color: white;
  background-color: #0d6efd;
}
.social-icon {
  margin: 0 10px;
  color: white;
  font-size: 1.3rem;
}
input.form-control, select.form-select, textarea.form-control {
  font-size: 1rem;
  border-radius: 5px;
  border: 1px solid #ced4da;
  transition: border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
input.form-control:focus, select.form-select:focus, textarea.form-control:focus {
  border-color: #007A53;
  box-shadow: 0 0 0 0.2rem rgba(0, 122, 83, 0.25);
}
button.btn-primary, button.btn-success, button.btn-dark {
  font-size: 1.1rem;
  font-weight: bold;
  padding: 0.6em 1.5em;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}
button.btn-primary:hover, button.btn-success:hover, button.btn-dark:hover {
  opacity: 0.9;
}
.alert {
  font-size: 1rem;
}
.table-bordered th, .table-bordered td {
  vertical-align: middle;
  font-size: 0.95rem;
}
@media (max-width: 768px) {
  .form-left-field {
    text-align: left;
    padding-top: 10px;
  }
}
/* .hero-banner {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/banner.jpg') center/cover no-repeat;
  padding: 6rem 1rem;
  text-align: center;
  color: white;
  font-family: 'Montserrat', sans-serif;
} */

.hero-banner {
  background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url('../images/banner.jpg') center/cover no-repeat;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding: 2rem;
}

.hero-banner h1,
.hero-banner p {
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
}

.hero-content {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 2rem;
  border-radius: 10px;
  max-width: 700px;
  margin: 0 auto;
}

/* Enhanced admin interface */
.admin-container {
  margin: 2rem auto;
  max-width: 1200px;
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.08);
}
.admin-header {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: #333;
  border-bottom: 2px solid #ccc;
  padding-bottom: 0.5rem;
}
.admin-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}
.admin-table th,
.admin-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #ddd;
  text-align: left;
}
.admin-table th {
  background-color: #f5f5f5;
  font-weight: bold;
  color: #222;
}
.admin-table tr:nth-child(even) {
  background-color: #fafafa;
}
.btn {
  padding: 0.5rem 1rem;
  text-decoration: none;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.btn-outline-primary {
  color: #007bff;
  border-color: #007bff;
}
.btn-outline-warning {
  color: #ffc107;
  border-color: #ffc107;
}

/* Admin Login Page Styles */

.login-container {
  max-width: 400px;
  margin: 6rem auto;
  padding: 2rem 2.5rem;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.login-header {
  font-size: 1.75rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1.5rem;
  color: #333;
}

.login-form .form-label {
  font-weight: 500;
  color: #555;
}

.login-form .form-control {
  border-radius: 6px;
  padding: 0.6rem 0.75rem;
  font-size: 1rem;
}

.alert.alert-danger {
  background-color: #ffdddd;
  color: #a94442;
  padding: 0.75rem;
  border-radius: 5px;
  margin-bottom: 1rem;
}

/* Light text for admin login input fields */
.login-form .form-control[type="text"],
.login-form .form-control[type="password"] {
  color: #f1f1f1;
  background-color: #333;
  border: 1px solid #777;
}

