/* =========================
   Base styles
========================= */
body {
  background-color: #2c388a;
  font-family: 'Roboto', 'Inter', sans-serif;
}

p {
  font-size: 105%;
  line-height: 1.4;
}

h1 {
  font-size: 2.2rem;
}

/* =========================
   Navbar
========================= */
.navbar-brand span {
  color: #fff;
}

.navbar-nav .nav-link {
  color: #fff !important;
  font-weight: 500;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 5px;
  margin-right: 1rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #ffcc00; /* EU Yellow */
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #ffcc00 !important;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

.navbar-nav .nav-link.active {
  color: #ffcc00 !important;
  font-weight: 600;
}

.nav-item img {
  filter: brightness(0) invert(1); /* Invert black icons to white */
}

/* =========================
   Taglines
========================= */
.tagline {
  padding-bottom: 0.8rem;
}

.sub-tagline {
  font-size: 1.25rem;
}

/* =========================
   Footer
========================= */
.footer-logo {
  max-height: 88px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* =========================
   Team page
========================= */
.team-card {
  background-color: rgba(255, 255, 255, 0.05); /* subtle transparent background */
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.team-card h5 {
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.team-card p {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Partner list styling */
.partner-list {
  list-style: none; /* remove default bullets */
  padding-left: 0;
  margin-top: 1rem;
}

.partner-list li {
  margin-bottom: 0.75rem; /* spacing between items */
  position: relative;
  padding-left: 1.5rem;
}

.partner-list li::before {
  content: "•"; /* custom bullet */
  position: absolute;
  left: 0;
  top: 0;
  color: #FFCC00; /* EU yellow bullet */
  font-size: 1.2rem;
  line-height: 1.2;
}

.partner-list a {
  color: #FFCC00; /* keep your orange/yellow links */
  text-decoration: none;
  font-weight: 500;
}

.partner-list a:hover {
  text-decoration: underline;
}
