footer{
    background-color: black;
}

.footer-logo img{
    max-width:250px;
    margin-bottom: 20px;
}



.footer-container-aesthetic {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2em;
    position: relative;
    z-index: 1;
}

.footer-top-aesthetic {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 3em;
}

/* Logo */
.footer-logo-aesthetic img {
    width: 180px;
    height: auto;
    margin-bottom: 2em;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-logo-aesthetic img:hover {
    opacity: 1;
}

/* Socials with Fading Lines */
.footer-socials-wrapper-aesthetic {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 400px;
}

.fade-line {
    flex-grow: 1;
    height: 1px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.8));
}

.fade-line.right {
    background: linear-gradient(to left, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.8));
}

.footer-socials-aesthetic {
    display: flex;
    gap: 1.5em;
    padding: 0 1em;
}

.social-icon-aesthetic {
    color: #fff;
    font-size: 1.25rem;
    transition: color 0.3s ease, transform 0.3s ease;
    opacity: 0.8;
}

.social-icon-aesthetic:hover {
    color: #ff3366; /* A vibrant pink for a pop of color */
    transform: translateY(-3px);
    opacity: 1;
}

/* Menu Columns Section */
.footer-bottom-aesthetic {
    display: flex;
    justify-content: center;
    gap: 5em;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 3em;
}

.footer-column-aesthetic {
    text-align: left;
}

.footer-column-title-aesthetic {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ff3366;
    margin-bottom: 10px!important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links-list-aesthetic {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links-list-aesthetic a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links-list-aesthetic a:hover {
    color: #fff;

}

/* Copyright Section */
.footer-copyright-aesthetic {
    text-align: center;
    margin-top: 3em;
    padding-top: 2em;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright-aesthetic p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Responsive adjustments */
@media (max-width: 330px) {
    .footer-top-aesthetic,
    .footer-bottom-aesthetic {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-column-aesthetic {
        text-align: center; /* Center the entire column content */
    }
    
    .footer-links-list-aesthetic {
        align-items: center;
    }
    
    .footer-links-list-aesthetic li {
        text-align: center; /* Center the text within each list item */
        width: 100%; /* Ensure full width */
    }

    .footer-bottom-aesthetic {
        gap: 3.5em;
    }


    .footer-logo img{
    width:100%;

}


}



/* --- Social Icons Styling --- */
.social-icons {
    display: flex;
    list-style: none; /* Removes bullets */
    margin: 0;
    padding: 0;
    gap: 1.5em; /* Controls the space between icons */
}

/* Ensure the a tags and i tags are styled correctly */
.social-icons a {
    color: #fff;
    font-size: 1.25rem;
    transition: color 0.3s ease, transform 0.3s ease;
    opacity: 0.8;
}

.social-icons a:hover {
    color: #ff3366; /* Your vibrant pink */
    transform: translateY(-3px);
    opacity: 1;
}