/* General Styles */

/* Navbar Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    padding: 10px 20px;
    color: #aa0017;
    position: relative;
    z-index: 1000;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
}

.navbar-logo h1 {
    margin: 0;
    font-size: 22px;
    font-weight: bold;
    color: #aa0017;
}

.navbar-links {
    display: flex;
    gap: 10px;
}

.navbar-links a {
    color: #aa0017;
    text-decoration: none;
    font-size: 16px;
    padding: 8px 15px;
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-weight: bold;
}

.navbar-links a:hover {
    background-color: #f5f5f5;
    color: #900012;
}

/* Toggle Button for Mobile */
.navbar-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    height: 20px;
    width: 25px;
    cursor: pointer;
}

.navbar-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #aa0017;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .navbar {
        padding: 10px;
    }

    .navbar-links {
        display: none;
        flex-direction: column;
        background-color: #ffffff;
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        text-align: left;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
        border-top: 1px solid #ddd;
        margin-left: 5px;
    }

    .navbar-links a {
        display: block;
        padding: 12px 0;
        font-size: 18px;
        color: #aa0017;
        border-bottom: 1px solid #f1f1f1;
        transition: background-color 0.3s ease;
    }

    .navbar-links a:last-child {
        border-bottom: none;
    }

    .navbar-links.active {
        display: flex;
    }

    .navbar-toggle {
        display: flex;
    }
}
