/* =============================================
   Miracle Liquors – Custom Footer
   ============================================= */

.ml-custom-footer {
    background-color: #375248;
    color: #ffffff;
    padding: 30px clamp(10px, 5vw + 1rem, 120px);
    font-family: 'Fauna One', serif;
    width: 100%;
    border: 0px dashed yellow;

}

.ml-footer-container {
    max-width: 1280px;
    margin: 0 clamp(0.5rem, 5vw, 2.5rem);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(16px, 4vw, 32px);
    border: 0px solid red;

}

.ml-footer-column {
    display: flex;
    flex-direction: column;
    gap: 5px;
    border: 0px solid orange;
}

/* Footer titels */
.ml-footer-heading {
    font-family: 'Cinzel Decorative', serif;
    font-size: 1.1rem;
    font-weight: 550;
    color: #ffffff;
    text-transform: none;
    margin-bottom: 0px;
    border: 0px solid yellow;
}

/* Links */
.ml-footer-links a {
    color: #ffffff;
    text-decoration: none;
    letter-spacing: .2px;
    font-size: 0.87rem;
    line-height: 2;
    transition: color 0.3s ease;
    border: 0px dashed aqua;
}

.ml-footer-links a:hover {
    color: #ffc857;
}

/* Bodytekst */
.ml-footer-text {
    font-size: 0.77rem;
    color: #ffffff;
    line-height: 1.3;
    border: 0px dashed pink;
}

/* Logo */
.ml-footer-logo img {
    width: 100%;
    height: auto;
    max-width: 300px;
}

/* Contacticoontjes */
.ml-footer-contact-icons i {
    color: #ffc857;
    margin-right: 10px;
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.ml-footer-contact-icons p {
    margin: 5px 0;
    display: flex;
    align-items: center;
    font-size: 0.87rem;
    color: #ffffff;
}

/* Social icons */
.ml-footer-socials {
    margin-top: 10px;
}

.ml-footer-socials a {
    margin-right: 10px;
    font-size: 1.4rem;
    color: #ffffff;
    transition: color 0.3s ease;
}

.ml-footer-socials a:hover {
    color: #ffc857;
}

/* Horizontale lijn (divider) */
.ml-footer-rule {
    border: none;
    margin: 0;
    width: 90%;
    background: linear-gradient(90deg, #80cda7, #ffc857);
    height: 2px;
    opacity: 0.55;
}

/* NIX18 logo rechtsonder */
.ml-footer-nix18 {
    margin-top: auto;
    text-align: right;
    border: 0px solid hotpink;
}

.ml-footer-nix18 img {
    max-width: 80px;
    height: auto;
    border: 0px dashed skyblue;
}

/* Footer bottom (optioneel) */
.ml-footer-bottom {
    text-align: center;
    font-size: 0.85rem;
    color: #ffffffaa;
    margin-top: 20px;
    border-top: 1px solid #ffffff22;
    padding-top: 20px;
    margin-bottom: -10px;
}

/* =============================================
   Responsiveness
   ============================================= */


/* Mobiel: 1 kolom */
@media (max-width: 768px) {
    .ml-footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .ml-footer-column {
        align-items: center;
    }

    .ml-footer-nix18 {
        text-align: center;
        margin-top: 20px;
    }
}

