@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@100;200;300;400;500;600;700;800;900&display=swap');

body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    font-family: 'Manrope', sans-serif;
}

.StickyHeader {
  position: sticky;
  top: 0;
  display: flex;
  justify-content: space-between; 
  align-items: center;           
  width: 100%;
  max-width: 100%;                
  padding: 0 5%;                
  box-sizing: border-box;        
  height: 64px;
  background-color: white;
  z-index: 9999;
  font-size: 18px;
}

.StickyHeader .logo {
  display: flex;
  font-weight: 750;
  color: #000000;
  font-size: 22px;
}

.StickyHeader nav {
  display: flex;
  gap: 32px; 
  flex-wrap: wrap; 
}

.StickyHeader nav a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  transition: color 0.3s ease;
}

.StickyHeader nav a:hover {
  color: #000000; 
  font-weight: 800;
}

.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

.ArcherImage {
  position: relative;
  width: 100%;
  height: 70vh;
  background-image: url("image/3373w.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  color: rgb(255, 255, 255);
}

.ArcherImage::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6); /* adjust darkness */
  z-index: 1;
}

.HeroContent {
  position: absolute;
  bottom: 10%;
  margin-left: 5%;
  margin-right: 5%;
  max-width: 700px;
  z-index: 2;
  overflow: hidden;
  text-shadow: #000000 0px 0 15px;
  font-size: 50px;
}

@media (max-width: 832px) {
   .StickyHeader nav {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 64px; 
    left: 0;
    background-color: rgb(210, 210, 210);
    gap: 0;
    transition: max-height 0.3s ease;
    overflow: hidden;
  }

   .StickyHeader nav a {
    padding: 15px 5%;
    border-top: 1px solid #3a3a3a;
  }

  .hamburger {
    display: block;
    font-weight: 900;
    color: #000000;
  }

  .nav-links.show {
    display: flex;
  }

  .StickyHeader nav a:hover {
  color: #000000; 
  font-weight: 800;
}
}




.ContainerA{
  width: 100vw;
  min-height: 500px;
}









.BottomFooter {
  height: 128px;
  background-color: #000000;
  
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5vw; /* optional spacing using viewport width */
  
  position: relative;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
}



.BottomFooter .BottomLogo {
  position: relative;
  align-items: center;
  color: white;
  font-size: 44px;
  font-weight: 550;
}

.BottomFooter .BottomText {
  position: relative;
  align-items: center;
  color: white;
  font-size:12px;
}





/* ARTICLE STYLE */


.ArticleContainer{
  position: relative;
  margin-left: 8%;
  margin-right: 8%; 
  margin-bottom: 2%;
  padding-bottom: 400px;
  background-color: rgb(255, 255, 255);
  min-height: 500px;
  color: rgb(0, 0, 0);
  }

  
.ArticleContainer h1,
.ArticleContainer h2,
.ArticleContainer h3,
.ArticleContainer h4,
.ArticleContainer h5,
.ArticleContainer h6,
.ArticleContainer ul,
.ArticleContainer p {
  margin: 0;          /* remove all default top/bottom spacing */
  padding: 0;
}

  .ArticleContainer .ArticleTitle{
  margin-bottom: 24px;
  font-weight: 700;
  
}

.ArticleContainer h3{
  margin-bottom: 2px;
  margin-top: 5px;
  font-weight: 800;  
}

.ArticleContainer p{
  margin-bottom: 16px;  
  font-weight: 500;
  }

.ArticleContainer ul {
  list-style-type: disc;  /* default bullets, other options: circle, square, none */
  padding-left: 20px;     /* indentation from container edge */
  margin-bottom: 16px;    /* space after the list */
}

.ArticleContainer li {
  margin-bottom: 0px;     /* space between items */
  color: rgb(0, 0, 0);            /* text color */
  font-weight: 500;
}

ul .underline {
  text-decoration: underline;
  
}

.inlineimgA {
    height: auto;
    float: right;
    margin: 18px;
}

.inlineimgB {
    height: auto;
    float: left;
    margin: 18px;
    
}




