/* =========================================================
   BRIDAL GALORE FOOTER
========================================================= */

.site-footer {
    background: #000000;
    color: #ffffff;
    margin-top: 0;
    width: 100%;
    overflow: hidden;
}


/* =========================================================
   FOOTER MAIN
========================================================= */

.footer-container {
    width: min(1200px, 90%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr 1.2fr;

    gap: 60px;

    padding: 80px 0 70px;
}


/* =========================================================
   FOOTER COLUMNS
========================================================= */

.footer-column {
    min-width: 0;
}

.footer-column h3 {
    font-family: "Playfair Display", serif;

    font-size: 21px;
    font-weight: 500;

    color: #c7b06a;

    margin: 0 0 25px;

    line-height: 1.3;
}

.footer-brand h2 {
    font-family: "Playfair Display", serif;

    font-size: 30px;
    font-weight: 500;

    color: #c7b06a;

    margin: 0 0 20px;

    line-height: 1.2;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.72);

    font-size: 15px;
    line-height: 1.8;

    margin: 0;

    max-width: 330px;
}


/* =========================================================
   QUICK LINKS
========================================================= */

.footer-links {
    list-style: none;

    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li:last-child {
    margin-bottom: 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);

    text-decoration: none;

    font-size: 15px;

    display: inline-block;

    transition:
        color 0.3s ease,
        padding-left 0.3s ease;
}

.footer-links a:hover {
    color: #c7b06a;
    padding-left: 5px;
}


/* =========================================================
   CONTACT
========================================================= */

.footer-contact {
    list-style: none;

    margin: 0;
    padding: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;

    gap: 12px;

    margin-bottom: 18px;

    color: rgba(255, 255, 255, 0.75);

    font-size: 15px;

    line-height: 1.6;

    min-width: 0;
}

.footer-contact li:last-child {
    margin-bottom: 0;
}

.footer-contact i {
    color: #c7b06a;

    width: 18px;
    min-width: 18px;

    margin-top: 4px;

    text-align: center;
}

.footer-contact span,
.footer-contact a {
    min-width: 0;

    overflow-wrap: anywhere;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.75);

    text-decoration: none;

    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #c7b06a;
}


/* =========================================================
   SOCIAL MEDIA
========================================================= */

.footer-social p {
    margin-bottom: 25px;
}

.footer-social-icons {
    display: flex;

    align-items: center;

    gap: 12px;

    flex-wrap: wrap;
}

.footer-social-icons a {
    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    border: 1px solid rgba(201, 162, 77, 0.5);

    border-radius: 50%;

    color: #c7b06a;

    text-decoration: none;

    font-size: 16px;

    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease,
        border-color 0.3s ease;
}

.footer-social-icons a:hover {
    background: #8E4162;

    border-color: #8E4162;

    color: #ffffff;

    transform: translateY(-4px);
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.site-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);

    width: 100%;
}

.footer-bottom-container {
    width: min(1200px, 90%);

    margin: 0 auto;

    min-height: 70px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 25px;
}

.footer-bottom-container p {
    margin: 0;

    color: rgba(255, 255, 255, 0.55);

    font-size: 13px;

    line-height: 1.6;

    text-align: center;
}

.powered-by {
    text-align: center;
}

/* Vertical separator */
.footer-bottom-container .powered-by {
    position: relative;

    padding-left: 25px;
}

.footer-bottom-container .powered-by::before {
    content: "";

    position: absolute;

    left: 0;
    top: 50%;

    width: 1px;
    height: 18px;

    background: rgba(255, 255, 255, 0.25);

    transform: translateY(-50%);
}

.powered-by a {
    color: #c7b06a;

    text-decoration: none;

    transition: color 0.3s ease;
}

.powered-by a:hover {
    color: #ffffff;
}

/* =========================================================
   LARGE LAPTOP
   1025px - 1200px
========================================================= */

@media (max-width: 1200px) {

    .footer-container {
        width: 92%;

        gap: 45px;
    }

    .footer-bottom-container {
        width: 92%;
    }
}


/* =========================================================
   TABLET
   769px - 1024px
========================================================= */

