/* Global Styles */
:root {
    --primary-color: #003366;
    /* Deep Navy Blue */
    --secondary-color: #d4af37;
    /* Gold */
    --text-color: #000000;
    /* Black */
    --light-bg: #f4f4f4;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--white);
    /* White background */
    color: var(--text-color);
    /* Black text */
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: center;
    /* Center vertically */
    align-items: center;
    /* Center horizontally */
    overflow: hidden;
    /* Prevent scrollbars */
}

/* Main Content (Logo) */
main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.logo-container {
    text-align: center;
    animation: fadeIn 1.5s ease-in-out;
}

.logo-container img {
    height: auto;
    width: 500px;
    /* Larger logo */
    max-width: 90vw;
    /* Removed drop-shadow for cleaner look on white */
}

/* Footer (Fixed at bottom) */
footer {
    background-color: transparent;
    color: var(--text-color);
    /* Black text */
    padding: 20px 0;
    text-align: center;
    width: 100%;
    position: absolute;
    bottom: 0;
    border-top: 1px solid #eeeeee;
    /* Subtle separator */
}

footer .footer-content {
    font-size: 0.9rem;
    font-weight: 500;
}

footer p {
    margin: 5px 0;
    opacity: 1;
}

footer a {
    color: var(--primary-color);
    /* Dark Blue for links */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

footer a:hover {
    color: var(--secondary-color);
    /* Gold on hover */
    text-decoration: underline;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Utility for mobile responsiveness */
@media (max-width: 768px) {
    .logo-container img {
        width: 300px;
    }
}