html, body {
  font-family: 'Roboto', sans-serif;
  height: 100%;
  margin: 0;
  overflow-x: hidden;
  background: linear-gradient(to bottom, #000000, #7b000a, #000000);
}

/* NAVIGATION BAR */
#TUPC {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  font-size: 18px;
}

#TUPC img {
  height: 30px;
  width: auto;
  flex-shrink: 0;
}

@media (max-width: 576px) {
  #TUPC {
    font-size: 0.9rem;
  }
}

.navbar-brand img {
  height: 30px;
  width: auto;
}

.navbar-custom {
  background: linear-gradient(to right, #000000, #7b000a, #000000);
}

.navbar-custom .navbar-brand,
.navbar-custom .nav-link {
  color: white;
  font-weight: 500;
  margin-right: 10px;
  font-size: 17px;
}

.navbar-custom .nav-link:hover {
  color: #adb5bd;
}

.navbar-custom .nav-link.active {
  font-weight: bold;
  font-size: 1.1rem;
  text-decoration: underline;
  text-underline-offset: 4px;
  color: white;
}

/* Login Button */
.nav-btn {
  background-color: #75000e;
  color: #ffffff !important;
  font-weight: bold;
  padding: 8px 20px;
  border-radius: 18px;
  border: none;
  transition: all 0.3s ease;
  text-align: center;
}

.nav-btn:hover {
  background-color: #49040c;
  color: #e7e1e1 !important;
  text-decoration: underline;
  font-weight: bold;
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.5);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}









/* HERO HEADER */
header {
  height: 500px;
  position: relative;
  z-index: 0;
  margin-top: 50px;
  background-image: url("../images/election_bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

header::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-text {
  position: absolute;
  top: 40%;
  left: 10%;
  transform: translateY(-50%);
  z-index: 1;
}

.hero-text h1 {
  font-size: 3rem;
  background-color: rgba(255, 255, 255, 0.8);
  color: #333;
  display: inline-block;
  padding: 10px 20px;
}

.hero-text p {
  margin-top: 10px;
  font-size: 1.2rem;
  background-color: rgba(255, 255, 255, 0.7);
  color: #222;
  padding: 8px 15px;
  display: inline-block;
}







/* DONATION BOX */
.donation-box {
  background: white;
  padding: 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  max-width: 1000px;
  margin: -60px auto 50px;
  display: flex;
  align-items: center;
  border: 0.5px solid #360107;
  gap: 20px;
  border-radius: 10px;
  position: relative;
  z-index: 2;
}
.donation-box input.form-control {
  width: 200px !important; /* override 70% from .donation-box input */
}

.donation-box .icon {
  font-size: 2.5rem;
  color: #360107;
  padding: -20px;
}

.donation-box .info {
  flex: 1;
  margin-left: 30px;
  border-left: 3px solid #360107;
  padding-left: 10px;
}

.donation-box .info h3 {
  margin: 0 0 5px;
  font-size: 1.3rem;
  font-weight: bold;
}

.donation-box .info p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 10px;
}

.donation-box input {
  width: 70%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-right: 10px;
  font-size: 1rem;
}

.donation-box button {
  background-color: #360107;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
}

.donation-box button:hover {
  background-color: #700f1b; /* Darker or different shade */
  color: #ffddcc;            /* Optional: lighter text */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Optional: add a shadow */
  transition: all 0.3s ease; /* Smooth transition */
  text-decoration: underline;
}

.donation-box button:active {
  background-color: #210004;
  transform: scale(0.97);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5);
}



