/* ================= BACKGROUND ================= */
.footer{
    position:relative;
    background:url('/img/footer.png') center/cover no-repeat;
    padding:70px 0 30px;
    font-family:'Poppins',sans-serif;
    color:#111;
}

/* SOFT GOLD LIGHT OVERLAY */
.footer::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        180deg,
        rgba(255,215,120,.18),
        rgba(255,180,60,.08)
    );
    pointer-events:none;
}

/* ================= GRID ================= */
.footer-container{
    width:92%;
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns: 2.1fr 1fr 1fr 1.2fr;
    gap:55px;
    align-items:start;
    position:relative;
    z-index:2;
}

/* ================= LOGO ================= */
.footer-logo{
    width:300px;
    margin-bottom:18px;
    filter:drop-shadow(0 10px 16px rgba(0,0,0,.28));
}

/* ================= ABOUT TEXT ================= */
.footer-about p{
    font-size:15.5px;
    line-height:1.8;
    max-width:460px;
    text-shadow:0 0 12px rgba(255,215,120,.25);
}

/* ================= HEADINGS ================= */
.footer-col h3,
.footer-account h3{
    font-family:'Playfair Display',serif;
    font-size:20px;
    margin-bottom:16px;
    color:#000;
    letter-spacing:.5px;
    text-shadow:
        0 1px 0 rgba(255,255,255,.4),
        0 0 12px rgba(255,215,120,.35);
}

/* ================= LINKS ================= */
.footer-col a{
    display:block;
    margin:9px 0;
    text-decoration:none;
    color:#111;
    font-weight:500;
    transition:.3s ease;
}

.footer-col a:hover{
    transform:translateX(6px);
    color:#000;
    text-shadow:0 0 12px rgba(255,215,120,.45);
}

/* ================= SOCIAL ================= */
.socials{
    margin-top:18px;
}

.socials a{
    width:42px;
    height:42px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#111;
    color:#fff;
    margin-right:10px;
    transition:.35s cubic-bezier(.22,1,.36,1);
}

.socials a:hover{
    transform:translateY(-6px) scale(1.12);
    box-shadow:0 12px 25px rgba(0,0,0,.3);
}

/* ================= BUTTONS ================= */
.footer-account{
    text-align:center;
}

.btn{
    display:flex;
    align-items:center;
    justify-content:center;
    height:54px;
    width:100%;
    max-width:260px;
    margin:8px auto;
    border-radius:999px;
    font-weight:600;
    text-decoration:none;
    transition:all .3s ease;
}

.btn.login{
    background:#000;
    color:#fff;
}

.btn.login:hover{
    transform:translateY(-4px);
    box-shadow:0 14px 30px rgba(0,0,0,.35);
}

.btn.register{
    background:#f1f1f1;
    color:#000;
}

.btn.register:hover{
    transform:translateY(-4px);
    box-shadow:0 14px 30px rgba(0,0,0,.25);
}

/* ================= CONTACT ================= */
.contact-mini{
    margin-top:10px;
    font-size:14.5px;
    display:flex;
    align-items:center;
    gap:10px;
    justify-content:center;
    font-weight:500;
    color:#000;
    text-shadow:
        0 1px 0 rgba(255,255,255,.35),
        0 0 8px rgba(255,215,120,.25);
}

.contact-mini i{
    width:18px;
    text-align:center;
}

/* ================= NEWSLETTER ================= */
.newsletter{
    max-width:520px;
    margin:40px auto 15px;
    display:flex;
    gap:12px;
    justify-content:center;
    position:relative;
    z-index:2;
}

.newsletter input{
    flex:1;
    height:50px;
    padding:0 20px;
    border-radius:999px;
    border:none;
    background:#2b2b2b;
    color:#fff;
    outline:none;
}

.newsletter button{
    height:50px;
    padding:0 28px;
    border:none;
    border-radius:999px;
    background:#fff;
    font-weight:600;
    cursor:pointer;
    transition:.3s ease;
}

.newsletter button:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 22px rgba(0,0,0,.25);
}

/* ================= COPYRIGHT ================= */
.copyright{
    text-align:center;
    font-size:13px;
    margin-top:12px;
    position:relative;
    z-index:2;
    text-shadow:0 0 10px rgba(255,215,120,.25);
}

/* ================= REVEAL ANIMATION ================= */
.reveal{
    opacity:0;
    transform:translateY(50px) scale(.98);
    filter:blur(8px);
    transition:
        opacity .9s cubic-bezier(.22,1,.36,1),
        transform .9s cubic-bezier(.22,1,.36,1),
        filter .9s cubic-bezier(.22,1,.36,1);
    will-change:transform,opacity;
}

.reveal.active{
    opacity:1;
    transform:translateY(0) scale(1);
    filter:blur(0);
}

/* ================= MOBILE ================= */
@media (max-width:900px){

.footer{
    padding:50px 0 25px;
}

.footer-container{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:30px;
    text-align:center;
}

.footer-logo{
    width:200px;
}

.footer-about p{
    max-width:92%;
    margin:auto;
}

.newsletter{
    flex-direction:column;
    max-width:320px;
}

.newsletter input{
    width:100%;
}

.newsletter button{
    width:170px;
    margin:auto;
}

}