/* Global styles */
html {
    overflow-x: hidden !important;
    background-color: #522398;
    font-family: 'Montserrat', sans-serif;
    max-width: 100%;
}

body {
    margin: 0;
    background-color: #150c25;
}

p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: #848884;
}

/* Header / Nav */
.header {
    height: 85px;
    background-color: #150c25 !important;
    font-family: 'Montserrat', sans-serif;
}

.navbar {
    background-color: #150c25;
}

.nav-link {
    color: white !important;
}

/* Particles hero background */
#particles-js {
    width: 100%;
    height: 80vh;
    background-color: #522398;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    box-shadow: inset 0 0 20px #150c25;
}

/* Member cards */
.member-card {
    background: #150c25;
    color: #fff;
    border: 1px solid #7933e1;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .4);
    padding: 1.5rem;
    transition: box-shadow 0.3s ease;
}

.member-card:hover {
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

/* Update / content boxes */
.update-box {
    background: #150c25;
    color: #fff;
    border-left: 6px solid #7933e1;
    box-shadow: 0 3px 8px rgba(0, 0, 0, .3);
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: box-shadow 0.3s ease;
}

.update-box:hover {
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

.section-title {
    color: #7933e1;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* Icons */
.icons {
    color: #7933e1;
    text-decoration: none;
    transition: text-shadow 0.3s ease;
}

.icons:hover {
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.9);
}

.icons i {
    font-size: 1.4rem;
}

/* Logo */
.logo {
    width: 200px;
}

/* Footer */
footer {
    background-color: #0a0612;
}

/* Lists */
li {
    font-size: 1rem;
    color: #b0b8c0;
    margin-bottom: 0.4rem;
}

/* Project cards */
.project-card {
    background: #150c25;
    color: #fff;
    border: 1px solid #7933e1;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .4);
    padding: 2rem;
    border-radius: 4px;
    transition: box-shadow 0.3s ease;
    height: 100%;
}

.project-card:hover {
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

.project-card h5 {
    color: #7933e1;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* CTA button */
.btn-bci {
    padding: 10px 20px;
    background: linear-gradient(to bottom right, purple, hotpink);
    color: white;
    border: none;
    border-radius: 25px;
    margin-top: 1.25rem;
    display: inline-block;
    text-decoration: none;
    font-weight: 600;
    transition: filter 0.3s ease;
}

.btn-bci:hover {
    filter: brightness(75%);
    color: white;
}

/* Section backgrounds */
.projects-section,
.updates-section,
.team-section {
    background-color: #111219;
}

.mission-section {
    background-color: #150c25;
}

/* Responsive */
@media screen and (max-width: 750px) {
    .logo {
        width: 130px;
    }
}
