﻿/*=========================================================
                    FOOTER
=========================================================*/

.footer {
    position: relative;
    background: #4A0C15;
    color: #fff;
    overflow: hidden;
}

    /* Decorative Background */

    .footer::before {
        content: "";
        position: absolute;
        width: 350px;
        height: 350px;
        background: rgba(212,175,55,.04);
        border-radius: 50%;
        top: -150px;
        left: -120px;
    }

    .footer::after {
        content: "";
        position: absolute;
        width: 280px;
        height: 280px;
        background: rgba(212,175,55,.04);
        border-radius: 50%;
        bottom: -120px;
        right: -100px;
    }

/*=========================================================
                CTA SECTION
=========================================================*/

.footer-cta {
    background: linear-gradient(135deg,#6B0F1A,#8B1E2D);
    padding: 60px 0;
    position: relative;
    z-index: 2;
}

    .footer-cta h2 {
        color: #fff;
        font-size: 42px;
        font-family: "Cormorant Garamond",serif;
        margin-bottom: 15px;
    }

    .footer-cta p {
        color: rgba(255,255,255,.85);
        margin: 0;
        font-size: 17px;
    }

.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #D4AF37;
    color: #fff;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: .35s;
}

    .footer-cta-btn:hover {
        background: #fff;
        color: #6B0F1A;
        transform: translateY(-3px);
    }

/*=========================================================
                MAIN FOOTER
=========================================================*/

.footer-main {
    padding: 90px 0 70px;
    position: relative;
    z-index: 2;
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 25px;
}

.footer-about p {
    color: #d9d9d9;
    line-height: 1.9;
    margin-bottom: 30px;
}

/*=========================================================
                HEADING
=========================================================*/

.footer h4 {
    color: #D4AF37;
    margin-bottom: 25px;
    font-size: 24px;
    font-family: "Cormorant Garamond",serif;
    position: relative;
}

    .footer h4::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -10px;
        width: 45px;
        height: 2px;
        background: #D4AF37;
    }

/*=========================================================
                LINKS
=========================================================*/

.footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .footer ul li {
        margin-bottom: 15px;
    }

        .footer ul li a {
            color: #d8d8d8;
            text-decoration: none;
            transition: .3s;
        }

            .footer ul li a:hover {
                color: #D4AF37;
                padding-left: 8px;
            }

/*=========================================================
                CONTACT
=========================================================*/

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: #ddd;
    line-height: 1.8;
}

.footer-contact i {
    width: 42px;
    height: 42px;
    background: rgba(212,175,55,.15);
    color: #D4AF37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/*=========================================================
                SOCIAL ICONS
=========================================================*/

.social-links {
    display: flex;
    gap: 15px;
}

    .social-links a {
        width: 46px;
        height: 46px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255,255,255,.08);
        color: #fff;
        text-decoration: none;
        transition: .35s;
    }

        .social-links a:hover {
            background: #D4AF37;
            color: #fff;
            transform: translateY(-5px);
        }

/*=========================================================
                BOTTOM
=========================================================*/

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.12);
    padding: 22px 0;
    color: #cfcfcf;
    position: relative;
    z-index: 2;
}

    .footer-bottom a {
        color: #D4AF37;
        text-decoration: none;
        font-weight: 600;
    }

        .footer-bottom a:hover {
            color: #fff;
        }

/*=========================================================
                BACK TO TOP
=========================================================*/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 55px;
    height: 55px;
    background: #D4AF37;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    font-size: 20px;
    z-index: 999;
    transition: .35s;
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
}

    .back-to-top:hover {
        background: #6B0F1A;
        color: #fff;
        transform: translateY(-6px);
    }

/*=========================================================
                RESPONSIVE
=========================================================*/

@media(max-width:991px) {

    .footer-cta {
        text-align: center;
    }

        .footer-cta h2 {
            font-size: 34px;
        }

    .footer-cta-btn {
        margin-top: 30px;
    }

    .footer-main {
        padding: 70px 0 50px;
    }
}

@media(max-width:767px) {

    .footer-cta {
        padding: 50px 0;
    }

        .footer-cta h2 {
            font-size: 30px;
        }

    .footer-main {
        text-align: center;
    }

    .footer h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-links {
        justify-content: center;
    }

    .footer-contact li {
        justify-content: center;
        text-align: left;
    }

    .footer-bottom {
        text-align: center;
    }

        .footer-bottom .text-md-end {
            margin-top: 10px;
            text-align: center !important;
        }
}

@media(max-width:576px) {

    .footer-cta h2 {
        font-size: 26px;
    }

    .footer-cta-btn {
        padding: 14px 28px;
    }

    .back-to-top {
        width: 48px;
        height: 48px;
        right: 20px;
        bottom: 20px;
    }
}
