/* ===== Navbar ===== */

.navbar {
  padding: 0.8rem 1rem;
}

.navbar-brand {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 1px;
  color: #ffc107 !important; /* yellow logo */
}

.nav-link {
  font-size: 1rem;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.nav-link:hover,
.dropdown-item:hover {
  color: #ffc107 !important; /* yellow hover like cognizance */
}

.dropdown-menu {
  background-color: #212529;
}

.dropdown-item {
  color: #fff;
}

.sticky-top {
  backdrop-filter: blur(10px);
  background-color: rgba(0, 0, 0, 0.85) !important;
}

/* ===== Hero Section ===== */
/* Hero Section Background */
#hero {
  background: url("img/Fest_Schools.png") no-repeat center center/cover;
  min-height: 100vh;
  width: 100%;
  position: relative;
  z-index: 1;
}


#hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay */
}

#hero .container {
  position: relative;
  z-index: 2;
}


/* ===== Cards in About ===== */
.card {
  border: none;
  background: #f8f9fa;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: scale(1.05);
  background: #ffc107;
  color: #000;
}

/* ===== Gallery ===== */
.gallery img {
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
}

/* ===== Footer ===== */
footer {
  font-size: 0.9rem;
}
