/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #00A3E0, #222); /* Gradient from blue to dark grey */
    color: white;
    text-align: center;
}

/* Header & Navbar */
header {
    background: linear-gradient(135deg, #00A3E0, #222); /* Gradient effect on header */
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

h1 {
    margin: 0;
    font-size: 28px;
    color: #00A3E0;
    text-shadow: 2px 2px 5px black; /* Text glow effect */
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

nav ul li a:hover {
    color: #00A3E0;
}

/* Divisions Page */
.divisions {
    margin-top: 50px;
    padding: 30px;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
}

.divisions h2 {
    font-size: 32px;
    color: #00A3E0;
    text-shadow: 2px 2px 5px black; /* Text glow effect */
}

.division {
    background-color: #222;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    transition: background 0.3s ease-in-out;
}

.division:hover {
    background-color: #00A3E0;
    color: black;
}

.division h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.division p {
    font-size: 16px;
    line-height: 1.5;
}

/* Footer */
footer {
    margin-top: 50px;
    padding: 20px;
    background: linear-gradient(135deg, #00A3E0, #222); /* Gradient effect on footer */
    color: white;
    text-align: center;
}

/* Active Link in Navbar */
nav ul li a.active {
    color: #00A3E0;
    text-decoration: underline;
}

/* Button Styling */
.btn {
    display: inline-block;
    background-color: #00A3E0;
    color: white;
    padding: 10px 20px;
    margin-top: 15px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
}

.btn:hover {
    background-color: #0080B3;
}
