/* Sticky Navigation Styles */
.sticky-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(101, 172, 130, 0);  /* Start fully transparent */
    transition: all 0.3s ease;
    opacity: 0;  /* Start hidden */
    visibility: hidden;  /* Hide from view and interactions */
    z-index: 1000;  /* Ensure it stays on top */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0);  /* Transparent shadow initially */
    pointer-events: none; /* Prevent interaction when hidden */
    display: none; /* Ensure it's completely hidden initially */
}

.sticky-nav.visible {
    display: block;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    background: rgba(101, 172, 130, 0.95);  /* Fade to this color */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Navigation List Styles */
.sticky-nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 1rem;
}

.sticky-nav li {
    margin: 0;
    padding: 0;
}

.sticky-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.sticky-nav a:hover {
    color: #e8e8e8;
}

/* Animation for fade in */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sticky-nav.visible {
    animation: fadeIn 0.3s ease forwards;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .sticky-nav ul {
        gap: 20px;
        padding: 0.75rem;
    }
    
    .sticky-nav a {
        font-size: 0.9rem;
    }
}