/* Custom overrides for navigation, chat, and mission statement */

/* Position chat button on right bottom */
#chat-btn, #chat-button {
    position: fixed !important;
    right: 20px !important;
    left: auto !important;
    bottom: 20px !important;
    z-index: 9999 !important;
}

/* Style chat modal width and position */
#chat-modal {
    right: 20px !important;
    left: auto !important;
    bottom: 80px !important;
    z-index: 9999 !important;
    width: 100%;
    max-width: 400px;
    height: calc(100% - 100px);
}

/* Always show the main navigation links on all screen sizes */
.nav-container .container .hidden {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

/* Hide hamburger button and mobile nav */
.hamburger,
.mobile-nav {
    display: none !important;
}

/* Ensure language toggle (ESP) is visible */
#lang-btn,
#lang-toggle,
#language-switcher {
    display: inline-flex !important;
}

/* Enhance mission section styling */
#mission {
    background-color: var(--primary);
    color: var(--accent);
    text-align: center;
    padding: 4rem 1rem;
}

#mission h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

#mission p {
    font-size: 1.125rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}
