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

:root {
  --bg-dark: #071322;
  --bg-darker: #040c17;
  --bg-card: rgba(10, 27, 49, 0.78);
  --bg-card-hover: rgba(14, 38, 70, 0.88);
  --primary-cyan: #00e5ff;
  --sky-blue: #38bdf8;
  --accent-gold: #d4af37;
  --emerald: #10b981;
  --text-white: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --border-glass: rgba(0, 229, 255, 0.18);
  --border-gold: rgba(212, 175, 55, 0.35);
  --glow-cyan: 0 0 30px rgba(0, 229, 255, 0.22);
  --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-white);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

/* Subtle ambient radial gradient glows */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 20%;
  width: 60vw;
  height: 50vh;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--text-white);
  line-height: 1.25;
}

a {
  color: var(--primary-cyan);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: #fff;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  background: rgba(7, 19, 34, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-glass);
  z-index: 1000;
  transition: var(--transition);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  text-decoration: none;
}

.logo-container img {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(0, 229, 255, 0.35));
  transition: var(--transition);
}

.logo-container:hover img {
  transform: scale(1.08) rotate(3deg);
  filter: drop-shadow(0 0 16px rgba(0, 229, 255, 0.6));
}

.logo-text {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--text-white);
}

.logo-text span {
  color: var(--primary-cyan);
}

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

.nav-links a {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.3px;
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-cyan);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-cyan), var(--sky-blue));
  transition: var(--transition);
  border-radius: 2px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.btn-nav {
  padding: 0.6rem 1.4rem;
  background: rgba(0, 229, 255, 0.12);
  border: 1px solid var(--primary-cyan);
  border-radius: 50px;
  color: var(--primary-cyan) !important;
  font-weight: 600 !important;
  transition: var(--transition);
}

.btn-nav:hover {
  background: var(--primary-cyan);
  color: var(--bg-dark) !important;
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 5% 80px 5%;
  background: linear-gradient(180deg, rgba(7, 19, 34, 0.65) 0%, rgba(7, 19, 34, 0.92) 85%, var(--bg-dark) 100%),
              url('hero_bg.jpg') center/cover no-repeat;
  text-align: center;
  z-index: 1;
}

.hero-content {
  max-width: 960px;
  margin: 0 auto;
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.2rem;
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.3);
  border-radius: 50px;
  color: var(--primary-cyan);
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.8rem;
  backdrop-filter: blur(8px);
}

.headline {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 1.4rem;
  background: linear-gradient(135deg, #ffffff 40%, var(--primary-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subhead {
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 300;
  color: var(--text-muted);
  max-width: 820px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 2.2rem;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-cyan), #00b4d8);
  color: #04101e;
  border: none;
  box-shadow: 0 10px 25px rgba(0, 229, 255, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(0, 229, 255, 0.55);
  color: #000;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--primary-cyan);
  color: var(--primary-cyan);
  transform: translateY(-3px);
}

/* Sections */
section {
  position: relative;
  z-index: 1;
  padding: 6rem 5%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1.2rem;
  letter-spacing: -0.5px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.15rem;
  line-height: 1.8;
}

/* Glass Cards */
.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 2.5rem;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
}

.glass-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(0, 229, 255, 0.4);
  transform: translateY(-5px);
  box-shadow: var(--glow-cyan);
}

/* 2-Column Split Showcase */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.image-showcase {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
  border: 1px solid var(--border-glass);
}

.image-showcase img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.image-showcase:hover img {
  transform: scale(1.04);
}

.image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(0deg, rgba(4, 12, 23, 0.95) 0%, transparent 100%);
  color: var(--text-white);
  font-size: 0.95rem;
}

/* Commitments Grid */
.commitments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.commitment-item {
  display: flex;
  gap: 1.2rem;
  padding: 1.8rem;
  background: rgba(10, 27, 49, 0.6);
  border: 1px solid rgba(0, 229, 255, 0.12);
  border-radius: 16px;
  transition: var(--transition);
}

.commitment-item:hover {
  background: rgba(14, 38, 70, 0.85);
  border-color: var(--primary-cyan);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 229, 255, 0.15);
}

.commitment-num {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-cyan);
  line-height: 1;
}

.commitment-text h4 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
  color: var(--text-white);
}

.commitment-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Minister Showcase */
.minister-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
  padding: 3.5rem 2.5rem;
  background: linear-gradient(180deg, rgba(14, 38, 70, 0.7) 0%, rgba(7, 19, 34, 0.95) 100%);
  border: 1px solid rgba(0, 229, 255, 0.3);
  border-radius: 26px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.minister-seal {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  object-fit: contain;
  margin-bottom: 1.8rem;
  filter: drop-shadow(0 10px 25px rgba(0, 229, 255, 0.35));
  transition: var(--transition);
}

.minister-seal:hover {
  transform: scale(1.06) rotate(3deg);
  filter: drop-shadow(0 15px 35px rgba(0, 229, 255, 0.55));
}

.minister-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-white);
  text-transform: lowercase;
  margin-bottom: 0.4rem;
  letter-spacing: -0.5px;
}

.minister-role {
  color: var(--primary-cyan);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1.2rem;
}

.minister-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.2rem;
  width: 100%;
}

/* Footer */
footer {
  background: var(--bg-darker);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 4rem 5% 2.5rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.footer-member-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  margin: 0 auto 2.5rem;
  max-width: 300px;
}

.footer-member-badge img {
  max-width: 150px;
  max-height: 130px;
  opacity: 0.88;
  transition: var(--transition);
}

.footer-member-badge:hover img {
  opacity: 1;
  transform: scale(1.06);
}

.footer-member-text {
  color: var(--accent-gold);
  font-size: 0.85rem;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-top: 0.9rem;
}

.footer-copy {
  color: var(--text-dim);
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 960px) {
  .split-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .nav-links {
    display: none; /* simple mobile fallback or toggle */
  }
  .headline {
    font-size: 2.6rem;
  }
}
