/* Footer bazë */
.footer{
    background: linear-gradient(135deg, #0f0f0f, #1c1c1c);
    color: #eee;
    padding: 60px 0 20px;
    font-family: "Poppins", sans-serif;
}

/* Wrapper i footer */
.footer-container{
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr; /* Brand | Links+Contact | Newsletter */
    gap: 40px;
}

/* Brand */
.footer-brand h2{
    font-size: 28px;
    letter-spacing: 2px;
    color: #5ba1ad;
}

.footer-brand p{
    margin-top: 10px;
    font-size: 14px;
    color: #bbb;
}

/* Links + Contact në të njëjtin rresht */
.links-contact {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Quick Links | Contact */
    gap: 40px;
}

/* Quick Links dhe Contact individual */
.footer-links h3,
.footer-contact h3{
    font-size: 18px;
    margin-bottom: 15px;
    color: #fff;
}

.footer-links ul{
    list-style: none;
    padding: 0;
}

.footer-links li{
    margin-bottom: 10px;
}

.footer-links a{
    text-decoration: none;
    color: #bbb;
    transition: 0.3s;
}

.footer-links a:hover{
    color: #5ba1ad;
}

.footer-contact p, 
.footer-contact a p{
    margin-bottom: 8px;
    font-size: 14px;
    color: #bbb;
}

/* Newsletter */
.footer-newsletter h3{
    font-size: 18px;
    margin-bottom: 10px;
    color: #fff;
}

.footer-newsletter p{
    font-size: 14px;
    margin-bottom: 10px;
    color: #bbb;
}

.footer-newsletter input{
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 4px;
    margin-bottom: 10px;
    outline: none;
}

.footer-newsletter button{
    width: 100%;
    padding: 10px;
    background: #5ba1ad;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.footer-newsletter button:hover{
    background: #3d6d75;
}

/* Bottom bar */
.footer-bottom{
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid #333;
    padding-top: 15px;
    font-size: 13px;
    color: #777;
}

/* Responsive */
@media (max-width: 900px){
    .footer-container{
        grid-template-columns: 1fr; /* Stack vertically for tablets/mobiles */
    }
    
    .links-contact{
        grid-template-columns: 1fr; /* Stack links & contact vertically */
        gap: 20px;
    }
}

@media (max-width: 500px){
    .footer-newsletter form{
        display: flex;
        flex-direction: column;
    }
}