/* ============================================
   GLOBAL RESET & BASE
============================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
  background: #ffffff;
}

a {
  color: #2563eb;
  font-weight: 500;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ============================================
   NAVBAR
============================================ */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background: #0e1722;
  color: white;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.globe-icon {
  width: 60px;
}

.logo span {
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.5px;
}

.navbar nav a {
  color: white;
  margin-left: 30px;
  font-size: 15px;
  opacity: 0.85;
  transition: opacity 0.25s ease;
}

.navbar nav a:hover {
  opacity: 1;
}

.navbar nav a.active {
  border-bottom: 2px solid white;
  padding-bottom: 6px;
}

/* ============================================
   HERO SECTION
============================================ */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px 70px;
  background: radial-gradient(circle at top, #1a2a3a, #0c131d);
  color: white;
}

.hero-text {
  max-width: 55%;
}

.hero-box {
  border: 3px solid white;
  padding: 25px 35px;
  display: inline-block;
  margin-bottom: 25px;
}

.hero-box h1 {
  font-size: 42px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-text p {
  font-size: 18px;
  margin-bottom: 25px;
  opacity: 0.9;
}

.hero-logo {
  width: 450px;
  border-radius: 50%;
  box-shadow: 0 0 25px rgba(255,255,255,0.25);
}

/* ============================================
   BUTTONS
============================================ */
.btn {
  display: inline-block;
  padding: 14px 28px;
  background: #3f8f45;
  color: white;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.25s ease;
}

.btn:hover {
  background: #2f6f35;
}

.cta-button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 28px;
  background: #f4a261;
  color: white;
  font-weight: 600;
  border-radius: 30px;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: #e76f51;
}

