body {
  background-color: #fefefc;
  font-family: 'Open Sans';
  color: #191919;
}
h2{
   
    font-family: 'Poppins';
    color: #ed6a18;
}
h3{
    
    font-family: 'Raleway';
    color: #191919;
}

.entry-title {
    background-color: #ed6a18;
    text-align: center;
    font-weight: 700;
    font-size: 2rem;
    padding: 20px 0;
    margin: 0 0 40px 0;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    box-sizing: border-box;
    border-bottom: 1px solid #b0b0b0;
}


/*Navbar*/
.navbar {
  background-color: #191919;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 24px;
}

/* SDS logo*/
.nav_logo {
  height: 30px;
  cursor: pointer;
  display: block;
  filter: brightness(0) invert(1);
  margin-left: -90px; 
}


.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin-left: auto;
  align-items: center;
}

.nav-menu li a {
  text-decoration: none;
  color: #fefefc;
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  padding: 6px 0;
  transition: color 0.18s ease;
}

.nav-menu li a:hover {
  color: #ed6a18;
}

.nav-menu li a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 3px;
  background-color: #ed6a18;
  border-radius: 2px;
}

/* Hamburger menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.bar {
  width: 26px;
  height: 3px;
  background-color: #fefefc;
  border-radius: 3px;
  transition: all 0.28s ease;
}

/*Responsive Layout*/
@media (max-width: 920px) {
  .nav-container {
    padding: 12px 18px;
  }

  
  .hamburger {
    display: flex;
  }

  main{
    width: 100%;
    align-items: center;
    justify-content: center;
    padding-top: 50px;
  }

  .nav-menu {
    position: absolute;
    top: 64px;
    right: -120%;
    flex-direction: column;
    background-color: #191919;
    width: 220px;
    padding: 18px;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
    transition: right 0.28s ease;
  }

  .nav-menu.active {
    right: 18px;
  }

  .nav-menu li {
    margin: 10px 0;
  }
}

/* Footer*/
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main,
.content,
.main-content,
#main {
  flex: 1 0 auto;
}

footer {
  margin-top: auto;
  background-color: #191919;
  color: #fefefc;
  text-align: center;
  padding: 30px 0;
  border-top: 1px solid #191919;
  width: 100%;
  flex-shrink: 0;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 25px;
  padding: 0;
  margin: 0;
}

.footer-nav li {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-nav a {
  text-decoration: none;
}


.footer-nav img {
  width: 30px;
  height: auto;
  margin: 5px;
  filter: brightness(0) invert(1);
  transition: transform 0.2s ease, opacity 0.3s ease, filter 0.3s ease;
}

.footer-nav img:hover {
  transform: scale(1.1);
  opacity: 0.95;
  filter: brightness(0) saturate(100%) invert(66%) sepia(78%) saturate(4576%)
    hue-rotate(342deg) brightness(97%) contrast(101%);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  margin-top: 15px;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: #fefefc;
  margin-top: 5px;
}

/*Responsive Layout*/
@media (max-width: 768px) {
  .footer-nav ul {
    gap: 15px;
  }

  .nav_logo{
    margin-right: 30px ;
  }
  .footer-nav img {
    width: 25px;
  }

  .footer-bottom p {
    font-size: 0.8rem;
  }
}
