/* 

10. Footer

*/

/* Footer Base Styling */
.site-footer {
    background-color: var(--deep-navy); /* Assumes --deep-navy is your dark blue */
    border-top: 1px solid rgba(255, 255, 255, 0.05); /* Subtle separator line */
    padding: 3rem 0;
    margin-top: 2rem;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Social Links Group */
.social-links {
    display: flex;
    gap: 20px;
    margin-bottom: 1.5rem;
}

/* Individual Icon Styling */
.social-icon {
    display: inline-block;
    width: 28px;
    height: 28px;
    color: var(--text-muted); /* Starts grey/muted */
    transition: color var(--transition-speed) ease, transform var(--transition-speed) ease;
}

.social-icon:hover {
    color: var(--construction-orange); /* Lights up on hover */
    transform: translateY(-3px); /* Gentle lift effect */
}

.social-icon svg {
    width: 100%;
    height: 100%;
}

/* Copyright Text */
.footer-copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.footer-copyright p {
    margin: 0;
}

.footer-link {
    color: var(--construction-orange);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}
.policy {
    color: var(--text-muted);
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-decoration: none;
}
.policy:hover{
  color:var(--construction-orange);
}

