@import url("base-stars.css");

:root {
  --accent: #3cff83;
  --fg: #e1f5e3;
  --muted: #8ab29a;
  --bg: #010402;
  --font-head: 'Orbitron', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

/* ===== HEADER ===== */
.topbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
  backdrop-filter: blur(12px) saturate(160%);
  background: rgba(5, 10, 8, 0.3);
  border-bottom: 1px solid rgba(36, 255, 100, 0.1);
  padding: 0.75rem 2rem;
  display: flex;
  justify-content: center;
}

.wrap {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.brand img {
  height: 28px;
  width: auto;
  border-radius: 4px;
  box-shadow: 0 0 6px #000a;
}
.brand span {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 1px;
  color: var(--fg);
  text-transform: uppercase;
}

.navlinks {
  display: flex;
  gap: 1.5rem;
}
.navlinks a {
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: color 0.25s, text-shadow 0.25s;
}
.navlinks a:hover,
.navlinks a.active {
  color: var(--accent);
  text-shadow: 0 0 8px var(--accent);
}

/* ===== BASE BODY ===== */
body {
  height: 100vh;
  width: 100vw;
  color: var(--fg);
  background: var(--bg);
  font-family: var(--font-body);
  overflow-x: hidden;
}

/* ===== HERO (Landing Backgrounds) ===== */
.hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  transition: background-image 1.5s ease-in-out, filter 1s ease-in-out;
}
.hero::before, .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-size: 110% auto;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 2s ease-in-out;
  z-index: 0;
}
.hero::before { opacity: 1; }

/* ===== OVERLAY BOX (Landing text) ===== */
.overlay {
  position: absolute;
  top: 25%;
  left: 20%;
  transform: translate(-50%, -50%);
  text-align: center;
  background: rgba(0, 0, 0, 0.55);
  padding: 1.25rem 2rem;
  max-width: 480px;
  clip-path: polygon(0% 0%, 92% 0%, 100% 10%, 100% 100%, 8% 100%, 0% 90%);
  border: 1px solid #174c2a;
  box-shadow: 0 0 25px rgba(36, 255, 100, 0.1);
  border-radius: 6px;
  z-index: 1;
  transition: box-shadow .3s ease, background .3s ease;
}
.overlay:hover {
  background: rgba(0, 0, 0, 0.7);
  box-shadow: 0 0 35px rgba(60, 255, 131, 0.25);
}
.overlay h1 {
  font-family: var(--font-head);
  color: var(--accent);
  text-transform: uppercase;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  margin-bottom: .4rem;
  text-shadow: 0 0 10px rgba(60, 255, 131, 0.25);
}
.overlay p {
  color: var(--fg);
  font-size: 1rem;
  opacity: 0.9;
  letter-spacing: 0.4px;
}

/* ===== BUTTON ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .9rem 1.4rem;
  border-radius: 6px;
  clip-path: polygon(0% 0%, 94% 0%, 100% 10%, 100% 100%, 6% 100%, 0% 90%);
  background: linear-gradient(135deg, #12401e, #1d6934);
  border: 1px solid #1fa94d;
  color: #e8ffe9;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  box-shadow: 0 0 15px rgba(36, 255, 100, 0.15);
  transition: all .25s ease;
}
.btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #1a3f23, #2eea6a);
  border-color: #2eea6a;
  box-shadow: 0 0 25px rgba(46, 234, 106, 0.35);
  color: #eafff0;
}
.btn:active {
  transform: translateY(0);
  background: linear-gradient(135deg, #082511, #114a2a);
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.4);
}

/* ===== FIXED CORNER LOGO ===== */
.corner-logo {
  position: fixed;
  bottom: 16px;
  right: 16px;
  width: 100px;
  height: 100px;
  object-fit: contain;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.9;
}

/* ===== ABOUT PAGE CONTENT ===== */
.content {
  padding-top: 7rem;
  max-width: 950px;
  margin: 0 auto;
  color: var(--fg);
}
.hero-section {
  text-align: center;
  margin-bottom: 3rem;
}
.hero-section h1 {
  font-family: var(--font-head);
  font-size: 2.6rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.75rem;
  text-shadow: 0 0 15px rgba(60, 255, 131, 0.25);
}
.hero-section p {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.9;
}

/* ===== INDUSTRIAL BOXES ===== */
.about-block {
  position: relative;
  margin-bottom: 3rem;
  padding: 2rem;
  border-radius: 8px;
  background: linear-gradient(145deg, #070d09 0%, #0e1b12 100%);
  border: 1px solid rgba(36, 255, 100, 0.15);
  box-shadow: inset 0 0 10px rgba(0, 255, 80, 0.05),
              0 6px 20px rgba(0, 0, 0, 0.6);
  background-image: repeating-linear-gradient(
    0deg,
    rgba(255, 255, 255, 0.015) 0px,
    rgba(255, 255, 255, 0.015) 1px,
    transparent 2px,
    transparent 3px
  );
  clip-path: polygon(0% 0%, 94% 0%, 100% 10%, 100% 100%, 6% 100%, 0% 90%);
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}
.about-block:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(46, 234, 106, 0.15),
              inset 0 0 20px rgba(36, 255, 100, 0.05);
}
.about-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #2eff8d, #20a858);
  opacity: 0.35;
}
.about-block::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 16px;
  width: 6px;
  height: calc(100% - 40px);
  background: repeating-linear-gradient(
    to bottom,
    rgba(60, 255, 131, 0.15) 0,
    rgba(60, 255, 131, 0.15) 8px,
    transparent 12px,
    transparent 20px
  );
  border-radius: 2px;
  opacity: 0.3;
}

/* ===== SECTION TEXT ===== */
.about-block h2 {
  color: var(--accent);
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
  text-shadow: 0 0 12px rgba(60, 255, 131, 0.3);
}
.about-block p {
  color: var(--fg);
  line-height: 1.7;
  font-size: 1.05rem;
  opacity: 0.95;
}
.member {
  margin-bottom: 1.5rem;
  padding: 0.75rem 1rem;
  border-left: 2px solid rgba(36, 255, 100, 0.4);
  background: rgba(0, 0, 0, 0.25);
}
.member h3 {
  color: var(--accent);
  font-family: var(--font-head);
  margin-bottom: 0.3rem;
}
.chip {
  background: rgba(36, 255, 100, 0.1);
  border: 1px solid rgba(36, 255, 100, 0.4);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-size: 0.8rem;
  margin-left: 0.5rem;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .topbar {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1rem 1.25rem;
    background: rgba(3, 7, 4, 0.85);
    border-bottom: 1px solid rgba(46, 234, 106, 0.15);
  }
  .brand { flex-direction: column; gap: 0.4rem; text-align: center; }
  .navlinks { flex-wrap: wrap; justify-content: center; gap: 1rem; margin-top: 0.5rem; }
  .overlay {
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 92vw;
    max-width: 600px;
    padding: 1.5rem 2rem;
  }
  .hero-section h1 { font-size: 2rem; }
  .corner-logo { width: 150px; height: 150px; }
  @media (max-width: 768px) {
  .corner-logo {
    width: 70px;
    height: 70px;
    bottom: 10px;
    right: 10px;
    opacity: 0.8; /* optional: slight reduction for balance */
  }
}

}
