/* ================== FOOTER STYLE ================== */
.footer-coffee {
    background: linear-gradient(135deg, #3A2525, #3A2525);
    color: #bfbfbf;
    padding: 60px 0 20px;
    font-size: 14px;
}

/* Brand text */
.footer-coffee .navbar-brand span {
    line-height: 1.1;
}

/* Paragraph */
.footer-coffee p {
    color: #bfbfbf;
    line-height: 1.7;
}

/* Footer title */
.footer-coffee h6 {
    font-size: 16px;
    letter-spacing: 1px;
}

/* Footer menu */
.footer-coffee ul li {
    margin-bottom: 8px;
}

.footer-coffee ul li a {
    color: #bfbfbf;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-coffee ul li a:hover {
    color: #ffc107;
    padding-left: 5px;
}

/* ================== SOCIAL ICON ================== */
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #2a2a2a;
    color: #fff;
    margin-right: 8px;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #ffc107;
    color: #000;
    transform: translateY(-3px);
}

/* ================== COPYRIGHT ================== */
.footer-coffee .copyright {
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 40px;
    padding-top: 15px;
    text-align: center;
    font-size: 13px;
    color: #888;
}

/* ================== RESPONSIVE ================== */
@media (max-width: 768px) {

    .footer-coffee {
        text-align: center;
    }

    .footer-coffee .navbar-brand {
        justify-content: center;
    }

    .social-icon {
        margin-bottom: 10px;
    }

}