.hero-section {
  background-image: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), url('background_photos/campus1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 80vh;
  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 BAR */

.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);
}

.button-label {
  position: absolute;
  bottom: 230px;
  left: 60px;
  color: white;
  font-size: 2.5rem;
  font-weight: 600;
  z-index: 2;
}

.join-btn {
  position: absolute;
  bottom: 155px;
  left: 60px;
  padding: 18px 30px;
  background: #e2e2e2;
  color: rgb(0, 0, 0);
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  transition: 0.3s;
}

.join-btn:hover {
  background: #0040c1;
}


/* SECTION */

.introduction-wrap,
.announcements-wrap,
.bottom-section {
  display: flex;
  justify-content: center;
  text-align: center;
  margin-top: 0px;
  padding-top: 60px;
  padding-bottom: 100px;

  font-family: poppins;
}

.announcements-wrap{
  color: white;
  background-color: #014f6eff;
  padding-top: 0px;
  padding-bottom: 150px;
}
.motivation{
margin-top: 0px;
font-size: 50px
}


.bottom-container {
  display: flex;
  justify-content: space-between;
  width: 80%;
  max-width: 1100px;
}

.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 for everything */
section, header {
  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/campus1.jpg');
  background-size: cover;
  background-position: center;
  height: 80vh;
  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);
}


/* HERO TEXT BUTTONS */
.button-label {
  position: absolute;
  bottom: 230px;
  left: 60px;
  color: white;
  font-size: 2.5rem;
  font-weight: 600;
  z-index: 2;
}

.join-btn {
  position: absolute;
  bottom: 155px;
  left: 60px;
  padding: 18px 30px;
  background: #ffffff;
  color: black;
  text-decoration: none;
  font-weight: bold;
  border-radius: 10px;
  transition: 0.3s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

.join-btn:hover {
  background: #0040c1;
  color: white;
}


/* ========== UNIVERSAL SECTION STYLING ========== */
.introduction-wrap,
.announcements-wrap,
.bottom-section {
  display: flex;
  justify-content: center;
  text-align: center;
  padding: 80px 0;
  font-family: Poppins;
}


/* ========== INTRODUCTION ========== */
#introduction {
  max-width: 1100px;

  /* Glass card effect */
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(6px);
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);

  transition: 0.3s ease;
}

#introduction:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.22);
}

.motivation {
  margin-top: 0;
  font-size: 50px;
  color: #014f6e;
  font-weight: 800;
}


/* ========== ANNOUNCEMENTS ========== */
.announcements-wrap {
  background-color: #014f6e;
  color: white;
  padding-top: 0;
  padding-bottom: 150px;
}

.announcements {
  max-width: 900px;

  /* elevated white-transparent card */
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.2);
  transition: 0.3s;
}

.announcements:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 35px rgba(0,0,0,0.25);
}


/* ========== BOTTOM SECTION ========== */
.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;
}
