* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #0c1822;
  color: white;
  overflow-x: hidden;
}


/* TOP HEADER */

.topbar {
  min-height: 110px;
  width: 100%;

  background: #91e1f2;
  color: #111;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 15px 5%;

  position: relative;
  z-index: 20;
}

.brand {
  display: flex;
  align-items: center;
  gap: 15px;
}

.small-logo {
  width: 105px;
  height: 85px;

  object-fit: contain;
}

.brand-text h1 {
  font-size: clamp(28px, 3vw, 44px);
}

.brand-text p {
  font-size: clamp(14px, 1.5vw, 20px);
  margin-top: 4px;
}


/* NAVIGATION */

nav {
  display: flex;
  gap: 18px;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: #111;

  font-size: 18px;
  font-weight: bold;

  padding: 14px 22px;

  border-radius: 10px;

  transition: 0.2s;
}

nav a:hover {
  background: rgba(0, 0, 0, 0.1);
}

nav a.active {
  background: #10547e;
  color: white;
}


/* HERO */

.hero {
  position: relative;

  min-height: calc(100vh - 110px);

  background-image: url("hero.png");
  background-size: cover;
  background-position: center;

  display: flex;
  justify-content: center;
  align-items: center;

  text-align: center;

  padding: 80px 20px;
}

.overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to bottom,
      rgba(10, 49, 75, 0.38),
      rgba(3, 18, 29, 0.75)
    );
}

.hero-content {
  position: relative;
  z-index: 2;

  max-width: 1100px;

  display: flex;
  flex-direction: column;
  align-items: center;
}


/* HUGE CENTER LOGO */

.hero-logo {
  width: min(520px, 70vw);
  height: auto;

  object-fit: contain;

  margin-bottom: 10px;

  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.45));
}


/* HUGE MAIN TEXT */

.hero h2 {
  font-size: clamp(54px, 7vw, 105px);

  line-height: 1;

  margin-top: 5px;

  text-shadow:
    0 4px 10px rgba(0, 0, 0, 0.55);
}

.hero h3 {
  font-size: clamp(26px, 3.5vw, 48px);

  color: #7be5ff;

  margin-top: 18px;

  text-shadow:
    0 3px 8px rgba(0, 0, 0, 0.65);
}

.hero-content > p {
  max-width: 800px;

  margin-top: 24px;

  font-size: clamp(17px, 2vw, 24px);

  line-height: 1.5;

  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.65);
}


/* BUTTON */

.drone-button {
  display: inline-block;
  margin-top: 35px;
  padding: 20px 36px;

  background: #91e1f2;
  color: #111;

  text-decoration: none;

  font-size: 20px;
  font-weight: bold;

  border-radius: 12px;

  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.3);

  transition: 0.2s;
}

.drone-button:hover {
  transform: translateY(-4px);
  background: white;
}

.drone-button span {
  margin-left: 10px;
}

/* SCROLL INDICATOR */

.scroll-indicator {
  position: absolute;

  bottom: 20px;

  left: 50%;
  transform: translateX(-50%);

  z-index: 2;

  text-align: center;

  opacity: 0.9;
}

.scroll-indicator span {
  font-size: 34px;
}

.scroll-indicator p {
  font-size: 12px;
  letter-spacing: 3px;
}


/* CONTENT SECTIONS */

.content-section {
  padding: 100px 8%;

  max-width: 1200px;
  margin: auto;
}

.content-section h2 {
  font-size: clamp(40px, 5vw, 58px);

  margin-bottom: 25px;

  color: #91e1f2;
}

.content-section p {
  font-size: 19px;

  line-height: 1.7;

  margin-bottom: 15px;

  color: #ddd;
}

.dark {
  max-width: none;

  background: #142938;
}

.dark > * {
  max-width: 1200px;

  margin-left: auto;
  margin-right: auto;
}


/* DRONE CARD */

.card {
  background: #1e3b4e;

  border-radius: 18px;

  padding: 35px;

  box-shadow:
    0 12px 35px rgba(0, 0, 0, 0.3);
}

.card h3 {
  font-size: 30px;

  margin-bottom: 15px;
}

.stats {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 20px;

  margin-top: 30px;
}

.stats div {
  background: #0c1822;

  padding: 25px;

  border-radius: 12px;

  text-align: center;
}

.stats h4 {
  color: #91e1f2;

  font-size: 20px;

  margin-bottom: 8px;
}


/* TEAM */

.team-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 25px;

  margin-top: 35px;
}

.member {
  background: #1e3b4e;

  padding: 35px;

  border-radius: 16px;

  text-align: center;

  transition: 0.2s;
}

.member:hover {
  transform: translateY(-7px);
}

.icon {
  font-size: 55px;

  margin-bottom: 15px;
}

.member h3 {
  font-size: 24px;

  margin-bottom: 8px;
}


