* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: #0b1a2f;
  color: #e6f0ff;
}

/* HERO */
/* .hero {
  height: 650px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;

  background:
    linear-gradient(rgba(11, 26, 47, 0.75), rgba(11, 26, 47, 0.95)),
    url("/images/zyrja.jpeg");

  background-size: cover;
  background-position: center;
} */
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: #eef5ff;
  font-weight: 500;
  transition: 0.2s;
  font-size: 1rem;
  letter-spacing: 0.5px;
  position: relative;
}
.nav-links a:after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #2c9aff;
  transition: 0.3s;
}
.nav-links a:hover:after {
  width: 100%;
}
.nav-links a:hover {
  color: #8cd4ff;
}
.menu-btn {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: white;
}

/* NAVBAR (cinematic transparency) */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  backdrop-filter: blur(0px);
  background: rgba(0, 0, 0, 0);
}
.navbar.scrolled {
  padding: 14px 5%;
  background: rgba(5, 8, 15, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

.logo-img {
  height: 50px;
  width: auto;
  display: block;
}

.logo {
  display: flex;
  align-items: center;
  gap: 5px;

  text-decoration: none;
  color: white;
  font-size: 1rem;
  font-weight: 700;
}
.circle-logo {
  display: inline-block;
}

.logo i {
  color: #2c9aff;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  margin-right: 6px;
}

.hero h1 {
  font-size: 3rem;
  color: white;
}

.hero p {
  margin-top: 10px;
  max-width: 600px;
  color: #cbd5e1;
  font-size: 1.1rem;
}

/* ABOUT */
.section {
  padding: 120px 20px;
  min-height: 100vh;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: left;

  background:
    linear-gradient(rgba(11, 26, 47, 0.72), rgba(11, 26, 47, 0.88)),
    url("/images/zyrja.jpeg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.section-content {
  max-width: 1000px;
}

.section-content h2 {
  font-size: 3rem;
  margin-bottom: 25px;
}

.section-content p {
  font-size: 1rem;
  line-height: 1.9;
  color: #d6e2f0;
  margin-bottom: 18px;
}

.section h2 {
  text-align: center;
  color: white;
  margin-bottom: 30px;
  font-size: 2rem;
}

.section p {
  line-height: 1.8;
  font-size: 1.05rem;
  color: #cbd5e1;
  margin-bottom: 18px;
}

/* TEAM DIAGRAM */
.team {
  padding: 80px 20px;
  text-align: center;

  background:
    linear-gradient(rgba(31, 69, 150, 0.65), rgba(15, 23, 42, 0.95)),
    url("/images/0F156527-36B4-4278-BE6A-7EA1CDB1F9EA.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.team h2 {
  color: white;
  margin-bottom: 50px;
}

.row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

/* CARD */
.card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(249, 168, 38, 0.25);
  border-radius: 20px;
  padding: 20px;
  width: 220px;
  text-align: center;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-8px);
  border-color: #e43bfc;
}

.card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #e43bfc;
  margin-bottom: 10px;
  object-position: center top;
}

.card h3 {
  color: white;
  font-size: 1.1rem;
}

.card span {
  display: block;
  margin-top: 5px;
  color: white;
  font-size: 0.9rem;
}

/* CONNECTORS (simple clean style) */
.line {
  width: 2px;
  height: 40px;
  background: #f9a826;
  margin: 10px auto;
}

/* FOOTER */

.footer {
  background: #03060c;
  padding: 40px 5% 20px;
  border-top: 1px solid rgba(228, 59, 252, 0.15);
  text-align: center;
}

.footer-credit {
  margin-top: 10px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-credit a {
  color: #b8c7ff;
  text-decoration: none;
  font-size: 0.85rem;

  transition:
    color 0.3s ease,
    text-shadow 0.3s ease,
    transform 0.3s ease;

  display: inline-block;
}

.footer-credit a:hover {
  color: #e43bfc;

  text-shadow:
    0 0 8px rgba(228, 59, 252, 0.8),
    0 0 18px rgba(228, 59, 252, 0.5);

  transform: translateY(-2px);
}
/* =========================
         MOBILE RESPONSIVE FIXES
      ========================= */

@media (max-width: 992px) {
  .section-content h2,
  .hero h1 {
    font-size: 2.3rem;
  }

  .section {
    padding: 100px 20px 80px;
  }

  .section-content p {
    font-size: 0.98rem;
    line-height: 1.7;
  }
}

/* Nav links responsive */

@media (max-width: 820px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: rgba(3, 8, 18, 0.98);
    backdrop-filter: blur(18px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.4s;
    gap: 2.5rem;
    z-index: 999;
    border-left: 1px solid #2c9aff;
  }
  .nav-links.active {
    right: 0;
  }
  .menu-btn {
    display: block;
    z-index: 1001;
  }
  .navbar.scrolled .menu-btn {
    color: white;
  }
  .hero h1 {
    font-size: 3rem;
  }
  .section-title {
    font-size: 2.2rem;
  }
}
/* HERO */
.hero {
  height: auto;
  padding: 140px 20px 100px;
}

.hero h1 {
  font-size: 2rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1rem;
  padding: 0 10px;
}

/* ABOUT SECTION */
.section {
  min-height: auto;
  padding: 100px 20px 70px;
}

.section-content h2 {
  font-size: 2rem;
  text-align: center;
}

.section-content p {
  font-size: 0.95rem;
  line-height: 1.8;
  text-align: left;
}

/* TEAM */
.team {
  padding: 70px 15px;
}

.team h1 {
  font-size: 2rem;
}

.row {
  gap: 16px;
}

.card {
  width: 100%;
  max-width: 200px;
  padding: 18px;
}

.card img {
  width: 100px;
  height: 100px;
}

.card h3 {
  font-size: 1rem;
}

.card span {
  font-size: 0.85rem;
}

/* FOOTER */
.footer {
  padding: 35px 20px 20px;
}

.social-icons a {
  font-size: 1.2rem;
  margin: 0 10px;
}

@media (max-width: 480px) {
  .hero h1,
  .section-content h2,
  .team h1 {
    font-size: 1.7rem;
  }

  .section-content p {
    font-size: 0.92rem;
  }

  .card {
    border-radius: 16px;
  }

  .navbar {
    padding: 14px 5%;
  }
}
