:root {
    --primary: #0056b3;
    --secondary: #1e90ff;
    --dark: #0a1929;
    --light: #f8f9fa;
}

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

/* Prevent flash of uncompiled Vue templates */
[v-cloak] { display: none !important; }

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&display=swap');

body {
    /* font-family: 'Montserrat', sans-serif; */
    line-height: 1.6;
    color: var(--light);
    background-color: #00148c;
    background: linear-gradient(to top, #021B79, #0c1b91);
    overflow-x: hidden;
    font-weight: 600;
    /* Body padding is now handled by layout-fix.css */
}

#canvas-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
}

header {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
    padding-bottom: 0.5rem;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 110px;
}

.founded {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

nav {
    display: flex;
    gap: 15px;
}

nav a, nav span {
    color: var(--light);
    text-decoration: none;
    font-size: 0.9rem;
}

nav a:hover {
    opacity: 0.8;
}

nav a.active {
    color: var(--secondary);
    font-weight: 700;
}

nav small {
    font-size: 0.7rem;
    background-color: rgba(255,255,255,0.2);
    padding: 2px 5px;
    border-radius: 3px;
}

main {
    min-height: calc(100vh - 200px);
    padding: 2rem 0;
    position: relative;
    z-index: 2;
}

h2 {
    color: var(--light);
    margin-bottom: 1.5rem;
    font-size: 2rem;
    text-align: center;
}

/* Footer Styles */
footer {
    text-align: center;
    padding: 0.5rem;
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: var(--light);
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--light);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: inline-block;
    padding: 5px 10px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 4px;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
}

.copyright p {
    margin: 0;
    font-weight: 400;
    text-transform: none;
    font-size: 0.9em;
}

/* Mobile menu */
#mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 20, 140, 0.95);
    z-index: 100;
    padding: 20px;
    flex-direction: column;
}

/* Responsive Design */
@media (max-width: 768px) {
    .founded-desktop {
        display: none;
    }
    .founded-mobile {
        display: block !important;
    }
    .desktop-nav {
        display: none !important;
    }
    .mobile-nav {
        display: block !important;
    }
    header {
        align-items: center !important;
    }
    .logo img {
        height: 80px !important;
    }
    .footer-content {
        flex-direction: column;
    }
} 