/* FOOTER */

footer {
  background: #050b10;

  text-align: center;

  padding: 50px 20px;

  color: #aaa;
}

footer img {
  width: 90px;

  margin-bottom: 10px;
}


/* TABLETS */

@media (max-width: 900px) {

  .topbar {
    flex-direction: column;
    gap: 15px;
  }

  nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    min-height: 850px;
  }

}


/* PHONES */

@media (max-width: 650px) {

  .brand {
    width: 100%;

    justify-content: center;
  }

  .small-logo {
    width: 75px;
    height: 65px;
  }

  .brand-text h1 {
    font-size: 26px;
  }

  .brand-text p {
    font-size: 13px;
  }

  nav {
    gap: 4px;
  }

  nav a {
    font-size: 14px;

    padding: 9px 10px;
  }

  .hero {
    min-height: 700px;
  }

  .hero-logo {
    width: 330px;
  }

  .hero h2 {
    font-size: 52px;
  }

  .hero h3 {
    font-size: 27px;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

}

/* =========================
   INFO PAGE
========================= */

.info-page {
  min-height: 100vh;

  background:
    linear-gradient(
      rgba(4, 25, 40, 0.82),
      rgba(4, 16, 26, 0.96)
    ),
    url("hero.png");

  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}


/* INFO HERO */

.info-hero {
  text-align: center;

  padding: 80px 20px 50px;
}

.info-logo {
  width: min(350px, 70vw);

  filter:
    drop-shadow(
      0 10px 20px rgba(0, 0, 0, 0.5)
    );
}

.info-hero h2 {
  font-size: clamp(
    45px,
    7vw,
    80px
  );

  margin-top: 15px;
}

.info-hero p {
  font-size: 22px;

  margin-top: 12px;

  color: #91e1f2;
}


/* INFO CARDS */

.info-content {
  max-width: 1100px;

  margin: auto;

  padding:
    20px
    25px
    100px;

  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  gap: 25px;
}


.info-card {
  background:
    rgba(20, 49, 68, 0.92);

  padding: 35px;

  border-radius: 18px;

  border:
    1px solid
    rgba(145, 225, 242, 0.2);

  box-shadow:
    0 15px 35px
    rgba(0, 0, 0, 0.35);

  backdrop-filter:
    blur(8px);

  transition: 0.25s;
}


.info-card:hover {
  transform:
    translateY(-7px);

  border-color:
    #91e1f2;
}


.info-card h2 {
  color: #91e1f2;

  font-size: 28px;

  margin-bottom: 15px;
}


.info-card p {
  color: #e1e1e1;

  font-size: 18px;

  line-height: 1.7;

  margin-bottom: 8px;
}


/* MOBILE INFO PAGE */

@media (max-width: 700px) {

  .info-content {
    grid-template-columns:
      1fr;
  }

  .info-hero {
    padding-top: 55px;
  }

}




.team-video {
  width: 100%;
  max-width: 320px;

  display: block;

  margin: 20px auto 0;

  border-radius: 12px;

  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.35);
}


/* =========================
   BETTER MOBILE LAYOUT
========================= */

@media (max-width: 700px) {

  /* HEADER */

  .topbar {
    padding: 12px 14px;
    min-height: auto;

    flex-direction: column;
    align-items: stretch;

    gap: 10px;
  }

  .brand {
    justify-content: flex-start;
    gap: 10px;
  }

  .small-logo {
    width: 70px;
    height: 60px;
  }

  .brand-text h1 {
    font-size: 27px;
    line-height: 1.05;
  }

  .brand-text p {
    font-size: 13px;
    margin-top: 4px;
  }


  /* NAVIGATION */

  nav {
    width: 100%;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 6px;
  }

  nav a {
    text-align: center;

    font-size: 14px;

    padding: 10px 5px;

    border-radius: 8px;
  }


  /* INFO PAGE BACKGROUND */

  .info-page {
    background-attachment: scroll;
  }


  /* INFO HERO */

  .info-hero {
    padding: 45px 16px 30px;
  }

  .info-logo {
    width: 220px;
    max-width: 65vw;

    margin-bottom: 5px;
  }

  .info-hero h2 {
    font-size: 42px;
    line-height: 1.05;

    margin-top: 10px;
  }

  .info-hero p {
    font-size: 18px;
    line-height: 1.4;

    padding: 0 10px;
  }


  /* INFO CARDS */

  .info-content {
    padding: 15px 14px 60px;

    grid-template-columns: 1fr;

    gap: 16px;
  }

  .info-card {
    padding: 22px 18px;

    border-radius: 14px;
  }

  .info-card h2 {
    font-size: 24px;
  }

  .info-card p {
    font-size: 16px;
    line-height: 1.55;
  }


  /* ART VIDEO */

  .art-video {
    width: 100%;
    max-width: 240px;

    margin: 16px auto 0;
  }


  /* FOOTER */

  footer {
    padding: 30px 15px;
  }

  footer img {
    width: 70px;
  }
}


