.fa {
    border: 1.5px outset #f7d875;
    border-radius: 25px;
    padding: 8px;
    color: #f7d875;
    width: 15px;
    height: 15px;
   align-content: center;
    box-shadow: 5px 5px 10px 0px rgb(0 0 0 / 21%), -5px -5px 10px 0px rgb(0 0 0 / 21%);
    backdrop-filter: blur(1px);
    text-shadow: 1px 1px 2px rgb(0, 0, 0);
    font-size: clamp(0.875rem, 0.6576rem + 1.087vw, 1.5rem);
    fill: #f7d875;
     stroke: #ffffff;
  stroke-width: 5px;

}
.fa:hover{
    fill: #007a34;
    border: 1.5px solid #007a34;

}
@keyframes fadeInOpacity {
	0% {
		opacity: 0;
	}
    50% {
        opacity: .75;
    }
	100% {
		opacity: 1;
	}
}
@media (min-width: 800px){
    .fa {
               width: 25px;
        height: 25px;
    }
}
.content-row-social {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: end;
  text-align: center;
  gap: 5px;
  flex: 1 1 200px;
  position: fixed; 
  right: 5px; 
  top: 5px; 
  z-index: 1000; 
  backdrop-filter: blur(1px);
border: #81818134 1px solid;
  padding-left: 5px;
  padding-right: 5px;
  padding-top: 4px;
  padding-bottom: 1px;
  border-radius: 25px;
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.2), 0 0 20px rgba(0, 0, 0, 0.1);
   animation-name: fadeInOpacity;
	animation-iteration-count: 1;
	animation-timing-function: ease-in;
	animation-duration: 2s;
 }
.sidebar-nav {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 220px;
    background: #000000;
    color: #fff;
    display: flex;
    flex-direction: column;
    z-index: 1000;
    transition: transform 0.3s ease;
    border-right: 1px solid #f7d875;
}
.sidebar-nav .nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
}
.sidebar-nav .nav-title {
    font-weight: bold;
    font-size: 1.1em;
    text-align: center;
}

.sidebar-nav .nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}
.sidebar-nav .nav-links li {
    margin: 0;
}
.sidebar-nav .nav-links a {
    display: block;
    padding: 0.75rem 0.75rem;
    color: #fff;
    text-decoration: none;
    border-left: 4px solid transparent;
    transition: background 0.2s, border-color 0.2s;
    border: 0.5px solid #8181813b;
  
}
.sidebar-nav .nav-links a.active{
    background: #007a34;
    border-left: 4px solid #f7d875;
    color: #f7d875;
}

.sidebar-nav .nav-links a:hover {
    background: #007a34;
    border: #f7d875 1px solid;
    
    color: #f7d875;
}
.nav-header{
    flex-direction: column;
}

/* Main content shift */
main {
    margin-left: 220px;
    transition: margin-left 0.3s;
}

/* Hide hamburger by default (large screens) */
.nav-toggle {
    display: none;
    border: 1px solid #f7d875;
    box-shadow: 12px 12px 15px -3px rgba(0,0,0,0.1),-12px -12px 15px -3px rgba(0,0,0,0.1);
    
}

/* Responsive: collapse sidebar and show hamburger */
@media (max-width: 800px) {
    .sidebar-nav {
        transform: translateX(-100%);
        width: 70vw;
        max-width: 320px;
    }
    .sidebar-nav.open {
        transform: translateX(0);
    }
    main {
        margin-left: 0;
    }
    .nav-toggle {
        display: block;
        position: fixed;
        top: 5px;
        left: 5px;
        z-index: 1100;
        background-color: rgba(0,0,0,0.0);
        color: #f7d875;
        text-shadow: #000000 1px 1px 2px;
        border: none;
        font-size: 1.8em;
        padding: 0.3em 0.6em;
        border-radius: 10px;
        cursor: pointer;
          
           box-shadow: 1px 1px 20px 1px rgb(0 0 0 / 33%), -1px -1px 20px 1px rgb(0 0 0 / 27%);
             box-shadow: var(--shadow-elevation-medium), inset 1px 1px 1px 0px rgb(255 255 255 / 50%);
      backdrop-filter: blur(2px);
    }
}
hr {
    width: 60%;
    border: 1px solid #007a34;
    margin-left: 15px;
}
