@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@500;600;700;800&display=swap');

:root {
  --primary: #0284c7;
  --primary-hover: #0369a1;
  --primary-light: #e0f2fe;
  --accent: #f59e0b;
  --bg-main: #f8fafc;
  --bg-card: #ffffff;
  --text-dark: #0f172a;
  --text-muted: #475569;
  --border-color: #e2e8f0;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --radius-md: 12px;
  --radius-lg: 16px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-main);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Header & Modern Navbar */
.site-header-modern {
  background: #ffffff;
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo-group {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.brand-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--primary-hover);
  letter-spacing: -0.02em;
}

.brand-tagline {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
}

.nav-links-desktop {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}

.nav-link-item a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.nav-link-item a:hover {
  color: var(--primary);
  background-color: var(--primary-light);
}

.nav-link-item a.btn-donate {
  background-color: var(--accent);
  color: #ffffff;
  padding: 0.55rem 1.25rem;
  border-radius: 9999px;
  box-shadow: var(--shadow-sm);
}

.nav-link-item a.btn-donate:hover {
  background-color: #d97706;
  color: #ffffff;
}

/* Sub-header Bar Placement (Under Navigation Menu) */
.sub-header-bar {
  background-color: var(--primary-light);
  border-top: 1px solid #bae6fd;
  border-bottom: 1px solid #bae6fd;
  padding: 0.6rem 1.5rem;
  text-align: center;
}

.sub-header-container p {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary-hover);
  letter-spacing: 0.01em;
}

/* Main Container */
.main-wrapper {
  max-width: 1100px;
  margin: 2.5rem auto;
  padding: 0 1.5rem;
}

/* Card Section Styles */
.hero-card {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.hero-card h1, .hero-card h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.hero-card p {
  font-size: 1.15rem;
  opacity: 0.95;
  max-width: 850px;
}

.section-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-md);
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
  margin-top: 0.5rem;
}

/* Table Clean Modern Styling */
.table-schedule-wrap {
  overflow-x: auto;
  margin: 1.5rem 0;
}

.table-schedule-wrap table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.table-schedule-wrap th {
  background-color: var(--primary-light);
  color: var(--primary-hover);
  font-weight: 700;
  padding: 0.85rem 1rem;
  border-bottom: 2px solid var(--primary);
}

.table-schedule-wrap td {
  padding: 1rem;
  border-bottom: 1px solid var(--border-color);
  vertical-align: top;
  font-size: 0.95rem;
}

.table-schedule-wrap tr:hover td {
  background-color: #f1f5f9;
}

/* Footer Styling */
.site-footer-modern {
  background: #0f172a;
  color: #94a3b8;
  padding: 2.5rem 1.5rem;
  text-align: center;
  font-size: 0.9rem;
  margin-top: 4rem;
}

.site-footer-modern a {
  color: #e2e8f0;
  text-decoration: none;
}
