/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Lato', sans-serif;
  background: #000;
  color: #FAFAFA;
  scroll-behavior: smooth;
  overflow-x: hidden;
  position: relative;
}

/* Sky Canvas */
#starCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #000;
  z-index: -10;
  pointer-events: none;
}

/* Aurora Effect */
.aurora {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(0, 255, 255, 0.07), transparent 80%);
  animation: auroraMove 8s infinite alternate;
  z-index: -9;
}

@keyframes auroraMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(15px, -20px); }
}

/* Moon */
.moon {
  position: fixed;
  top: 9%;
  left: 80%;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle at 20% 50%, #fff 40%, transparent 60%);
  border-radius: 50%;
  box-shadow: inset -20px 0 40px rgba(0, 0, 0, 0.9), 0 0 20px rgba(255, 255, 255, 0.3);
  z-index: 1;
  pointer-events: none;
  transition: top 0.3s ease-out;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  z-index: 1000;
  backdrop-filter: blur(8px);
}

.logo {
  font-weight: bold;
  font-size: 1.4rem;
  color: #E17888;
}

.hamburger {
  font-size: 2rem;
  cursor: pointer;
  color: white;
  display: none;
}

.nav-dropdown {
  display: flex;
  gap: 1rem;
}

.nav-dropdown a {
  color: #FAFAFA;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-dropdown a:hover {
  color: #E17888;
}

/* Responsive Navbar */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-dropdown {
    display: none;
    flex-direction: column;
    background-color: #1a1a1a;
    position: absolute;
    top: 60px;
    right: 20px;
    border-radius: 10px;
    padding: 1rem;
  }

  .nav-dropdown.show {
    display: flex;
  }
}

/* Header */
.header-image {
  padding-top: 100px;
  text-align: center;
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}


.parallax-img {
  width: 90%;
  max-width: 960px;
  border-radius: 25px;
  box-shadow: 0 0 40px rgba(225, 120, 136, 0.25);
  transition: transform 0.2s ease;
  margin: 0 auto;
  display: block;
}


/* Section Cards */
.section.card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  margin: 3rem auto;
  padding: 2rem;
  width: 90%;
  max-width: 900px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.3);
  text-align: center;
  position: relative;
  z-index: 2;
}

h2 {
  font-size: 2rem;
  color: #E17888;
  margin-bottom: 1rem;
}

/* Mission */
.mission-bg {
  background: url('images/crescent patterns.jpg') center center/cover no-repeat;
  border-radius: 20px;
  color: #FAFAFA;
}

.overlay-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.mission-box {
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 1.5rem;
  width: 280px;
  text-align: left;
}

/* CTA Button */
.cta-button {
  display: inline-block;
  background-color: #E17888;
  color: white;
  padding: 12px 24px;
  margin-top: 1rem;
  font-size: 1rem;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #fff;
  color: #E17888;
}

/* Team Grid */
.team-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}

.member {
  text-align: center;
  width: 180px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-in-out;
}

.member.visible {
  opacity: 1;
  transform: translateY(0);
}

.member img {
  border-radius: 50%;
  width: 140px;
  height: 140px;
  object-fit: cover;
  border: 4px solid #E17888;
  transition: transform 0.3s ease;
}

.member img:hover {
  transform: scale(1.05);
}

/* Contact Icons & Links */
#contact i {
  margin-right: 10px;
  color: #E17888;
}

#contact a {
  color: #E17888;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

#contact a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Footer */
footer {
  background-color: rgba(18, 18, 18, 0.95);
  padding: 30px 20px;
  text-align: center;
  font-size: 0.9rem;
  z-index: 2;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
  background-color: #1a1a1a;
  margin: 15% auto;
  padding: 30px;
  border: 1px solid #E17888;
  border-radius: 12px;
  width: 80%;
  max-width: 500px;
  color: #FAFAFA;
  text-align: center;
}

.close-btn {
  color: #E17888;
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close-btn:hover {
  color: #FAFAFA;
}

/* Scroll Top */
#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1500;
  font-size: 24px;
  background-color: #E17888;
  color: white;
  border: none;
  border-radius: 50%;
  padding: 12px 18px;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  opacity: 0;
  transition: opacity 0.4s;
}

#scrollTopBtn:hover {
  background-color: #FAFAFA;
  color: #E17888;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
}
