/* ============================================
   3. LAYOUT: MAIN CONTENT
   ============================================ */

/* Main -------------*/

main{
    margin-top: 7rem; /* moved up just a little bit more */
    min-height:70vh;
    margin-bottom: 3rem; /* ensure content is not cut off at bottom */
}


/* ============================================
   4. LAYOUT: FOOTER
   ============================================ */

/* Footer -----------*/

footer{
    background-color: var(--themeColor);
    border-top: 4px solid rgb(235, 235, 235);
    font-size:18px;
    margin: 4rem 3rem 0 3rem;
    bottom:0;
    color:black;
    padding-bottom:1rem;
    line-height: 1.5rem;
    position: relative;
    z-index: 1;
    width: calc(100% - 6rem);
}

/* Enhanced Social Media Footer */
.footerSocial {
    background: linear-gradient(135deg, var(--logoBlue) 0%, #1e3c72 100%);
    border-radius: 20px;
    margin: 2rem auto;
    padding: 2rem 1rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(8, 106, 176, 0.3);
    max-width: 600px;
}

.socialMediaFooter {
    display: flex;
    justify-content: center;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.socialMediaFooter a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 120px;
    position: relative;
    overflow: hidden;
}

.socialMediaFooter a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.socialMediaFooter a:hover::before {
    left: 100%;
}

.socialMediaFooter a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.socialMediaFooter a i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    color: white;
}

.socialMediaFooter a:hover i {
    transform: scale(1.1);
}

.socialMediaFooter a span {
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

.address{
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
}

.address div{
    margin:3rem 1rem;
}

.address p{    
    font-size: 20px;
    text-align: left;
}
.address h3{
    padding: 0 1rem;

}
.footerLinks{
    display: flex;
    justify-content: center;
    width: 100%;
}
.footerLinks a{
    display:block;
    margin:2rem;

}
.footerLinks img{
    height: 30px;
}


.copyright{
    text-align: center;
    background-color: #223;
    border-radius: 3rem;
    color:white;
}
.login{
    color:var(--logoCyan);
}

/* ----------------- */

