.fa {
   
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;  
    height: 35px;
    border-radius: 50%;
    border: none;
    padding: 8px; 
    background-color: rgba(255, 255, 255, 0.1); 
    color: #f7d875;   
    fill: currentColor;
       backdrop-filter: blur(8px);
    
      font-size: 1.1rem;
    text-shadow: none;

    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}


.fa:hover {
    background-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px) scale(1.1);
    color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
@keyframes fadeInOpacity {
	0% {
		opacity: 0;
	}
    50% {
        opacity: .75;
    }
	100% {
		opacity: 1;
	}
}
@media (min-width: 800px){
    .fa {
               width: 35px;
        height: 35px;
    }
}
.nav-category-title {
    margin-top: 10px !important;
    padding-left: 5px;
    margin-bottom: 5px;
         color: #f7d875;
         border-bottom: 1px solid;
         text-transform: uppercase;
         letter-spacing: 0.1em;

}
.content-row-social {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: end;
  text-align: center;
 gap: 0;                  
  position: fixed; 
  right: 5px; 
  bottom: 15px; 
  z-index: 1000; 
 background: rgba(0, 83, 36, 0.4);
    backdrop-filter: blur(5px);
       border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: var(--shadow-elevation-medium);
    height: 50px;
    border-radius: 50px;
    padding: 6px 12px;
   animation-name: fadeInOpacity;
	animation-iteration-count: 1;
	animation-timing-function: ease-in;
	animation-duration: 2s;
     overflow: hidden; 
  transition: width 0.4s ease;  
 }

.sidebar-nav {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 225px;
        color: #fff;
    display: flex;
    flex-direction: column;
    z-index: 9000;
    transition: transform 0.5s ease;
    border-right: 1px solid #f7d875;
        justify-content: space-evenly;
    overflow-y: auto;
    border-radius: 0; 
    box-shadow: var(--shadow-elevation-medium);
    background: rgba(0, 83, 36, 0.8); 
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    
}


.sidebar-nav .nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
}
.sidebar-nav .nav-footer {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 1rem;
}
.sidebar-nav .footerimg {
    width: 80%;
    align-self: center;
    justify-self: center;
    text-align: center;
}
.sidebar-nav .nav-title {
    
    font-size: 1.0em;
    text-align: center;
    font-family: 'Barlow', 'Montserrat', sans-serif;
}

.sidebar-nav .nav-links {
    font-family: 'Barlow', 'Montserrat', sans-serif;
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
    font-size: 14px;
}
.sidebar-nav .nav-links li {
    margin: 0;
}
.sidebar-nav .nav-links a {
    display: block;
    padding: 0.5rem 0.75rem;
    color: #fff;
    text-decoration: none;
    border-left: 4px solid transparent;
    transition: background 0.2s, border-color 0.2s;
    
  
}
.sidebar-nav .nav-links a.active{
   background: rgba(255, 255, 255, 0.15);
    margin: 0 5px;
    border-radius: 8px;
    color: #f7d875;
    
}
.sidebar-nav .nav-links .nav-icon {
    width: 15px;
    height: 15px;
    margin-right: 10px;
      
    vertical-align: text-bottom;
    transition: transform 0.3s ease;
}


.sidebar-nav .nav-links li:hover .nav-icon {
    transform: scale(1.15);
}
.sidebar-nav .nav-links a:hover {
    background: rgba(255, 255, 255, 0.15);
    margin: 0 5px;
    border-radius: 8px;
    color: #f7d875;
}
.nav-header{
    flex-direction: column;
}

/* Main content shift */
main {
    margin-left: 225px;
    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: 1400px) {
    .sidebar-nav {
        transform: translateX(-115%);
        width: 70vw;
        max-width: 320px;
        top: 10px;
        left: 10px;
        height: calc(100vh - 20px);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.2);
    }
    .sidebar-nav.open {
        transform: translateX(0);
    }
    main {
        margin-left: 0;
    }
    .nav-toggle {
       display: flex;
    position: fixed;
    bottom: 15px;
    left: 7px; 
    height: 50px;
    width: 50px;
    z-index: 1100;
    padding: 25px;
           background-color: rgba(0, 83, 36, 0.4); 
    backdrop-filter: blur(5px);
     border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
        color: #f7d875; 
    font-size: 25px;
    cursor: pointer;
       align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-elevation-medium);
    transition: all 0.3s ease;
 text-align: center;
 margin-bottom: 0;
    }
    .nav-toggle:hover {
    background-color: rgba(0, 83, 36, 0.9);
    color: #fff;
    transform: scale(1.05);
}
}
.go-to-button {
background: linear-gradient(90deg,rgba(213, 181, 85, 0) 0%, rgba(213, 181, 85, 0.74) 100%);
    position: fixed;
    bottom: 75px;
    right: 0;
   padding: 5px;
    z-index: 1000;
    scroll-behavior: smooth;
}
.go-to-button button {
        background-color: #009a43cb;
        color: #f2f2f2;
               padding: 10px 20px;
        font-weight: bold;
        box-shadow: var(--modern-shadow);
}
hr {
    width: 60%;
    border: 1px solid #007a34;
    margin-left: 15px;
}



/* Style the sub-menu links */
.sub-menu li a {
    color: #009a44;
    padding: 8px 12px;
    text-decoration: none;
    display: block;
    border-radius: 10px;
}

.content-row-social .fa {
  margin-left: 6px; 
 }

/* "Get in Touch" text */
.contact-prompt {
  font-family: 'Barlow', 'Montserrat', 'Roboto', sans-serif;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  margin-right: 0px;
  white-space: nowrap;
text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  opacity: 0;
  transform: translateX(10px);
  display: inline-block;
  max-width: 0;
  margin-left: 0;              /* ← ensure no leading gap */
  margin-right: 0;             /* ← remove trailing gap */
  overflow: hidden;
  transition:
    max-width 0.4s ease,
    opacity 0.4s ease,
    transform 0.4s ease,
    margin-right 0.4s ease;

  animation: promptReveal 6s ease-out 1s forwards;
}

/* Visible state — add spacing back */
.content-row-social:hover .contact-prompt,
.contact-prompt.show {
  opacity: 1;
  transform: translateX(0);
  max-width: 6rem;
  margin-right: 6px;           /* ← space only when visible */
  animation: none;
}


@keyframes promptReveal {
  0% { opacity: 0; transform: translateX(10px); max-width: 0; margin-right: 0; }
  10% { opacity: 1; transform: translateX(0); max-width: 6rem; margin-right: 6px; }
  60% { opacity: 1; transform: translateX(0); max-width: 6rem; margin-right: 6px; }
  100% { opacity: 0; transform: translateX(-10px); max-width: 0; margin-right: 0; }
}