/* ============================================
   PAGE HEADER
============================================ */
.page-header {
  padding: 80px 40px;
  text-align: center;
  background: radial-gradient(circle at top, #1a2a3a, #0c131d);
  color: white;
}

.page-header h1 {
  font-size: 46px;
  margin-bottom: 15px;
}

.page-header p {
  max-width: 750px;
  margin: auto;
  font-size: 18px;
  opacity: 0.85;
}

/* ============================================
   CONTAINER
============================================ */
.container {
  width: 85%;
  max-width: 1100px;
  margin: auto;
  padding: 60px 0;
}

.feature-banner {
  display: flex;
  flex-direction: column;          /* ⬅️ stack everything vertically */
  align-items: flex-start;         /* keep text left aligned */
  gap: 12px;

  background: linear-gradient(135deg, #eef3ff, #ffffff);
  padding: 20px;
  border-radius: 12px;
  margin-top: 25px;
  border: 1px solid #dbe6ff;
}

/* Text */
.feature-text h3 {
  margin-bottom: 5px;
  font-size: 18px;
  color: #1b4fa3;
}

.feature-text p {
  font-size: 14px;
  color: #444;
}

/* Button */
.feature-button {
  background: #1b4fa3;
  color: white;
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;

  align-self: flex-start;          /* ⬅️ keeps it aligned with text */
  transition: background 0.2s ease, transform 0.1s ease;
}

.feature-button:hover {
  background: #0f2f6b;
  transform: translateY(-1px);
}

/* ============================================
   ACADEMIC SUCCESS CENTER (SAGE 🌿)
============================================ */

.academic-section {
  background-color: #e6f4ea;
  border-left: 6px solid #6b8f71;
  padding: 60px 12%;
  border-radius: 10px;
  margin-top: 30px;
}

/* GRID (NO GREY BACKGROUND ❌) */
.resource-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

/* CARDS */
.resource-card {
  background: white;
  padding: 15px;
  border-radius: 10px;

  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

/* TEXT */
.resource-card h2 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px;
  color: #1b5e3c;
}

.resource-card p {
  font-size: 14px;
  color: #444;
}

.resource-card details summary {
  font-size: 14px;
  cursor: pointer;
  margin-top: 6px;
}

/* LINKS */
.resource-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 14px;
  text-decoration: none;
  color: #1b5e3c;
  font-weight: 500;
}

.resource-link:hover {
  text-decoration: underline;
}


/* ============================================
   ACADEMIC INTEGRITY (BLUE 💙)
============================================ */

.academic-integrity-section {
  background-color: #eef3ff;
  border-left: 6px solid #1b4fa3;
  padding: 60px 12%;
  border-radius: 10px;
  margin-top: 30px;
   margin-bottom: 30px;
}

.integrity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.integrity-card {
  background: white;
  padding: 15px;
  border-radius: 10px;

  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.integrity-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

.integrity-card h4 {
  font-size: 16px;
  font-weight: 500;
  color: #1b4fa3;
  margin-bottom: 8px;
}

.integrity-card p {
  font-size: 14px;
  color: #444;
}


/* ============================================
   ON-CAMPUS EMPLOYMENT (SAGE 🌿)
============================================ */

.employment-section {
  background-color: #e6f4ea;
  border-left: 6px solid #6b8f71;
  padding: 60px 12%;
  border-radius: 10px;
  margin-top: 30px;
}

.employment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.employment-card {
  background: white;
  padding: 18px;
  border-radius: 10px;

  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.employment-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

/* TEXT MATCH */
.employment-card h3 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
  color: #1b5e3c;
}

.employment-card ul,
.employment-card ol {
  padding-left: 18px;
  font-size: 14px;
  color: #444;
}

.employment-card li {
  margin-bottom: 6px;
}

.employment-note {
  font-size: 12px;
  color: #666;
  margin-top: 8px;
}

/* WARNING CARD */
.warning-card {
  background: #fff5f5;
  border: 1px solid #f5c2c2;
}

.warning-card h3 {
  color: #c62828;
}

.warning-card ul {
  color: #a94442;
}
/* ============================================
   LIFE / WELLNESS SECTION
============================================ */
.life-section {
  padding: 100px 12%;
}

/* Counseling Section (SAGE 🌿) */
section.counseling-block {
  background-color: #dfe8e1; /* sage */
  border-left: 6px solid #6b8f71;
  border-radius: 10px;
  padding: 60px 12%;
   margin-top: 30px;

}

/* Engagement Section (WARM BEIGE ☕) */
section.engagement-block {
  background-color: #d6c2ab; /* bolder beige */
  border-left: 6px solid #b89a7f;
  border-radius: 10px;
  padding: 60px 12%;
    margin-top: 30px;
}

/* Text styling */
.life-text {
  max-width: 800px;
}

.life-text h2 {
  font-size: 34px;
  margin-bottom: 15px;
}

.life-text p {
  font-size: 17px;
  margin-bottom: 18px;
  opacity: 0.9;
}


/* ============================================
   COMMUNITY SECTION (CULTURAL ORGS)
============================================ */
.community-section {
  background-color: #dfe8e1;
   border-left: 6px solid #6b8f71;
  padding: 60px 12%;
  border-radius: 10px;
  margin-top: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

/* Grid layout */
.org-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

/* Cards */
.org-card {
  background: white;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

/* Hover pop-up effect */
.org-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Card title */
.org-card h4 {
  color: #1b4fa3;
  margin-bottom: 8px;
  transition: color 0.2s ease;
}

/* Title hover effect */
.org-card:hover h4 {
  color: #0f2f6b;
}

/* Tip box */
.community-box {
  background-color: #f0f6ff;
  padding: 12px;
  border-left: 4px solid #1b4fa3;
  margin-top: 20px;
  border-radius: 5px;
}

.center-text {
  text-align: center;
  margin: 0 auto;
}
/* ============================================
   UCIE SECTION
============================================ */

section.ucie-section {
  background-color: #eef3ff;
  border-left: 6px solid #1b4fa3;
  padding: 60px 12%;
  border-radius: 10px;
  margin-top: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
/* Intro */
 .ucie-intro {
   max-width: 800px;
   margin: 0 auto 25px auto;  /* THIS centers the whole block */
   text-align: center;
   font-size: 16px;
   line-height: 1.6;
   color: #444;
 }

/* Grid  */
.ucie-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
}

/* Cards  */
.ucie-card {
  background: rgba(255, 255, 255, 0.7); /* softer than pure white */
  padding: 15px;
  border-radius: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Subtle hover */
.ucie-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.08);
}

/* Typography  */
.ucie-card h4 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
  color: #1b4fa3;
}

.ucie-card p {
  font-size: 14px;
  color: #444;
}

/* Tip box (reuse same style as community) */
.ucie-box {
  background-color: #f0f6ff;
  padding: 12px;
  border-left: 4px solid #1b4fa3;
  margin-top: 20px;
  border-radius: 5px;
}

/* ============================================
   PAC SECTIONS
============================================ */
.pac-intro {
  background: #e6f4ea;
  border-left: 6px solid #6b8f71;
  padding: 60px 12%;
  border-radius: 10px;
  margin-top: 30px;
  text-align: center;
}

.pac-support h2 {
  text-align: center;
  margin-bottom: 40px;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.support-card {
  background: white;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.support-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.08);
}

/* ============================================
   PAC CTA
============================================ */
.pac-cta {
  background: #ffe8d6;
  color: #0e1722;
  text-align: center;
  padding: 70px 20px;
}

/* ============================================
   VIDEO
============================================ */
.pac-video {
  padding: 90px 12%;
  background: radial-gradient(circle at top, #1a2a3a, #0c131d);
  color: white;
  text-align: center;
}

.video-wrapper {
  position: relative;
  max-width: 800px;
  margin: 30px auto;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

.video-wrapper iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

/* ============================================
   TAG LABELS
============================================ */
.tag {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.6px;
  margin-top: 6px;
  display: inline-block;
  border-bottom: 2px solid currentColor;
  padding-bottom: 2px;
}

.tag.mindset { color: #5a4fcf; }
.tag.planning { color: #c96a3d; }
.tag.skills { color: #1f7a73; }
.tag.academic { color: #1f4e8c; }
.tag.tutoring { color: #b94a3c; }
.tag.wellness { color: #2f7a5f; }

/* ============================================
   RESOURCE SECTIONS
============================================ */
.resource-section {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
}

.resource-section h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.resource-block {
  background: #f5f7ff;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 10px;
  transition: transform 0.2s ease;
}

.resource-block:hover {
  transform: translateY(-3px);
}
.resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;

    max-width: 1200px;   /* keeps content from stretching too wide */
    margin: 0 auto;      /* centers the whole grid */
    padding: 20px;
}
/* ============================================
   FINANCIAL SECTION
============================================ */
.financial-section {
 background-color: #e6f4ea;
  border-left: 6px solid #6b8f71;
  padding: 60px 12%;
  border-radius: 10px;
  margin-top: 30px;
}

.resource-section {
    background-color: #e6f0ea;  /* soft sage */
    padding: 40px 20px;
    border-radius: 16px;
    margin: 40px auto;
    max-width: 1100px;
}
/* ============================================
   BACK TO TOP BUTTON
============================================ */
#topBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 10px 15px;
  border: none;
  background: #6a8f7b;
  color: white;
  cursor: pointer;
  border-radius: 6px;
}

/* ============================================
   FOOTER
============================================ */
.site-footer {
  background-color: #0f1f2e;
  color: white;
  text-align: center;
  padding: 25px 15px;
  margin-top: 60px;
  font-size: 0.9rem;
}

/* ============================================
   RESPONSIVE DESIGN
============================================ */
@media (max-width: 900px) {

  .navbar {
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    text-align: center;
  }

  .navbar nav a {
    margin: 10px;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    padding: 60px 25px;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-logo {
    margin-top: 40px;
    width: 220px;
  }

  .page-header h1 {
    font-size: 34px;
  }
