/* ================= FOOTER ================= */

.dmk-footer {
    margin: 60px auto 30px auto;
    width: 96%;
    padding: 50px 40px;

    backdrop-filter: blur(18px);
    background: linear-gradient(
        90deg,
        rgba(191,149,63,0.25),
        rgba(0,0,0,0.8)
    );

    border-radius: 18px;
    border: 1px solid rgba(255, 215, 0, 0.25);

    color: #ffffff;
}

.dmk-footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.dmk-footer-col h4 {
    color: #d4af37;
    margin-bottom: 15px;
}

.dmk-footer-brand {
    font-family: 'Cinzel', serif;
    font-size: 22px;
    background: linear-gradient(
        90deg,
        #bf953f,
        #fcf6ba,
        #b38728,
        #fbf5b7,
        #aa771c
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.dmk-footer-col ul {
    list-style: none;
    padding: 0;
}

.dmk-footer-col ul li {
    margin-bottom: 10px;
}

.dmk-footer-col ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
}

.dmk-footer-col ul li a:hover {
    color: #d4af37;
    padding-left: 5px;
}

.dmk-footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,215,0,0.2);
    font-size: 14px;
    color: #ccc;
}

/* Responsive */
@media (max-width: 992px) {
    .dmk-footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .dmk-footer-container {
        grid-template-columns: 1fr;
    }
}


/* ================= SOCIAL ICONS ================= */

.dmk-social {
    margin-top: 20px;
    display: flex;
    gap: 18px;
}

.dmk-social a {
    font-size: 28px;   /* was 22px */
    position: relative;
    display: inline-block;

    background: linear-gradient(
        90deg,
        #bf953f,
        #fcf6ba,
        #b38728,
        #fbf5b7,
        #aa771c
    );
    background-size: 300% 300%;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    transition: 0.4s ease;
}

/* Shine Animation */
.dmk-social a {
    animation: goldShine 4s linear infinite;
}

@keyframes goldShine {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 300% 50%;
    }
}

/* Hover effect */
.dmk-social a:hover {
    transform: translateY(-4px) scale(1.15);
}
@media (max-width: 600px) {

    .dmk-social {
        justify-content: center;
        margin-top: 25px;
    }

    .dmk-footer-col {
        text-align: center;
    }

}