@media (max-width: 1024px) {

    .footer-container {
        width: 90%;

        grid-template-columns: repeat(2, minmax(0, 1fr));

        column-gap: 50px;
        row-gap: 50px;

        padding: 70px 0 60px;
    }

    .footer-brand h2 {
        font-size: 28px;
    }

    .footer-column h3 {
        font-size: 20px;
    }

    .footer-column p {
        max-width: 100%;
    }
}


/* =========================================================
   SMALL TABLET / LARGE PHONE
   600px - 768px
========================================================= */

@media (max-width: 768px) {

    .footer-container {
        width: 90%;

        grid-template-columns: 1fr;

        gap: 45px;

        padding: 60px 0 50px;
    }

    .footer-column {
        width: 100%;
    }

    .footer-column p {
        max-width: 600px;
    }

    .footer-bottom-container {
        width: 90%;

        min-height: auto;

        padding: 22px 0;

        flex-direction: column;

        justify-content: center;

        text-align: center;

        gap: 8px;
    }

    .powered-by {
        text-align: center;
    }
}


/* =========================================================
   PHONE
   481px - 600px
========================================================= */

@media (max-width: 600px) {

    .footer-container {
        width: 90%;

        padding: 55px 0 45px;

        gap: 40px;
    }

    .footer-brand h2 {
        font-size: 26px;
    }

    .footer-column h3 {
        font-size: 20px;

        margin-bottom: 18px;
    }

    .footer-column p,
    .footer-links a,
    .footer-contact li {
        font-size: 14px;
    }

    .footer-contact li {
        gap: 10px;
    }

    .footer-social p {
        margin-bottom: 20px;
    }

    .footer-social-icons {
        gap: 10px;
    }

    .footer-social-icons a {
        width: 40px;
        height: 40px;

        font-size: 15px;
    }

    .footer-bottom-container {
        width: 90%;
        min-height: 70px;
        padding: 20px 0;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }

    .footer-bottom-container p {
        font-size: 12px;
    }

        .footer-bottom-container .powered-by {
        padding-left: 15px;
    }

    .footer-bottom-container .powered-by::before {
        height: 16px;
    }
}


/* =========================================================
   SMALL PHONE
   361px - 480px
========================================================= */

@media (max-width: 480px) {

    .footer-container {
        width: 88%;

        padding: 50px 0 45px;

        gap: 38px;
    }

    .footer-brand h2 {
        font-size: 25px;
    }

    .footer-column h3 {
        font-size: 19px;

        margin-bottom: 18px;
    }

    .footer-column p,
    .footer-links a,
    .footer-contact li {
        font-size: 14px;
    }

    .footer-contact li {
        align-items: flex-start;

        gap: 9px;
    }

    .footer-social-icons {
        gap: 9px;
    }

    .footer-social-icons a {
        width: 39px;
        height: 39px;

        font-size: 14px;
    }

    .footer-bottom-container {
        width: 88%;

        padding: 20px 0;
    }

    .footer-bottom-container p {
        font-size: 12px;
    }
}


/* =========================================================
   VERY SMALL PHONE
   0px - 360px
========================================================= */

@media (max-width: 360px) {

    .footer-container {
        width: 90%;

        padding: 45px 0 40px;

        gap: 35px;
    }

    .footer-brand h2 {
        font-size: 23px;
    }

    .footer-column h3 {
        font-size: 18px;
    }

    .footer-column p,
    .footer-links a,
    .footer-contact li {
        font-size: 13px;

        line-height: 1.7;
    }

    .footer-social-icons {
        gap: 8px;
    }

    .footer-social-icons a {
        width: 37px;
        height: 37px;

        font-size: 13px;
    }

    .footer-bottom-container {
        width: 90%;

        padding: 18px 0;
    }

    .footer-bottom-container p {
        font-size: 11px;
    }
}


/* =========================================================
   EXTRA SMALL PHONES
   0px - 320px
========================================================= */

@media (max-width: 320px) {

    .footer-container {
        width: 92%;
    }

    .footer-brand h2 {
        font-size: 21px;
    }

    .footer-social-icons {
        gap: 7px;
    }

    .footer-social-icons a {
        width: 35px;
        height: 35px;

        font-size: 12px;
    }
}