﻿body {
  padding-top: 60px; /* match the navbar height */
  margin: 0;
  font-family: Verdana;
}

.style1 {
	font-family: Verdana;
}
    /* Navigation container */
    .nav-container {
      background-color: #000000;
    }
    
    /* Mobile menu toggle (hamburger icon) */
    .menu-toggle {
      display: none;
      background-color: #333;
      color: #FFFF00;
      text-align: center;
      padding: 10px;
      cursor: pointer;
    }
        /* Navigation menu (ul) styled with Flexbox */
    .nav-menu {
      display: flex;
      justify-content: center;   /* Center items horizontally */
      align-items: center;         /* Center items vertically */
      list-style: none;
      margin: 0;
      padding: 0;
      height: 60px;  /* Fixed height to enforce vertical centering */
      flex-wrap: wrap; /* Allow wrapping, if needed */
    }
    
    /* Navigation menu items (li) */
    .nav-menu li {
      text-align: center; /* Center the text inside each li */
      flex: 1;
    }
    
    /* Add a right border between menu items on desktop */
    .nav-menu li:not(:last-child) {
      border-right: 1px solid #FFFF00;
    }
    
    /* Navigation links styling */
    .nav-menu a {
      color: #FFFF00;
      text-decoration: none;
      font-size: 14pt;
      display: block;
      padding: 10px;
      font-family: "Arial", sans-serif;
      text-alignment: center
    }
.nav-container {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000; /* ensures it stays above other content */
}
html {
  height: 100%;
  padding: 0;
  margin: 0;
  font-family: 'Arial', sans-serif;
}

main {
  z-index: 2;
  position: relative;
  width: 100%;
  background-color: #ffffff;
  -webkit-transition: transform .7s ease-in-out;
  -moz-transition: transform .7s ease-in-out;
  -ms-transition: transform .7s ease-in-out;
  -o-transition: transform .7s ease-in-out;
  transition: transform .7s ease-in-out;
}

.sidebar {

  width: 300px;
  position: absolute;
  top: 0;
  z-index: 1;
  right: 0;
  background-color: #ffffff;
margin-right: 10px
}

.bar {
  display: block;
  height: 5px;
  width: 50px;
  background-color: #000000;
  margin: 10px auto;
}

.button {
  cursor: pointer;
  display: inline-block;
  width: auto;
  margin: 0 auto;
  -webkit-transition: all .7s ease;
  -moz-transition: all .7s ease;
  -ms-transition: all .7s ease;
  -o-transition: all .7s ease;
  transition: all .7s ease;
}

.nav-right {
  position: fixed;
  right: 40px;
  top: 20px;
}

.nav-right.visible-xs {
  z-index: 3;
  position: absolute  
}

.hidden-xs {
  display: none;
}

.middle {
  margin: 0 auto;
}

.bar {
  -webkit-transition: all .7s ease;
  -moz-transition: all .7s ease;
  -ms-transition: all .7s ease;
  -o-transition: all .7s ease;
  transition: all .7s ease;
}

.nav-right.visible-xs .active .bar {
  background-color: #000000;
  -webkit-transition: all .7s ease;
  -moz-transition: all .7s ease;
  -ms-transition: all .7s ease;
  -o-transition: all .7s ease;
  transition: all .7s ease;
}

.button.active .top {
  -webkit-transform: translateY(15px) rotateZ(45deg);
  -moz-transform: translateY(15px) rotateZ(45deg);
  -ms-transform: translateY(15px) rotateZ(45deg);
  -o-transform: translateY(15px) rotateZ(45deg);
  transform: translateY(15px) rotateZ(45deg);
}

.button.active .bottom {
  -webkit-transform: translateY(-15px) rotateZ(-45deg);
  -moz-transform: translateY(-15px) rotateZ(-45deg);
  -ms-transform: translateY(-15px) rotateZ(-45deg);
  -o-transform: translateY(-15px) rotateZ(-45deg);
  transform: translateY(-15px) rotateZ(-45deg);
}

