:root {
    --primary-blue: #003366;
    --accent-blue: #00aaff;
    --soft-blue: #f0f7ff;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    background-color: var(--soft-blue);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Navbar */
nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem 5%;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.nav-brand {
    display: flex;
    align-items: center;
}

.nav-brand img {
    height: 80px;
    object-fit: contain;
}

/* Main Section */
main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px; /* Offset for fixed nav */
}

.under-construction {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 4rem auto;
    text-align: center;
    padding: 0 2rem;
}

.hero-image-container {
    width: 100%;
    height: 60vh;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    margin-bottom: 2.5rem;
    position: relative;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-image-container:hover img {
    transform: scale(1.05);
}

.message-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: inline-block;
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

h1 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.status-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--accent-blue);
    color: white;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 170, 255, 0.3);
}

/* Footer */
footer {
    padding: 3rem 5%;
    background: var(--primary-blue);
    text-align: center;
    color: var(--text-light);
}

.footer-logo img {
    height: 40px;
    filter: brightness(0) invert(1); /* Make it white if it's dark */
    margin-bottom: 1rem;
    opacity: 0.8;
}

.footer-text {
    font-size: 0.9rem;
    opacity: 0.6;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    nav {
        padding: 1rem 5%;
    }
    
    .nav-brand img {
        height: 55px; /* Scaled down for mobile screens */
    }

    main {
        padding-top: 70px;
    }

    .under-construction {
        margin: 2rem auto;
        padding: 0 1rem;
    }

    .hero-image-container {
        height: 35vh;
        border-radius: 16px;
        margin-bottom: 1.5rem;
    }

    .message-card {
        padding: 1.5rem;
        width: 100%;
        border-radius: 12px;
    }

    h1 {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    p {
        font-size: 0.9rem;
    }

    .status-badge {
        padding: 0.4rem 1.2rem;
        font-size: 0.75rem;
        margin-bottom: 1rem;
    }

    footer {
        padding: 2rem 5%;
    }
}

