
body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
}

.container {
    width: 80%;
    margin: 0 auto;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    flex-wrap: wrap;
}

.logo-container {
    display: flex;
    align-items: center;
    order: 0; /* Logo stays at the top */
}

.logo {
    max-width: 60px;
}

.system-name {
    color: #fff;
    margin-left: 10px;
    font-size: 2em;
    font-weight: bold;
    font-family: 'Lobster', cursive;
}

.navbar {
    background-color: #002147;
    padding: 10px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.navbar-toggler {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5em;
    cursor: pointer;
    margin-left: auto;
    order: 1; /* Keeps the button on the right */
}

.nav-collapse {
    display: none;
    width: 100%;
    margin-top: 15px;
}

.nav-collapse.active {
    display: block;
}

.nav-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    margin-top: 10px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    padding: 10px;
    display: block;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #ffa500;
}

@media (min-width: 768px) {
    .nav-collapse {
        display: block;
        width: auto;
    }
    .nav-list {
        flex-direction: row;
        align-items: center;
        margin-top: 0;
    }
    .navbar-toggler {
        display: none;
    }
    .nav-right {
        margin-left: auto;
    }
}

.hero {
    position: relative;
    height: 70vh;
    color: #fff;
    text-align: center;
}
.bg-image {
    background-image: url('/static/images/background/hero-bg.png');
    -webkit-filter: blur(3px);
    filter: blur(8px);
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}


.bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 80%;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.4);
    border: 3px solid #f1f1f1;
    font-weight: bold;
    font-family: 'Arima', cursive;
}

.hero h1 {
    font-size: 3em;
    font-family: 'Lobster', cursive;
}

.hero p {
    font-size: 1.2em;
    margin: 20px 0;
}

.btn-primary {
    background-color: #ffa500;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 1.2em;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    width: 100%;
}

.btn-primary:hover {
    background-color: #ff8c00;
    transform: translateY(-5px);
}

.info, .features {
    background-color: #fff;
    padding: 50px 0;
    text-align: center;
    font-family: 'Arima', cursive;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    padding-top: 20px;
}

.feature-item {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
}

.feature-item i {
    font-size: 3em;
    color: #ffa500;
    margin-bottom: 10px;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    font-size: 1em;
}

/* Additional Login Page Styles in styles.css */

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
    background: linear-gradient(to bottom right, #002147, #004080);
    padding: 20px;
}

.login-box {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.login-box h2 {
    margin-bottom: 20px;
    font-size: 2em;
    color: #002147;
}

.login-box form {
    display: flex;
    flex-direction: column;
}

.login-box label {
    margin-bottom: 5px;
    text-align: left;
    font-weight: bold;
    color: #333;
}

.login-box input {
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
    width: calc(100% - 22px);
    box-sizing: border-box;
}

.register-text {
    margin-top: 20px;
    font-size: 0.9em;
}

.register-text a {
    color: #002147;
    text-decoration: none;
    font-weight: bold;
}

.register-text a:hover {
    text-decoration: underline;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .nav-collapse {
        width: 100%;
        background: #002147;
        text-align: left;
        padding: 10px;
    }
    .nav-list {
        flex-direction: column;
        width: 100%;
    }
    .nav-list li {
        width: 100%;
    }
    .nav-list a {
        padding: 10px;
        display: block;
        width: 100%;
    }
    .login-container {
        padding: 10px;
    }
    .login-box {
        padding: 20px;
    }
    .btn-primary {
        padding: 10px;
        font-size: 1em;
    }
}

.nav-right {
    margin-left: auto;
}

.nav-collapse {
    margin-top: 10px;
}

