/* --- FOOTER SECTION STYLES --- */

.footer-1 {
    padding: 3rem 5%; /* Adjusted padding */
    background: #030308; /* Very dark background */
    border-top: 3px solid #00bfff; /* Azure dividing line */
    box-shadow: 0 -5px 20px rgba(0, 191, 255, 0.2); /* Subtle glow */
    position: relative;
    z-index: 10;
}

/* Footer Title (Using the Gold/Brass Header Style) */
.footer-title-1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    /* Use Gold/Brass gradient */
    background: linear-gradient(90deg, #ffebad 0%, #d8ae43 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

/* Tagline/Motto */
.footer-tagline-1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

/* Social Icons */
.social-icons-1 {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 3rem;
}

.social-icon-btn-1 {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(0, 191, 255, 0.1);
    border: 1px solid rgba(0, 191, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00bfff;
    font-size: 1.3rem;
    transition: background 0.3s, transform 0.3s;
}

.social-icon-btn-1:hover {
    background: rgba(0, 191, 255, 0.3);
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 0 15px #00bfff;
}

/* Copyright/Console Line */
.copyright-1 {
    font-family: monospace; /* Monospaced font for console look */
    font-size: 0.8rem;
    color: #48bb78; /* Terminal success green */
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    letter-spacing: 0.5px;
}

.copyright-1 .icon-azure-1 {
    color: #00bfff;
    margin-right: 5px;
}