/* Google Fonts Import: Playfair Display for authoritative headings, Inter for clean modern body text */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  --primary-navy: #0f172a;      /* Sleek dark slate */
  --accent-gold: #b45309;       /* Deep warm bronze/gold for legal branding */
  --accent-gold-hover: #92400e;
  --text-dark: #1e293b;         /* Charcoal text */
  --text-muted: #64748b;        /* Cool grey text */
  --bg-light: #f8fafc;          /* Off-white background */
  --border-light: #e2e8f0;      /* Light border color */
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-light);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .brand-text {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--primary-navy);
}

/* Global utility classes */
.text-gold {
  color: var(--accent-gold);
}
.bg-navy {
  background-color: var(--primary-navy);
}
.gold-divider {
  width: 60px;
  height: 4px;
  background-color: var(--accent-gold);
  margin: 0.8rem 0;
}
.gold-divider.mx-auto {
  margin: 0.8rem auto;
}

/* Nav Links & Custom Styling */
.navbar-nav .nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark) !important;
  transition: color 0.3s ease;
  position: relative;
  padding: 0.5rem 1rem !important;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--accent-gold) !important;
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 10px;
  right: 10px;
  background-color: var(--accent-gold);
  transition: width 0.3s ease;
}
.navbar-nav .nav-link:hover::after {
  width: calc(100% - 20px);
}

/* Hero Carousel overrides */
.carousel-item {
  height: 580px;
}
.carousel-item img {
  object-fit: cover;
  height: 100%;
}
.carousel-img-overlay {
  position: relative;
  height: 100%;
}
.carousel-img-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.45));
  z-index: 1;
}
.carousel-caption {
  z-index: 2;
  bottom: 25%;
}

/* Overlapping Features Section */
.quick-cards-section {
  margin-top: -65px;
  position: relative;
  z-index: 10;
}

/* Hover effects for clean premium look */
.hover-card {
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease;
}
.hover-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08) !important;
}

/* Executive Committee Profile Cards */
.profile-card {
  border: none;
  background: #ffffff;
}
.profile-card .card-img-wrapper {
  overflow: hidden;
  border-top-left-radius: calc(var(--bs-card-border-radius) - 1px);
  border-top-right-radius: calc(var(--bs-card-border-radius) - 1px);
}
.profile-card img {
  height: 280px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.profile-card:hover img {
  transform: scale(1.04);
}

/* Scrollable Notice board list */
.notice-list {
  max-height: 380px;
  overflow-y: auto;
  padding-right: 5px;
}
.notice-item {
  border-left: 4px solid var(--accent-gold);
  border-bottom: 1px solid var(--border-light);
  padding: 1rem;
  transition: background-color 0.2s ease;
}
.notice-item:hover {
  background-color: #f1f5f9;
}

/* Scrollbar customization for notices */
.notice-list::-webkit-scrollbar {
  width: 6px;
}
.notice-list::-webkit-scrollbar-track {
  background: #f1f5f9;
}
.notice-list::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 3px;
}
.notice-list::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Interactive custom premium buttons */
.btn-gold {
  background-color: var(--accent-gold);
  color: #ffffff;
  border: none;
  font-weight: 500;
  padding: 0.6rem 1.6rem;
  transition: all 0.3s ease;
}
.btn-gold:hover {
  background-color: var(--accent-gold-hover);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(180, 83, 9, 0.2);
}
.btn-outline-gold {
  border: 2px solid var(--accent-gold);
  color: var(--accent-gold);
  background-color: transparent;
  font-weight: 500;
  padding: 0.6rem 1.6rem;
  transition: all 0.3s ease;
}
.btn-outline-gold:hover {
  background-color: var(--accent-gold);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(180, 83, 9, 0.15);
}

.hover-link-gold {
  transition: color 0.2s ease;
}
.hover-link-gold:hover {
  color: var(--accent-gold) !important;
}

.text{
 --bs-text-opacity: 1;
    color: rgb(255 255 255 / 75%) !important;
}