/* footer.css */

footer {
    background-color: #0a0a0a; /* Sleek dark background */
    color: #ffffff;
    padding: 40px 10%;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1); /* Subtle divider line */
    font-family: 'Inter', sans-serif;
}

footer p {
    font-size: 0.9rem;
    margin-bottom: 20px;
    opacity: 0.7; /* Softens the copyright text */
    letter-spacing: 0.5px;
}

/* Social Links Styling */
.social {
    color: #42b6e9; /* The blue accent from your mockup */
    text-decoration: none;
    font-weight: 500;
    margin: 0 10px;
    transition: all 0.3s ease;
    display: inline-block;
}

.social:hover {
    color: #ffffff;
    transform: translateY(-3px); /* Gentle float effect on hover */
}

/* Vertical Divider Styling (The "|" in your HTML) */
footer {
    font-size: 0.85rem;
}

/* Responsive: Stack content on small screens */
@media (max-width: 600px) {
    footer {
        padding: 30px 20px;
    }
    
    .social {
        display: block;
        margin: 10px 0;
    }
    
    /* Hide the pipes on mobile for a cleaner vertical list */
    footer {
        color: transparent; /* Hides the "|" text */
    }
    footer p, footer a {
        color: #ffffff; /* Brings back the actual text */
    }
}