/* === Base Theme === */
body {
  background-color: #1f1f1f;
  color: #f5f5f5;
  background-image: url('/images/bg_header.png');
  background-repeat: repeat;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* === Header === */
.hh-header {
  background-color: #000;
  box-shadow: 0 20px 30px rgba(0,0,0,0.6);
  z-index: 1000;
}
.logo-img {
  height: 36px;
}

/* === Buttons === */
.btn-orange {
  background-color: #e67e58;
  color: #1f1f1f;
  border: none;
  border-radius: 6px;
}
.btn-orange:hover {
  background-color: #ffb27d;
}

/* === Form Container === */
.login-box {
  background-color: rgba(0, 0, 0, 0.85);
  padding: 2rem 3rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 0 20px rgba(0,0,0,0.6);
  width: 100%;
  max-width: 700px;
}

/* === Form Inputs === */
.login-box .form-control {
  background-color: #333;
  color: #f5f5f5;
  border: none;
  border-radius: 6px;
  padding: 0.75rem;
  width: 100%;
  margin-bottom: 1rem;
  font-size: 1rem;
  box-shadow: none;
}
.login-box .form-control:focus {
  outline: none;
  box-shadow: 0 0 0 2px #e67e58;
}

/* === Toasts === */
.toast-error,
.toast-success {
  position: relative;
  padding: 1rem 1.25rem;
  border-radius: 6px;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.toast-error {
  background-color: #1f1f1f;
  border-left: 4px solid #e67e58;
  color: #f5f5f5;
}
.toast-success {
  background-color: #1f1f1f;
  border-left: 4px solid #58e67e;
  color: #f5f5f5;
}

/* === Checkbox Styling === */
.login-box .form-check-input {
  background-color: #333;
  border: 1px solid #aaa;
}
.login-box .form-check-input:checked {
  background-color: #e67e58;
  border-color: #e67e58;
}
.login-box .form-check-label {
  color: #f5f5f5;
  font-weight: normal;
}
.login-box .form-control::placeholder {
  color: #ffb27d; /* Light orange, matches your button hover */
  opacity: 1;     /* Ensures full color, not faded */
}
/* === Divider === */
.divider {
  margin: 2rem 0;
  font-size: 1.6rem;
  color: #cfa97e;
  font-weight: bold;
}

/* === Social Icons === */
.social-icons {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
}
.social-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1rem;
  color: #f5f5f5;
  cursor: pointer;
  transition: color 0.3s;
}
.social-item svg {
  width: 60px;
  height: 60px;
  fill: #f5f5f5;
  transition: fill 0.3s, transform 0.2s ease;
  margin-bottom: 0.5rem;
}
.social-item:hover svg {
  fill: #e67e58;
  transform: scale(1.05);
}
.social-item:hover {
  color: #e67e58;
}

/* === Footer === */
.hh-footer {
  background-color: #000;
  box-shadow: 0 -20px 30px rgba(0,0,0,0.6);
}
.hh-footer a {
  color: #f5f5f5;
  text-decoration: none;
}
.hh-footer a:hover {
  text-decoration: underline;
}

/* === Navbar Styling === */
.navbar-nav .nav-link {
  font-size: 1.1rem;
  padding: 0.75rem 1rem;
  color: #f5f5f5;
}
.navbar-nav .nav-link:hover {
  color: #e67e58;
  background-color: rgba(255,255,255,0.05);
}

/* === Mobile Nav === */
@media (max-width: 991px) {
  .navbar-collapse {
    background-color: #000;
    padding: 1rem;
    border-radius: 0 0 10px 10px;
  }
  .navbar-nav, .navbar-nav .nav-item {
    width: 100%;
  }
  .mobile-nav-link {
    font-size: 1.1rem;
    padding: 0.75rem 1.25rem;
    color: #f5f5f5;
    text-decoration: none;
    display: block;
    text-align: left;
  }
  .mobile-nav-link:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: #e67e58 !important;
  }
}
/* === Admin Stuff ==== */
.admin-wide-box {
   max-width: 100%;
  width: 100%;
  margin: 0 auto;
  padding: 2rem;
  background-color: #000;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}
