/* Home page wrapper */
.home-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 2.5rem 1.25rem;
  background: rgba(2, 6, 23, 0.92);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.9);
}
 /* Added this for pargraph color */
.home-page p {
  color: #d1d5db;
}

/* Hero */
.hero {
  padding-bottom: 1.5rem;
}

.hero-title {
  font-size: 1.9rem;
  margin-bottom: 0.6rem;
}

.hero-subtitle {
  font-size: 1rem;
  max-width: 52rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.1rem 0 0.75rem 0;
}

.hero-note {
  font-size: 0.95rem;
  max-width: 48rem;
  color: #9ca3af;
}

/* Buttons (can reuse across site if you like) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.3rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #0ea5e9, #22c55e);
  color: #0b1120;
  box-shadow: 0 10px 25px rgba(8, 47, 73, 0.9);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 15px 35px rgba(8, 47, 73, 0.95);
}

.btn-outline {
  background: transparent;
  color: #8de2f7;
  border-color: rgba(148, 163, 184, 0.65);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background: rgba(15, 23, 42, 0.7);
  border-color: #0ea5e9;
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(148, 163, 184, 0.6);
  color: #e5e7eb;
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: rgba(15, 23, 42, 0.9);
}

/* Sections */
.home-section {
  margin-top: 1.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(148, 163, 184, 0.35);
}

.section-title {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}

/* Bottom nav arrow */
.page-nav {
  margin-top: 2rem;
  display: flex;
  justify-content: flex-end;
}

.page-nav a img {
  max-width: 48px;
  height: auto;
}

/* Responsive tweaks */
@media (max-width: 640px) {
  .home-page {
    padding: 1.2rem 0.9rem 2rem 0.9rem;
  }

  .hero-title {
    font-size: 1.6rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

    .btn {
      width: 100%;
    }
  }  /* <-- closes @media (max-width: 640px) */


/* ===== MyWebUniversity Top Nav / Hamburger (Enhanced Desktop Look) ===== */



/* ===== MyWebUniversity Top Nav / Hamburger (Enhanced Desktop Look) ===== */

.mwu-header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.5rem;
  background: radial-gradient(circle at top, #1f2937 0, #050818 55%, #020617 100%);
  color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(148, 163, 184, 0.3);
}

.mwu-header-inner {
  width: 100%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* If you didn't have .mwu-header-inner before, you can keep using .mwu-header directly.
   Otherwise, adjust your HTML to wrap the logo + nav in this container. */
/*
.mwu-logo {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: #e5e7eb;
  text-decoration: none;
}
*/
/* Nav-bar logo container */
.mwu-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 0;
  background: none;
}

/* Actual logo image in the navbar */
.mwu-logo img {
  height: 25px;   /* N2 size you picked */
  width: auto;
  display: block;
}

/* Desktop nav container */
.mwu-nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Desktop menu items: pill buttons with subtle glow */
.mwu-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #e5e7eb;
  text-decoration: none;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.85),
    rgba(30, 64, 175, 0.85)
  );
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.0);
  transition:
    background 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease;
}

.mwu-nav a:hover {
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.95),
    rgba(129, 230, 217, 0.95)
  );
  color: #020617;
  transform: translateY(-1px);
  border-color: rgba(56, 189, 248, 0.9);
  box-shadow: 0 6px 18px rgba(8, 47, 73, 0.65);
}

/* Optional: "active" or current page style */
.mwu-nav a.mwu-active {
  background: linear-gradient(
    135deg,
    rgba(56, 189, 248, 0.95),
    rgba(129, 230, 217, 0.95)
  );
  color: #020617;
  border-color: rgba(56, 189, 248, 1);
}


/* Hamburger button (mobile only) */
.mwu-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 32px;
  height: 32px;
  background: transparent;
  border: 1px solid #ffffff55;
  border-radius: 4px;
  cursor: pointer;
  padding: 4px;
}

.mwu-menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: #ffffff;
}

/* Mobile styles */
@media (max-width: 768px) {
  .mwu-nav {
    position: absolute;
    top: 60px;
    right: 0;
    left: 0;
    background: #050818;
    flex-direction: column;
    align-items: flex-start;
    padding: 0.75rem 1.5rem;
    gap: 0.75rem;
    display: none;
  }

  .mwu-nav.mwu-nav-open {
    display: flex;
  }

  .mwu-menu-toggle {
    display: flex;
  }
}


/* ----- Header banner sizing override ----- */
.img_header {
  max-height: 80px;   /* try 80px; lower to 180 or 160 if you want smaller */
  width: 100%;
  height: auto;
  object-fit: contain; /* keep whole text visible without cropping */
  display: block;
  margin: 0 auto;
}
