/* Footer Styling */
:root {
    --primary-green: #0a5c36;
    --white: #ffffff;
    /* Add other variables if needed */
}
.footer-section {
    background-color: var(--primary-green); /* #0a5c36 */
    color: var(--white);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg, 
        rgba(255, 255, 255, 0.05) 0%, 
        rgba(255, 255, 255, 0.02) 25%, 
        rgba(255, 255, 255, 0.05) 50%, 
        rgba(255, 255, 255, 0.02) 75%, 
        rgba(255, 255, 255, 0.05) 100%
    );
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
    z-index: 1;
}

.footer-section .container {
    position: relative;
    z-index: 2;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 400;
    margin: 0;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.footer-section p:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Simple Animation */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Fade-in animation for footer */
.footer-section {
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .footer-section {
        padding: 2.5rem 0;
    }
    
    .footer-section p {
        font-size: 0.95rem;
        padding: 0.4rem 1.2rem;
    }
}

@media (max-width: 576px) {
    .footer-section {
        padding: 2rem 0;
    }
    
    .footer-section p {
        font-size: 0.9rem;
        padding: 0.3rem 1rem;
    }
}

/* Logo Styling */
.logo {
    padding: 0 20px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700; /* Make it bolder for better visibility */
    color: var(--primary); /* This sets Wages to green (#0a5c36) */
    text-shadow: 
        -1px -1px 0 rgba(255, 255, 255, 0.3),
        1px -1px 0 rgba(255, 255, 255, 0.3),
        -1px 1px 0 rgba(255, 255, 255, 0.3),
        1px 1px 0 rgba(255, 255, 255, 0.3),
        0 0 4px rgba(255, 255, 255, 0.5); /* White outline effect */
    letter-spacing: 0.5px; /* Add some spacing for better readability */
}

.logo h1 span {
    color: #b38b2d; /* This sets OnUs to accent gold */
    text-shadow: 
        -1px -1px 0 rgba(0, 0, 0, 0.2),
        1px -1px 0 rgba(0, 0, 0, 0.2),
        -1px 1px 0 rgba(0, 0, 0, 0.2),
        1px 1px 0 rgba(0, 0, 0, 0.2); /* Dark outline for gold text for contrast */
}