/*==========================================================
                        FOOTER
==========================================================*/

.footer{

    position:relative;

    padding:30px 8% 40px;

    background:var(--cream);

    overflow:hidden;

    text-align:center;

}

/*==============================
        BACKGROUND GLOW
==============================*/

.footer::before{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    border-radius:50%;

    background:rgba(244,223,230,.45);

    filter:blur(120px);

    top:-120px;

    left:-120px;

    z-index:0;

}

.footer::after{

    content:"";

    position:absolute;

    width:300px;

    height:300px;

    border-radius:50%;

    background:rgba(232,239,207,.45);

    filter:blur(120px);

    right:-100px;

    bottom:-100px;

    z-index:0;

}

.footer-container{

    position:relative;

    z-index:2;

}

/*==============================
            LOGO
==============================*/

.footer-logo{

    width:75px;

    margin-bottom:20px;

    transition:.4s;

}

.footer-logo:hover{

    transform:scale(1.08);

}

/*==============================
          TITLE
==============================*/

.footer h3{

    font-family:'Cormorant Garamond',serif;

    font-size:34px;

    font-weight:600;

    color:var(--text);

    margin-bottom:35px;

}

/*==============================
        SOCIAL ICONS
==============================*/

.footer-social{

    display:flex;

    justify-content:center;

    gap:18px;

    margin-bottom:35px;

}

.footer-social a{

    width:52px;

    height:52px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    background:rgba(255,255,255,.75);

    border:1px solid rgba(151,161,59,.18);

    transition:.35s;

    box-shadow:0 10px 25px rgba(0,0,0,.04);

}

.footer-social a i,

.footer-social a svg{

    font-size:22px;

    width:22px;

    height:22px;

    color:var(--sage);

    transition:.35s;

}

.footer-social a:hover{

    transform:translateY(-6px);

    background:var(--blush);

    border-color:rgba(185,94,132,.25);

}

.footer-social a:hover i,

.footer-social a:hover svg{

    color:var(--rose);

}

/*==============================
         SIGNATURE
==============================*/

.footer-signature{

    font-family:'Allura',cursive;

    font-size:56px;

    color:var(--rose);

    margin-bottom:25px;

}

/*==============================
          DIVIDER
==============================*/

.footer-divider{

    width:120px;

    height:2px;

    background:linear-gradient(
        to right,
        transparent,
        var(--sage),
        transparent
    );

    margin:0 auto 28px;

}

/*==============================
            TEXT
==============================*/

.copyright{

    color:var(--text);

    font-size:15px;

    margin-bottom:8px;

}

.footer-credit{

    color:var(--light-text);

    font-size:15px;

    margin-bottom:14px;

}

.footer-end{

    font-size:13px;

    color:var(--light-text);

    opacity:.7;

}

/*==============================
      CHERRY BLOSSOMS
==============================*/

.footer-blossom{

    position:absolute;

    font-size:28px;

    opacity:.12;

    animation:floatBlossom 8s ease-in-out infinite;

    pointer-events:none;

}

.blossom-left{

    top:40px;

    left:50px;

}

.blossom-right{

    bottom:60px;

    right:60px;

    animation-delay:3s;

}

@keyframes floatBlossom{

    0%,100%{

        transform:translateY(0) rotate(0deg);

    }

    50%{

        transform:translateY(-12px) rotate(12deg);

    }

}

/*==============================
        BACK TO TOP
==============================*/

#backToTop{

    position:fixed;

    right:35px;

    bottom:35px;

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:var(--sage);

    color:white;

    cursor:pointer;

    display:flex;

    justify-content:center;

    align-items:center;

    box-shadow:0 10px 30px rgba(151,161,59,.35);

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:999;

}

#backToTop svg{

    width:22px;

    height:22px;

}

#backToTop.show{

    opacity:1;

    visibility:visible;

}

#backToTop:hover{

    transform:translateY(-6px);

    background:var(--rose);

}

/*==============================
          RESPONSIVE
==============================*/

@media(max-width:768px){

.footer{

    padding:80px 25px 35px;

}

.footer h3{

    font-size:28px;

}

.footer-signature{

    font-size:46px;

}

.footer-social{

    gap:14px;

}

#backToTop{

    right:20px;

    bottom:20px;

}

}

#backToTop{

    opacity:1;

    visibility:visible;

}