/* --- Global Background Overlay --- */

@import url('https://fonts.googleapis.com/css2?family=Gudea:wght@400;700&display=swap');

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    background: linear-gradient(120deg, rgba(10,20,40,0.7) 60%, rgba(0,56,168,0.5) 100%);
    z-index: -1;
}

body {
    margin: 0;
    font-family: 'Gudea', Arial, sans-serif;
    background-color: #f0f0f0;
    height: 100vh;
    overflow: hidden;
    padding-top: 60px;
    padding-bottom: 50px;
    box-sizing: border-box;
}

/* Responsive body padding */
@media (max-width: 768px) {
    body {
        padding-top: 50px;
        padding-bottom: 40px;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 45px;
        padding-bottom: 0;
        overflow-y: auto;
        height: auto;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
    }
    
    main {
        flex: 1;
        display: flex;
        flex-direction: column;
    }
}



/* --- Footer Styles --- */
.main-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: white;
    border-top: 3px solid #0056b3;
    padding: 10px 50px;
    box-sizing: border-box;
    z-index: 10;
}
.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo-bottom img {
    height: 35px;
}
.social-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}
.social-icons a {
    color: #0056b3;
    font-size: 20px;
    text-decoration: none;
    transition: color 0.3s ease;
}
.social-icons a:hover {
    color: #003d80;
}


@media(max-height: 500px) {
    body {
    padding-top: 50px;
    }
}
