.footer {
    width: 100%;
    background: rgba(var(--primary-dark), 0.8);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
}

.footer__container {
    display: flex;
    justify-content: space-around;
    align-items: start;
    flex-wrap: wrap;
}


/* =====SLOGAN===== */
.college_slogan {
    text-align: center;
    color: white;
    position: relative;
    font-weight: bold;
    color: #222;
    font-size: 1em;
    width: fit-content;
    margin: auto auto 1em auto;
    padding-top: 1em
}

.college_slogan::after {
    content: "";
    display: block;
    width: 2em;
    height: 3px;
    background-color: rgb(var(--secondary));
    margin-top: 3px;
    margin-left: 2em;
    border-radius: 2px;
}

hr.customHR {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(255, 255, 255, 0.75), rgba(0, 0, 0, 0));
}


/* Styles for all footer columns */
.footer__contact,
.footer__links,
.footer__map {
    background-color: white;
    padding: 1em;
    border-radius: 10px;
    margin: 1em 1em;
}

.footer__links {
    white-space: nowrap;
}

.footer__contact h2,
.footer__links h2,
.footer__map h2{
    text-align: left;
}

.footer__contact span,
.footer__links span {
    width: 100%;
    font-size: 1em;
    text-align: left;
}

.footer__contact a,
.footer__links a {
    display: flex;
    align-items: center;
    font-size: 1.3em;
    text-decoration: none;
    color: black;
    transition: 0.5s ease;
    margin-top: 1em;
}

.footer a:hover {
    color: rgb(var(--secondary));
}

.footer__contact,
.footer__map {
    flex: 1 1 33%;
}

.footer__links {
    flex: 1 1 25%;
}

.footer__links,
.footer__map {
    width: fit-content;
    text-align: center;
}

.footer h2 {
    position: relative;
    font-weight: bold;
    font-size: 1.2rem;
    color: #222;
    margin-bottom: 1em;
    font-size: 1.8em;
}

.footer h2::after {
    content: "";
    display: block;
    width: 24px;
    height: 3px;
    background-color: rgb(var(--secondary));
    margin-top: 3px;
    border-radius: 2px;
}


/* Footer column content for all columns */
.footer__map iframe {
    border-radius: 10px;
    text-align: center;
    border: none;
}

/* Address styling */
.footer__contact .footer__address {
    line-height: normal;
    margin-top: 1em;
}


/* Footer images */
.footer img {
    height: 2em;
    width: 2em;
    margin: 0em 1em;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    padding: 10px;
    transition: transform 0.5s;
}
.footer__social-icons img{
    height: 2.5em;
    width: 2.5em;
}

.footer img:hover {
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
    transform: scale(1.1);
}

.footer__social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    align-items: center;
    margin-top: 2em;
}



/* Footer credits */
.footer__credits {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5em;
    border-top: 1px double rgb(255, 255, 255, 0.1);
    color: #000000;
    font-size: 0.9rem;
    flex-wrap: wrap;
    background-color: white;
}

.footer__credits .footer__copyright,
.footer__credits .footer__developed-by {
    text-align: center;
}

.footer__credits a {
    color: rgb(var(--secondary));
    font-weight: bold;
}


@media (min-width: 769px) {
    .footer__credits .footer__copyright {
        text-align: left;
    }
    .footer__credits .footer__developed-by {
        text-align: right;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .footer__credits {
        flex-direction: column;
    }
    .footer__container {
        flex-direction: column;
        align-items: center;
    }
    .footer h2{
        text-align: center;
        width: fit-content;
    }
    .footer__title{
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .footer img {
        margin: 0em 0.5em 0em 0em;
    }

    .footer__contact,
    .footer__links,
    .footer__map {
        width: 95%;
        max-width: 95%;
        box-sizing: border-box;
        padding: 2em 0.5em;
        margin: 1em auto;
    }

    .footer__links span,
    .footer__map span {
        text-align: center;
    }
    
    .footer__contact a,
    .footer__links a,
    .footer__map a {
        justify-content: center;
        text-align: center;
    }

    .socialWrapper {
        margin-right: 0px;
    }

    .footer__map iframe {
        width: 100%;
    }
}



@media (max-width: 300px) {
    .college_slogan {
        font-size: 0.8em;
    }
}