/* ====================================
   FOOTER NUSANTARA / ACEH
==================================== */

.footer-nusantara {
    position: relative;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(195, 132, 57, 0.14),
            transparent 35%
        ),
        #281711;

    color: #f8ead8;
}


/* ====================================
   TOP ORNAMENT
==================================== */

.footer-pattern {
    width: 100%;
    height: 15px;

    background:
        repeating-linear-gradient(
            45deg,
            #b66b32 0,
            #b66b32 10px,
            #e3b969 10px,
            #e3b969 20px,
            #281711 20px,
            #281711 30px
        );

    opacity: 0.85;
}


/* ====================================
   CONTAINER
==================================== */

.footer-container {
    position: relative;
    z-index: 3;

    width: min(1280px, calc(100% - 48px));

    margin: auto;

    padding: 85px 0 30px;
}


/* ====================================
   MAIN
==================================== */

.footer-main {
    display: grid;

    grid-template-columns:
        1.5fr
        0.7fr
        0.7fr
        1.3fr;

    gap: 55px;

    align-items: start;
}


/* ====================================
   BRAND
==================================== */

.footer-logo img {
    width: auto;
    height: 64px;

    object-fit: contain;
}


.footer-brand p {
    max-width: 410px;

    margin-top: 25px;

    color: rgba(248, 234, 216, 0.7);

    font-size: 14px;

    line-height: 1.8;
}


/* ====================================
   SOCIAL
==================================== */

.footer-social {
    display: flex;

    gap: 12px;

    margin-top: 27px;
}


.footer-social a {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    border: 1px solid rgba(227, 185, 105, 0.25);

    border-radius: 50%;

    color: #e3b969;

    font-size: 11px;
    font-weight: 600;

    transition: 0.3s ease;
}


.footer-social a:hover {
    background: #b66b32;

    border-color: #b66b32;

    color: white;

    transform: translateY(-4px);
}


/* ====================================
   COLUMN
==================================== */

.footer-column {
    display: flex;

    flex-direction: column;

    gap: 14px;
}


.footer-title {
    display: block;

    margin-bottom: 10px;

    color: #e3b969;

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 2.5px;

    text-transform: uppercase;
}


.footer-column a {
    width: fit-content;

    color: rgba(248, 234, 216, 0.72);

    font-size: 14px;

    transition: 0.3s ease;
}


.footer-column a:hover {
    color: #e3b969;

    transform: translateX(5px);
}


/* ====================================
   EVENT CTA
==================================== */

.footer-event h3 {
    margin-top: 14px;

    color: #fff5e6;

    font-family: "Cinzel", serif;

    font-size: clamp(24px, 3vw, 36px);

    line-height: 1.35;
}


.footer-cta {
    display: inline-flex;

    align-items: center;

    gap: 13px;

    margin-top: 28px;

    padding: 13px 23px;

    border: 1px solid rgba(227, 185, 105, 0.35);

    border-radius: 50px;

    color: #e3b969;

    font-size: 13px;

    transition: 0.3s ease;
}


.footer-cta:hover {
    background: #b66b32;

    border-color: #b66b32;

    color: white;
}


.footer-cta span {
    transition: transform 0.3s ease;
}


.footer-cta:hover span {
    transform: translateX(5px);
}


/* ====================================
   BOTTOM
==================================== */

.footer-bottom {
    display: flex;

    justify-content: space-between;
    align-items: center;

    gap: 20px;

    margin-top: 70px;

    padding-top: 25px;

    border-top:
        1px solid rgba(227, 185, 105, 0.15);
}


.footer-bottom p {
    color: rgba(248, 234, 216, 0.48);

    font-size: 12px;
}


.footer-theme {
    font-family: "Cinzel", serif;

    letter-spacing: 1px;
}


/* ====================================
   DECORATIVE ACEH STYLE
==================================== */

.footer-ornament {
    position: absolute;

    width: 330px;
    height: 330px;

    border:
        1px solid rgba(227, 185, 105, 0.08);

    transform: rotate(45deg);

    pointer-events: none;
}


.footer-ornament::before,
.footer-ornament::after {
    content: "";

    position: absolute;

    inset: 35px;

    border:
        1px solid rgba(227, 185, 105, 0.07);
}


.footer-ornament::after {
    inset: 80px;
}


.footer-ornament-left {
    left: -220px;
    bottom: -140px;
}


.footer-ornament-right {
    right: -220px;
    top: 80px;
}


/* ====================================
   TABLET
==================================== */

@media (max-width: 1024px) {

    .footer-main {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


/* ====================================
   MOBILE
==================================== */

@media (max-width: 640px) {

    .footer-container {
        width: calc(100% - 36px);

        padding-top: 65px;
    }


    .footer-main {
        grid-template-columns: 1fr;

        gap: 45px;
    }


    .footer-logo img {
        height: 52px;
    }


    .footer-bottom {
        flex-direction: column;

        align-items: flex-start;

        margin-top: 50px;
    }


    .footer-ornament {
        width: 230px;
        height: 230px;
    }

}