/* ===== FOOTER PREMIUM ===== */
.footer {
    background-color: #fff;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
}
.footer .container{
    padding: 70px 40px 50px;
    box-shadow: 0 0 2px 0 #ccc4;
    border: 1px solid #bbb7;
    border-top: none;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
    z-index: 0;
}

.footer-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-logo-img {
    height: 50px;
    width: 110px;
    object-fit: cover;
}

.footer .footer-description {
    font-size: 1.2rem;
    line-height: 1.5;
    color: var(--color-primary-dark);
    margin: .6rem 0 1.2rem;
    max-width: 100%;
    text-wrap: balance;
    max-width: 35ch;
}

.social-links {
    display: flex;
    gap: .6rem;
}

.social-link {
    width: 38px;
    height: 38px;
    border: 1px solid #ccc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    font-size: 1.05rem;
    justify-content: center;
    color: var(--color-primary-dark);
    text-decoration: none;
    transition: all var(--transition-medium);
}

.social-link:hover {
    background-color: var(--color-secondary);
    color: var(--color-white);
    transform: translateY(-3px);
}

.footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-link {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color var(--transition-fast);
    padding: 0.3rem 0;
}

.footer-link:hover {
    color: var(--color-secondary);
    padding-left: 5px;
}

.footer-divider {
    height: 1px;
    background-color: var(--color-primary-dark);
    margin: 1.5rem 0;
    position: relative;
    z-index: 1;
    opacity: .2;
}

.footer .footer-bottom {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer .footer-bottom p{
    color: var(--color-primary-dark);
}
.copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
}

.footer-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
}
@media(max-width:966px){
    .footer .footer-bottom{
        flex-direction: column;
        align-items: start;
    }
}
@media(max-width:888px){

    .footer .footer-description {
        font-size: 1rem;
        max-width: 400px;
    }
}
@media(max-width:700px){
    .footer .footer-content{
        grid-template-columns: 1fr;
    }
    .copyright {
        font-size: 0.8rem;
    }
}
@media(max-width:500px){
    .footer .container{
        padding: 50px 30px;
    }
    .footer-note{
        display: none;
    }
    .footer .footer-description {
        font-size: .9rem;
    }
}
