:root {
  --brand: #2563eb;     /* Primary Blue */
  --brand-dark: #1e293b; /* Dark Slate */
  --accent: #10b981;    /* Success Green */
  --light-bg: #f8fafc;  /* Light Background */
  --text-dark: #111827; /* Default Text */
}

html, body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text-dark);
  background: var(--light-bg);
  margin: 0;
  padding: 0;
}

/* General Links */
a {
  text-decoration: none;
  color: inherit;
}

/* Buttons */
.btn-brand {
  background: var(--brand);
  border: none;
  color: #fff;
  transition: all 0.3s ease;
}
.btn-brand:hover {
  background: #1d4ed8;
}

.btn-outline-brand {
  border: 2px solid var(--brand);
  color: var(--brand);
  transition: all 0.3s ease;
}
.btn-outline-brand:hover {
  background: var(--brand);
  color: #fff;
}

/* Shadows & Rounding */
.shadow-soft {
  box-shadow: 0 6px 20px rgba(0,0,0,.08);
}
.rounded-2xl {
  border-radius: 1rem;
}

/* Hero Section */
.hero {
  background: linear-gradient(180deg, var(--light-bg), #ffffff);
  padding: 4rem 1rem;
}

/* Section Titles */
.section-title {
  position: relative;
  font-weight: 700;
  font-size: 1.75rem;
  color: var(--brand-dark);
  margin-bottom: 1.5rem;
}
.section-title .underline {
  position: relative;
  display: inline-block;
}
.section-title .underline::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.25rem;
  height: 5px;
  background: var(--brand);
  opacity: 0.35;
  border-radius: 999px;
}

/* Gallery */
.gallery img {
  object-fit: cover;
  height: 220px;
  width: 320px;
  transition: transform 0.3s ease;
}
.gallery img:hover {
  transform: scale(1.05);
}

/* CTA Section */
.bg-cta {
  background-image: url('assets/images/hero-discussion.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 4rem 1rem;
  color: #fff;
}
.bg-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(30, 41, 59, 0.65); /* Dark overlay */
}
.bg-cta > .container {
  position: relative;
  z-index: 1;
}

/* Badges */
.badge-date {
  background: #e0f2fe;
  color: var(--brand);
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
}

/* Logo */
.logo-img {
  width: 120px;
  height: auto;
  object-fit: contain;
}


/* Footer */
.footer {
  background: var(--brand-dark);
  color: #f9fafb;
}
.footer-title {
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}
.footer-links li {
  margin: 0.5rem 0;
}
.footer-links a {
  color: #f3f4f6;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}
.footer-links a:hover {
  color: var(--accent);
}
.social-links a {
  color: #f9fafb;
  transition: color 0.3s ease;
}
.social-links a:hover {
  color: var(--brand);
}