.button.active .middle {
  width: 0;
}

.move-to-left {
  -webkit-transform: translateX(-300px);
  -moz-transform: translateX(-300px);
  -ms-transform: translateX(-300px);
  -o-transform: translateX(-300px);
  transform: translateX(-300px);
}

nav {
  padding-top: 50px;
  margin-right: 10px
}

.sidebar-list {
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
  margin-top: 50px;
  text-align: center;
}

.sidebar-item {
  margin: 30px 0;
  opacity: 0;
  -webkit-transform: translateY(-20px);
  -moz-transform: translateY(-20px);
  -ms-transform: translateY(-20px);
  -o-transform: translateY(-20px);
  transform: translateY(-20px);
}

.sidebar-item:first-child {
  -webkit-transition: all .7s .2s ease-in-out;
  -moz-transition: all .7s .2s ease-in-out;
  -ms-transition: all .7s .2s ease-in-out;
  -o-transition: all .7s .2s ease-in-out;
  transition: all .7s .2s ease-in-out;
}

.sidebar-item:nth-child(2) {
  -webkit-transition: all .7s .4s ease-in-out;
  -moz-transition: all .7s .4s ease-in-out;
  -ms-transition: all .7s .4s ease-in-out;
  -o-transition: all .7s .4s ease-in-out;
  transition: all .7s .4s ease-in-out;
}

.sidebar-item:nth-child(3) {
  -webkit-transition: all .7s .6s ease-in-out;
  -moz-transition: all .7s .6s ease-in-out;
  -ms-transition: all .7s .6s ease-in-out;
  -o-transition: all .7s .6s ease-in-out;
  transition: all .7s .6s ease-in-out;
}

.sidebar-item:last-child {
  -webkit-transition: all .7s .8s ease-in-out;
  -moz-transition: all .7s .8s ease-in-out;
  -ms-transition: all .7s .8s ease-in-out;
  -o-transition: all .7s .8s ease-in-out;
  transition: all .7s .6s ease-in-out;
}

.sidebar-item.active {
  opacity: 1;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
}

.sidebar-anchor {
  color: #FFF;
  text-decoration: none;
  font-size: 1.8em;
  text-transform: uppercase;
  position: fixed;
  padding-bottom: 7px;
}

.sidebar-anchor:before {
  content: "";
  width: 0;
  height: 2px;
  position: fixed;
  bottom: 0;
  left: 0;
  background-color: #FFF;
  -webkit-transition: all .7s ease-in-out;
  -moz-transition: all .7s ease-in-out;
  -ms-transition: all .7s ease-in-out;
  -o-transition: all .7s ease-in-out;
  transition: all .7s ease-in-out;
}

.sidebar-anchor:hover:before {
  width: 100%;
}

.ua {
  position: fixe
  bottom: 20px;
  left: 30px;
}

.fa {
  font-size: 1.4em;
  color: #EF8354;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
    /* Responsive adjustments for screens 320px and below */
    @media (max-width: 320px) {
      .nav-menu {
        flex-direction: column; /* Stack items vertically */
        height: auto;
        display: none;          /* Hidden by default until toggled */
      }
.ua:hover .fa {
  color: #FFF;
  -webkit-transform: scale(1.3);
  -moz-transform: scale(1.3);
  -ms-transform: scale(1.3);
  -o-transform: scale(1.3);
  transform: scale(1.3);
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

@media (min-width: 480px) {
  .nav-list {
    display: block;
  }
 }

@media (min-width: 768px) {
  .nav-right {
    position: absolute
  }
  .hidden-xs {
    display: block;
  }
  .visible-xs {
    display: none;
  }
}`
@media (max-width: 768px) {
  main {
    padding-top: 100px; /* Adjust based on actual navbar height */
  }
}

