/* ============================= */
/*  SOCIAL ICON BAR  */
/* ============================= */

.header-social {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Icon button style */
.header-social li a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 18px; 
    font-size: 16px;
    color: #fff;

    transition: all 0.3s ease;
}

/* Hover effect */
.header-social li a:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

/* ============================= */
/* Brand Background Colors       */
/* ============================= */

.header-social li:nth-child(1) a {
    background: #1877f2; /* Facebook */
}

.header-social li:nth-child(2) a {
    background: #1da1f2; /* Twitter */
}

.header-social li:nth-child(3) a {
    background: radial-gradient(circle at 30% 30%, 
        #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
    /* Instagram */
}

.header-social li:nth-child(4) a {
    background: #ff0000; /* YouTube */
}

/* ============================= */
/* Mobile Responsive             */
/* ============================= */

@media (max-width: 768px) {
    .header-social {
        justify-content: center;
        margin-top: 8px;
    }

    .header-social li a {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }
}

