header {
  width: 100%;
  height: 80px;
  position: fixed;
  background-color: rgba(11, 17, 32, 0.7); 
  backdrop-filter: blur(12px); 
  -webkit-backdrop-filter: blur(12px); 
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
  display: flex;
  align-items: center;
}

.navigation a {
  position: relative; /* Required for the absolute line to position itself */
  text-decoration: none;
  color: rgba(255, 255, 255, 0.6);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 5px 10px;
}

/* 1. Create the invisible line */
.navigation a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;      /* Distance below the text */
  width: 0%;         /* Start at zero width */
  height: 2px;
  background-color: #C9ADA7; /* Your new Rose/Sand accent color */
  transition: width 0.3s ease;
}

/* 2. Make the line grow on hover */
.navigation a:hover::after {
  width: 100%;
}

/* 3. Keep the line visible for the active page */
.navigation a.active::after {
  width: 100%;
}

.navigation a.active {
  color: #F2E9E4; /* Your cream text color */
  font-weight: 700;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.navigation a:hover {
  color: #ffffff;
}
.inner_header {
  width: 90%;          /* Increased from 80% to give more room */
  max-width: 1200px;   /* Prevents it from getting too wide on huge monitors */
  margin: 0 auto;
  display: flex;
  flex-direction: row; /* Forces items to stay side-by-side */
  align-items: center;
  justify-content: space-between;
}

.logo_container h1 {
  font-family: "DM Sans", sans-serif;
  font-size: 24px;
  color: #ffffff;
  margin: 0;
}

/* Hamburger-Menu */
.hamburger-shadow{
  width: 100vw;
  height: 100%;
  position: fixed;
  background: hsla(0, 0%, 0%, 0.8);
  z-index: -1 ;
  opacity: 0;
  transition: .2s ease;
}
.hamburger-shadow.active{
  opacity: 1;
  z-index:2;
}
.off-screen-menu{
  z-index: 3;
  background: rgb(32, 31, 31);
  height: 100vh;
  width: 70%;
  max-width: 450px;
  position: fixed;
  top: 0;
  right: -450px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 3rem;
  transition: .3s ease;
}

.off-screen-menu.active{
  right: 0;

}
.ham-menu{
  height: 50px;
  width: 50px;
  margin-left: auto;
  position: relative;
  z-index: 100000;
  display: none;
}
.ham-menu span{
  display: block;
  height: 5px;
  width: 100%;
  background-color:white;
  border-radius: 25px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  transition: .3s ease;
}
.ham-menu span:nth-child(1){
  top: 25%;
}
.ham-menu span:nth-child(3){
  top: 75%;
}

.ham-menu.active span:nth-child(1){
  top: 50%;
  transform: translate(-50%,-50%) rotate(45deg);
}
.ham-menu.active span:nth-child(2){
  opacity: 0;
}
.ham-menu.active span:nth-child(3){
  top: 40%;
  transform: translate(-50%,50%) rotate(-45deg);
}
/* FOOTER */

footer{
  background-color:var(--section-bg-color);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 40px;
  color: var(--p-color);
  
  border-top: 1px solid var(--border-color);
}
footer strong{
  margin-left: 3px;
}