:root {
  --color-primary: #0f0f0f;   /* black background */
  --color-secondary: #f0f0f0; /* off-white text/lines */
  --color-accent: #00FFBB;    /* neon aqua accent */
  --color-devider: #777777;    /* neon aqua accent */
  --color-prim2: #202020;    /* neon aqua accent */
}

body {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 1rem;
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    background-color: var(--color-primary);
    color: var(--color-secondary);
}

.header-main {
    width: 100%;
    height: 60px;
    background-color: var(--color-primary);
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}
.header-main-logo {
    padding-top: 0.1rem;
    padding-left: 1rem;
    font-size: 1.1rem;
    font-weight: 1000;
    line-height: 1.1;
    color: var(--color-secondary);
    display: flex;
    justify-content: center;
    width: 30vh;
    cursor: pointer;
    flex-direction: column;
}

.hamburger {
    display: flex;
    justify-content: center;
    flex-wrap: wrap-reverse;
    padding-right: 1rem;
    cursor: pointer; 
    padding-bottom: 0.4rem;
}
.hamburger-inner {
    height: 45px;
    width: 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.3rem;
    border-radius: 8px;
    padding-left: 0.63rem;
}
.hamburger-inner div {
  width: 25px;
  height: 5px;
  padding-left: 0.71rem;
  background: var(--color-accent);
}
.hamburger-inner.active {
  outline: 2px solid #ececec; /* only around smaller box */
}

.menu { /* Menu layout */
    font-weight: 600;
    top: calc(var(--top-ribbon-height, 60px)); /* fallback to 60px if variable not set */
    display: none;
    flex-direction: column;
    background: var(--color-primary);   /* adjust color */
    color: var(--color-secondary);
    border-top: solid;
    position: absolute;
    width: 100%;
}
.menu a { /* Menu link layout */
    padding: 1rem ; 
}
.menu.show { /* Enables the menu toggle */
  display: flex;
}
.menu-slice { /* Menu link container layout */
    display: flex;
    justify-content: space-between; /* Pushes toggle to the right */
    padding-left: 1rem;
    font-size: 1.2rem;
    border-bottom: 0.05rem solid var(--color-devider);
}
.menu-slice2 { /* Menu link container layout */
    display: flex;
    justify-content: space-between; /* Pushes toggle to the right */
    padding-left: 1rem;
    font-size: 1.2rem;
    border-bottom: 0.05rem solid var(--color-devider);
    cursor: pointer;
}
.menu-slice a { /* Menu link container layout */
    display: flex;
    justify-content: space-between; /* Pushes toggle to the right */
    padding-left: 1rem;
    font-size: 1.2rem;
    cursor: pointer;
}

.submenu { /* Submenu layout */
  display: none; /* Dropdowns hidden by default */
  flex-direction: column; /* Dropdown items below eachother */
}
.submenu-slice {
  display: flex;
  font-size: 1rem;
  border-bottom: 0.05rem solid var(--color-devider);
  font-family:"Nunito";
  background-color: var(--color-prim2);
  padding-left: 1rem;
}
.submenu a{ /* Submenu link layout */
  font-size: 1rem;
  font-family:"Nunito";
  cursor: pointer;
}
.submenu.show { /* Enables the submenu toggle */
  display: flex;
}
.submenu-toggle { /* submenu-toggle layout */
  transition: 0.3s ease;
  cursor: pointer;
  padding: 1rem 1rem;
  color: var(--color-accent);
}
.submenu-toggle.rotated {
  transform: rotate(90deg); /* or 180deg if you want it pointing down */
}

.italic-text {
font-style: italic;
}

.quote {
  font-family: "Nunito";
  font-style: italic;
  font-size: smaller;
  color: #acffe9;
}

h1 {
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
}

h2 {
  font-style: bold;
  font-weight: 500;
}

p {
  margin-bottom: 0.5rem;

}

.main-section {
  display: flex;
  justify-content: center;
  flex-direction: column;
  flex:1;
  background-color: var(--color-prim2);
  width: 100vw;
  height: 100vh;
}

.main-row {
  display: flex;
  flex-direction: column;
  color: var(--color-secondary);
  width: 100%;
  text-align: left;
  padding: 2rem;
  background-color: #1c1c1c;
}

.herobanner-container {
  display: flex;
  width: 100%;
  background-color: var(--color-primary);
}
.herobanner-container2 {
  display: none;
  width: 100%;
  background-color: var(--color-primary);
}

footer {
  display: flex;
  flex-direction: column;
  background-color: var(--color-primary);
  width: 100%;
  height: max-content;
  padding: 1rem;
  margin: 0 auto;
}

.footer-row1 {
  display: flex;
  justify-content: center;
  color: var(--color-secondary);
  height: 100px;
  width: 100%;
}
.footer-row1 a {
  cursor: pointer;
}
.footer-row1 div{
  display: flex;
  flex-direction: column;
  font-weight: 600;
  gap: 0.2rem;
  width: 100%;
  
}

.footer-row2 {  
  display: flex;
  justify-content: center;
  color: var(--color-secondary);
  height: 150px;
  width: 100%;
}
.footer-row2 img{  
  margin: auto;
  display: flex;
  justify-content: center;
  color: var(--color-secondary);
  height: 7rem;
  width: 7rem;
  cursor: pointer;
}
.footer-row2 div{
  display: flex;
  flex-direction: column;
  font-weight: 600;
  gap: 0.2rem;
  width: 100%;
}

.footer-row3 {
  display: flex;
  text-align: center;
  color: var(--color-secondary);
  height: 100px;
  width: 100%;

}
.footer-row3 div{
  display: flex;
  font-weight: 600;
  gap: 0.2rem;
  flex-direction: column;
  width: 100%;
  font-size: smaller;
}

@media only screen and (min-width: 600px) {
   .herobanner-container{
    display: none;
  }

   .herobanner-container2{
    display: flex;
  }
}


