/* ===========================
   Boys Coaching Centre Theme
   Premium Green + Gold Palette
   =========================== */

/* Global */
body {
  font-family: 'Segoe UI', sans-serif;
  background: #fdfdfd;
  color: #212529;
}

/* Navbar */
.navbar {
  background: #198754; /* Green */
}
.navbar-brand, .nav-link {
  color: #fff !important;
}
.navbar-nav .nav-item.login-menu .nav-link {
  background: #FFD700; /* Gold */
  color: #212529 !important;
  border-radius: 5px;
  padding: 6px 12px;
  margin: 0 5px;
}
.navbar-nav .nav-item.info-menu .nav-link {
  background: #212529; /* Dark Gray */
  color: #FFD700 !important;
  border-radius: 5px;
  padding: 6px 12px;
  margin: 0 5px;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(rgba(25,135,84,0.8), rgba(25,135,84,0.8)),
              url('images/campus.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}
.hero-section h1 {
  color: #FFD700; /* Gold headline */
  font-weight: bold;
}
.hero-section p {
  font-size: 1.2rem;
}

/* Cards */
.card {
  border: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.card-title {
  color: #198754; /* Green titles */
  font-weight: bold;
}

/* Director image */
.director-img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #198754;
}

/* Buttons */
.btn-success {
  background-color: #198754;
  border-color: #198754;
}
.btn-success:hover {
  background-color: #157347;
}
.btn-outline-dark {
  border-color: #FFD700;
  color: #FFD700;
}
.btn-outline-dark:hover {
  background-color: #FFD700;
  color: #212529;
}

/* Footer */
footer {
  background: #212529;
  color: #FFD700;
  font-size: 0.9rem;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  border-radius: 50%;
  text-align: center;
  box-shadow: 2px 2px 5px #999;
  z-index: 1000;
}
.whatsapp-float img {
  width: 100%;
  height: 100%;
  padding: 10px;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  transition: 0.3s;
}

/* Sticky Bottom Nav (Mobile) */
.navbar.fixed-bottom {
  background: #198754; /* Green */
}
.navbar.fixed-bottom a {
  color: #FFD700 !important; /* Gold icons/text */
}
