/* --------------------------------------------------------- */
/* GLOBAL RESET                                               */
/* --------------------------------------------------------- */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* --------------------------------------------------------- */
/* GLOBAL TYPOGRAPHY                                          */
/* --------------------------------------------------------- */

body {
  background-color: #0b1d2a;
  color: #fff;
  font-family: 'Century Gothic';
  font-size: 16px;
  line-height: 1.6;
}

/* --------------------------------------------------------- */
/* NAVIGATION                                                 */
/* --------------------------------------------------------- */

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: #0b1d2a;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

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

.logo-text {
  font-size: 20px;
  font-weight: 600;
  color: #7faed1;
}

.nav a {
  color: #7faed1;
  margin-left: 20px;
  text-decoration: none;
  font-size: 16px;
}

/* --------------------------------------------------------- */
/* HERO SECTIONS                                              */
/* --------------------------------------------------------- */

.home-hero,
.about-hero,
.board-hero,
.management-hero,
.investor-hero,
.contact-hero {
  min-height: 60vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

/* Hero backgrounds */
.home-hero { background-image: url('../img/home-hero.png'); }
.about-hero { background-image: url('../img/about-hero.png'); }
.management-hero { background-image: url('../img/management-hero.png'); }
.board-hero { background-image: url('../img/board-hero.png'); }
.investor-hero { background-image: url('../img/investor-hero.png'); }
.contact-hero { background-image: url('../img/contact-hero.png'); }

/* Retina swap */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .home-hero { background-image: url('../img/home-hero@2x.png'); }
  .about-hero { background-image: url('../img/about-hero@2x.png'); }
  .management-hero { background-image: url('../img/management-hero@2x.png'); }
  .board-hero { background-image: url('../img/board-hero@2x.png'); }
  .investor-hero { background-image: url('../img/investor-hero@2x.png'); }
  .contact-hero { background-image: url('../img/contact-hero@2x.png'); }
}

/* --------------------------------------------------------- */
/* PAGE LAYOUT                                                */
/* --------------------------------------------------------- */

.page {
  max-width: 1000px;
  margin: 60px auto;
  padding: 20px;
}

/* --------------------------------------------------------- */
/* HEADINGS                                                   */
/* --------------------------------------------------------- */

.page h1 {
  margin-bottom: 20px;
}

h1 {
  font-family: 'Michroma';
  font-size: 36px;
  font-weight: 500;
  letter-spacing: 2px;
  color: #7faed1;
}

.page h2 {
  font-family: 'Michroma', sans-serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.8px;
  color: #7faed1;
  margin-top: 45px;
  margin-bottom: 20px;
}

.page h3 {
  font-family: 'Michroma', sans-serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.6px;
  color: #7faed1;
  margin-top: 35px;
  margin-bottom: 15px;
}

/* --------------------------------------------------------- */
/* PARAGRAPHS & LISTS — MATCH ALL OTHER PAGES                 */
/* --------------------------------------------------------- */

.page p {
  font-size: inherit;
  line-height: inherit;
  margin-bottom: 16px;
}

.page ul,
.page ol {
  font-size: inherit;
  line-height: inherit;
  margin: 14px 0 14px 30px;
}

/* --------------------------------------------------------- */
/* CONTACT FORM                                               */
/* --------------------------------------------------------- */

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  background: #102a3d;
  border: none;
  color: #fff;
}

.contact-form button {
  padding: 12px 20px;
  background: #7faed1;
  border: none;
  color: #0b1d2a;
  font-weight: bold;
  cursor: pointer;
}

/* --------------------------------------------------------- */
/* FOOTER                                                     */
/* --------------------------------------------------------- */

footer {
  text-align: center;
  padding: 30px;
  color: #7faed1;
  font-size: 14px;
}

/* --------------------------------------------------------- */
/* MOBILE RESPONSIVE FIXES                                    */
/* --------------------------------------------------------- */

@media (max-width: 768px) {

  .nav {
    flex-direction: column;
    padding: 15px 20px;
  }

  .nav a {
    margin: 10px 0;
    font-size: 18px;
  }

  h1 {
    font-size: 28px;
    letter-spacing: 1px;
  }

  .page {
    margin: 40px auto;
    padding: 15px;
  }

  .page p {
    font-size: 16px;
  }

  .logo-img {
    height: 40px;
  }

  .home-hero,
  .about-hero,
  .management-hero,
  .board-hero,
  .investor-hero,
  .contact-hero {
    min-height: 50vh;
    padding: 30px 15px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 24px;
  }

  .nav a {
    font-size: 16px;
  }

  .page p {
    font-size: 15px;
  }
}

/* --------------------------------------------------------- */
/* MOBILE NAV — SLIDE DOWN                                    */
/* --------------------------------------------------------- */

@media (max-width: 768px) {

  header.nav nav {
    display: none;
    flex-direction: column;
    background: #0b1d2a;
    width: 100%;
    text-align: center;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }

  header.nav nav.nav-open {
    display: flex;
    max-height: 400px;
  }

  .hamburger {
    display: block;
    cursor: pointer;
    font-size: 32px;
    color: #7faed1;
    margin-top: 10px;
  }

  header.nav nav a {
    padding: 14px 0;
    font-size: 20px;
    color: #7faed1;
    position: relative;
  }

  header.nav nav a::after {
    content: "";
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #7faed1;
    transition: width 0.3s ease;
  }

  header.nav nav a:hover::after {
    width: 40%;
  }
}

@media (min-width: 769px) {
  .hamburger {
    display: none;
  }
}