/* EXTRA SMALL PHONES */

@media (max-width: 430px) {

  .brand-text h1 {
    font-size: 23px;
  }

  .brand-text p {
    font-size: 12px;
  }

  .small-logo {
    width: 58px;
    height: 52px;
  }

  nav {
    grid-template-columns: repeat(2, 1fr);
  }

  nav a:last-child {
    grid-column: 1 / -1;
  }

  .info-logo {
    width: 190px;
  }

  .info-hero h2 {
    font-size: 36px;
  }

  .info-hero p {
    font-size: 16px;
  }

}



/* =========================
   STANDARD SUBPAGES
========================= */

.standard-page {
  min-height: 100vh;

  background:
    linear-gradient(
      rgba(4, 25, 40, 0.82),
      rgba(4, 16, 26, 0.96)
    ),
    url("hero.png");

  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}


/* PAGE HERO */

.page-hero {
  text-align: center;

  padding: 70px 20px 45px;
}

.page-logo {
  width: min(300px, 65vw);

  filter:
    drop-shadow(
      0 10px 20px rgba(0, 0, 0, 0.45)
    );
}

.page-hero h2 {
  font-size: clamp(45px, 7vw, 78px);

  margin-top: 15px;
}

.page-hero p {
  font-size: 21px;

  color: #91e1f2;

  margin-top: 10px;
}


/* GENERAL PAGE GRID */

.page-content {
  max-width: 1100px;

  margin: auto;

  padding: 20px 25px 100px;

  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 25px;
}


/* LISTS */

.feature-list {
  padding-left: 22px;

  margin-top: 15px;

  color: #e1e1e1;

  font-size: 18px;

  line-height: 1.8;
}


/* TEAM PAGE */

.team-page-grid {
  max-width: 1100px;

  margin: auto;

  padding: 20px 25px 100px;

  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 25px;
}

.member-card {
  background: rgba(20, 49, 68, 0.92);

  padding: 35px;

  border-radius: 18px;

  border:
    1px solid
    rgba(145, 225, 242, 0.2);

  box-shadow:
    0 15px 35px
    rgba(0, 0, 0, 0.35);

  text-align: center;

  transition: 0.25s;
}

.member-card:hover {
  transform: translateY(-7px);

  border-color: #91e1f2;
}

.member-icon {
  font-size: 60px;

  margin-bottom: 15px;
}

.member-card h2 {
  font-size: 28px;

  margin-bottom: 6px;
}

.member-card h3 {
  font-size: 19px;

  color: #91e1f2;

  margin-bottom: 14px;
}

.member-card p {
  color: #ddd;

  font-size: 17px;

  line-height: 1.6;
}


/* MOBILE SUBPAGES */

@media (max-width: 700px) {

  .standard-page {
    background-attachment: scroll;
  }

  .page-hero {
    padding: 45px 15px 30px;
  }

  .page-logo {
    width: 190px;
  }

  .page-hero h2 {
    font-size: 38px;
  }

  .page-hero p {
    font-size: 16px;
  }

  .page-content {
    grid-template-columns: 1fr;

    padding: 15px 14px 60px;

    gap: 16px;
  }

  .team-page-grid {
    grid-template-columns: 1fr;

    padding: 15px 14px 60px;

    gap: 16px;
  }

}



/* =========================
   WILLOW MASCOT CARD
========================= */

.willow-card {
  grid-column: 1 / -1;

  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;

  gap: 35px;

  /* Special gold outline */
  border: 2px solid #f5b82e;

  box-shadow:
    0 0 15px rgba(245, 184, 46, 0.18),
    0 15px 35px rgba(0, 0, 0, 0.35);
}

.willow-card:hover {
  border-color: #ffd76a;

  box-shadow:
    0 0 25px rgba(245, 184, 46, 0.3),
    0 18px 40px rgba(0, 0, 0, 0.4);
}

.willow-text h2 {
  color: #f5b82e;
  font-size: 32px;
  margin-bottom: 12px;
}

.willow-text h3 {
  color: white;
  font-size: 24px;
  margin-bottom: 18px;
}

.willow-text p {
  font-size: 18px;
  line-height: 1.6;
}

.willow-photo {
  width: 100%;
  max-height: 380px;

  object-fit: cover;

  border-radius: 14px;

  border: 2px solid rgba(245, 184, 46, 0.7);

  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.4);
}


/* WILLOW CARD ON PHONES */

@media (max-width: 700px) {

  .willow-card {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .willow-text h2 {
    font-size: 26px;
  }

  .willow-text h3 {
    font-size: 20px;
  }

  .willow-photo {
    max-height: 300px;
  }

}