/* General Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    margin: 0;
    padding: 0;
}

/* Header Styles */
header {
    background-color: #003366; /* Navy blue */
    color: #fff;
    padding: 1.5rem 1rem;
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
}

nav a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
}

nav a:hover {
    text-decoration: underline;
}

/* Section Styles */
section {
    padding: 20px;
    background-color: #f5f5f5;
    border-bottom: 1px solid #ccc;
    text-align: center;
}

section img, section video {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 10px auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

section h3 {
    color: #00274d;
    text-transform: uppercase;
    font-weight: bold;
}

section p {
    text-align: justify;
    line-height: 1.6;
    margin: 10px 0;
}

section a {
    display: inline-block;
    margin: 10px auto;
    padding: 10px 20px;
    background-color: #00274d;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

section a:hover {
    background-color: #4caf50;
    color: #fff;
}

/* Footer Styles */
footer {
    background-color: #003366;
    color: #fff;
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    section img, section video {
        width: 90%;
        max-width: 90%;
    }
}
/* Top Bar Styling */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #003366; /* Navy Blue */
    padding: 10px 15px;
}

.menu-dots {
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.menu-dots span {
    background-color: white;
    height: 4px;
    width: 25px;
    margin: 3px 0;
    border-radius: 2px;
}

.auth-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    margin-left: 10px;
}

.auth-links a:hover {
    text-decoration: underline;
}

/* Dropdown Menu Styling */
nav#menu {
    display: none; /* Hidden by default */
    background-color: #003366; /* Navy Blue */
    padding: 10px;
    text-align: left;
    position: absolute;
    top: 60px;
    left: 15px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}

nav#menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

nav#menu li {
    margin: 5px 0;
}

nav#menu a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav#menu a:hover {
    text-decoration: underline;
}