
:root {
  --blue: #4f7ea8;
  --blue-dark: #294f73;
  --yellow: #ffc928;
  --bg-light: #f5f7fb;
  --text-main: #1f2933;
  --text-muted: #6b7280;
  --card-bg: #ffffff;
  --border-soft: #e5e7eb;
  --radius-lg: 16px;
  --radius-xl: 20px;
}

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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--text-main);
  background-color: #e5e7eb;
  line-height: 1.5;
}

/* Main page wrapper */
.page {
  max-width: 1120px;
  margin: 0 auto;
  background: #ffffff;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.18);
  border-radius: 0 0 18px 18px;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Layout helpers */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px; /* increased horizontal padding for visual comfort */
}

/* Top navigation */
header {
  background: var(--blue);
  color: #f9fafb;
  position: sticky;
  top: 0;
  z-index: 999;
}


.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  flex-wrap: nowrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-icon {
  width: 80px;
  height: 80px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  margin-left: 15px;   /* move left */
}

  /* REMOVE background */
  /* background: radial-gradient(circle at 30% 30%, #53c1ff, #0f75c8); */


/* REMOVE the stripe overlay */
.brand-icon::before {
  /* content: ""; */
  /* width: 140%; */
  /* height: 140%; */
  /* position: absolute; */
  /* background: repeating-linear-gradient(...); */
  /* top: 55%; */
  /* left: -10%; */
  /* border-radius: 50%; */
}
  
.brand-icon img {
  width: 130%;
  height: 130%;
  object-fit: contain; /* keeps your logo sharp */
  display: block;
}



.brand-text-title {
  font-weight: 700;
  font-size: 18px;
  white-space: nowrap;
}

.brand-text-sub {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.9;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  flex-shrink: 0;
}

.nav-links a {
  font-weight: 500;
  opacity: 0.9;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-shop {
  background: var(--yellow);
  color: #111827;
  padding: 9px 18px;
  border-radius: 4px;
  font-weight: 600;
  border: none;
  text-decoration: none;


}

/* Hero */
.hero {
  background-image: url("20251029-MVV_6747 (2).jpg");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;




}


.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.35),
    rgba(0, 0, 0, 0.4)
  );
}

.hero-inner {
  position: relative;
  padding: 70px 32px; /* adds horizontal space in banner */
}

.hero-title {
  font-size: clamp(46px, 5vw, 52px);
  font-weight: 900;
  text-transform: uppercase;
  max-width: 18ch;
  line-height: 1.25;
  letter-spacing: 0.06em;
}

.hero-cta {
  margin-top: 22px;
}

.btn-join {
  width: 260px;
  display: inline-block;
  text-align: center;
  padding: 12px 24px;
  background: var(--yellow);
  color: #111827;
  font-weight: 600;
  border-radius: 4px;
  border: none;
  cursor: not-allowed;
  opacity: 0.7;
  pointer-events: none;
}

/* Generic sections */
section {
  padding: 72px 0;
}

.section-label {
  color: #0891b2;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 10px;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 22px;
}

.section-lead {
  max-width: 650px;
  color: var(--text-muted);
  margin-bottom: 30px;
  font-size: 15px;
}

/* Story section */
#story {
  background: #ffffff;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.4fr);
  gap: 40px;
  align-items: start;
}

.story-block h3 {
  font-size: 16px;
  margin-bottom: 6px;
  font-weight: 700;
}

.story-block p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.story-images {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.story-images img {
  width: 100%;
  border-radius: var(--radius-xl);
  object-fit: cover;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.15);
}

/* Programs */
#programs {
  background: var(--bg-light);
}

.programs-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.program-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 12px 12px 18px;
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.program-card img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  height: 150px;
  margin-bottom: 12px;
}

.program-tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.program-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}

.program-text {
  font-size: 13px;
  color: var(--text-muted);
}

/* Blog */
#blog {
  background: #ffffff;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 12px;
}

.blog-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  padding: 16px 18px;
  background: #ffffff;
}

.blog-meta {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.blog-title {
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 15px;
}

.blog-text {
  font-size: 13px;
  color: var(--text-muted);
}

/* Support */
#support {
  background: var(--bg-light);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 16px;
}

.support-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 18px;
  border: 1px solid var(--border-soft);
}

.support-title {
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 15px;
}

.support-text {
  font-size: 13px;
  color: var(--text-muted);
}

/* Footer */
footer {
  border-top: 1px solid #e5e7eb;
  padding: 18px 0;
  font-size: 12px;
  color: var(--text-muted);
  background: #ffffff;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 32px; /* footer aligned too */
}

.footer-links {
  display: flex;
  gap: 18px;
  font-size: 12px;
}

.footer-links a {
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--blue-dark);
}

/* Responsive */
@media (max-width: 900px) {
  .nav-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .programs-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .support-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .story-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .programs-cards,
  .blog-grid,
  .support-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-inner {
    padding: 60px 24px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* smooth scroll */
html {
  scroll-behavior: smooth;
}


