.hero-section {
  background-image: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), url('background_photos/campus2.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 50vh;
  position: relative;
  font-family: Poppins;
}

.navbar {
  display: flex;
  align-items: center;
  padding: 20px 50px;
  gap: 20px;
}

.hamburger {
  display: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}



/* LOGO SECTION */

.logo-group {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo {
  width: 110px;
}

.logo-label {
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
  line-height: 1.4rem;
}

.logo-label2 {
  font-size: 1.5rem;
  font-weight: 800;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  margin-left: auto;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-weight: 600;
  padding: 8px 14px;
  transition: 0.3s ease-in-out;
  border-radius: 4px;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.2);
}

.contact-btn {
  background: #014f6eff(76, 118, 255, 1);
  background-color: #014f6eff;
  padding: 10px 22px;
  border-radius: 20px;
  font-weight: 700;
}

.contact-btn:hover {
  background: rgba(255, 255, 255, 0.4);
}


/* MAIN TITLE */

.button-label {
  position: absolute;      
  top: 70%;                
  left: 50%;               
  transform: translate(-50%, -50%); 
  color: white;
  font-size: 6rem;
  font-weight: 600;
  text-align: center;
}




/* MISSION VISION STATEMENTS */

.mission-section {
  display: flex;
  justify-content: center;
  text-align: center;
  padding: 400px 20px;
  padding-bottom: 0px;
  font-family: poppins;
}

.mission-container{
  display: flex;
  justify-content: space-between;
  width: 80%;
  max-width: 1100px;
  gap: 10%
}

.mission-box {
  width: 48%;
  text-align: left;
}


.meet-title{
  text-align: center;
  padding-top: 100px;
  padding-bottom: 0px;
  font-size: 35px;
}


/* INDIVIDUAL SECTION */

.individual-section {
  display: flex;
  justify-content: center;
  text-align: center;
  padding-top: 0px;
  padding-bottom: 100px;
  font-family: poppins;
}

.individual-container{
  display: flex;
  justify-content: space-between;
  gap: 60px;
  width: 80%;
  max-width: 1100px;
}


.individual-box {
  width: 48%;
  text-align: left;
}



/* IMAGES */

.lindsey-individual{
  width: 150px;
  height: auto;
  box-shadow: 10px 10px 5px #aaaaaa;
}

.yukai-individual{
  width: 150px;
  height: auto;
  box-shadow: 10px 10px 5px #aaaaaa;
}

.jonas-individual{
  width: 150px;
  height: 170px;
  box-shadow: 10px 10px 5px #aaaaaa;
  object-fit: cover;
  object-position: center;
}


/* FOOT NOTES */

.bottom-section {
  display: flex;
  justify-content: center;
  text-align: center;
  padding: 0px 20px;
  font-family: poppins;
}

.bottom-container {
  display: flex;
  justify-content: space-between;
  width: 80%;
  max-width: 1100px;
  padding-bottom: 50px;
}

.bottom-box {
  width: 48%;
  text-align: left;
}

.bottom-box h2 {
  margin-bottom: 10px;
}





















/* UPDATED */


/* ========== GLOBAL PAGE STYLE ========== */
body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #e8f4ff, #ffffff);
  color: #222;
  line-height: 1.7;
  overflow-x: hidden;
}

/* Fade-in animation */
section, header, .mission-box, .individual-box {
  animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* ========== HERO SECTION ========== */
.hero-section {
  background-image: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), 
                    url('background_photos/campus2.jpg');
  background-size: cover;
  background-position: center;
  height: 50vh;
  position: relative;
  font-family: Poppins;
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}


/* ========== NAVBAR ========== */
.navbar {
  display: flex;
  align-items: center;
  padding: 20px 50px;
  gap: 20px;
}

.hamburger {
  display: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}


/* LOGO GROUP */
.logo-group {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo {
  width: 110px;
}

.logo-label {
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
  line-height: 1.4rem;
}

.logo-label2 {
  font-size: 1.5rem;
  font-weight: 800;
}

/* NAV LINKS */
.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  margin-left: auto;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 6px;
  transition: 0.3s ease;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* CONTACT BUTTON */
.contact-btn {
  background-color: #014f6e;
  padding: 10px 22px;
  border-radius: 20px;
  font-weight: 700;
  transition: 0.3s ease;
}

.contact-btn:hover {
  background: rgba(255,255,255,0.4);
}


/* ========== PAGE TITLE (About Us) ========== */
.button-label {
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 5rem;
  font-weight: 700;
  text-align: center;
  text-shadow: 0 8px 25px rgba(0,0,0,0.55);
}



/* ============================
   MISSION & VISION SECTION
   ============================ */
.mission-section {
  display: flex;
  justify-content: center;
  padding: 160px 20px 60px;
}

.mission-container {
  display: flex;
  justify-content: space-between;
  width: 85%;
  max-width: 1200px;
  gap: 40px;
}

/* GLASS BOXES */
.mission-box {
  flex: 1;
  background: rgba(255,255,255,0.85);
  padding: 40px;
  border-radius: 22px
}



.bottom-container {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  width: 85%;
  max-width: 1100px;
}

.bottom-box {
  flex: 1;
  min-width: 300px;
  text-align: left;

  /* glass cards match style */
  background: rgba(255,255,255,0.85);
  padding: 35px;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  backdrop-filter: blur(6px);
  transition: 0.3s ease;
}

.bottom-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 38px rgba(0,0,0,0.24);
}

.bottom-box h2 {
  margin-bottom: 10px;
  color: #014f6e;
}