/* ===== GLOBAL ===== */
body {
    background-color: #0a0a0a; /* Optional background color */
    color: white !important;
    zoom: 80%;
    margin: 0;
    padding: 0;
}

/* ===== NAVBAR ===== */
.custom-navbar {
    background-color: #0F0F0F !important;
    border: 1px solid #1A1A1A !important;
    border-radius: 5px;
    margin-bottom: 20px;
}
.custom-navbar-title a{
    font-size: 28px;
    font-weight: 600;
    margin-right: 50px;
    color: white !important;
    text-decoration: none !important;
}
.nav-link {
    font-weight: 500 !important;
    color:rgb(255, 255, 255) !important;
}
.active {
    color: rgb(211, 114, 114) !important;
}

/* ===== ELEMENT BOXES ===== */
.element-box {
    background-color: #0F0F0F !important;
    border: 1px solid #1A1A1A !important;
    border-radius: 5px;
    box-sizing: border-box;
    padding: 25px;
}
*** End Patch
.element-box-title {
    color: white !important;
    font-size: 30px !important;
    font-weight: 800 !important;
}
.element-box-description {
    color: grey !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    margin-top: -8px;
    margin-bottom: 10px;
}

/* ===== INPUTS & BUTTONS ===== */
.custom-input {
    background-color: #161616 !important;
    color: white !important;
    border: 1px solid #1A1A1A !important;
    border-radius: 5px;
    padding: 10px 12px;
}
.custom-input::placeholder {
    color: rgb(94, 94, 94);
}
.custom-button {
    background-color: rgb(146, 77, 77);
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 16px;
    font-weight: 600;
    transition: 0.2s;
}
.custom-button:hover {
    background-color: rgb(226, 132, 132);
    color: white;
}

/* ===== RESPONSIVENESS ===== */
@media (max-width: 768px) {
    .element-box {
        padding: 18px;
    }
    .element-box-title {
        font-size: 24px !important;
    }
    .custom-navbar-title {
        font-size: 22px;
    }
}
@media (max-width: 576px) {
    .custom-navbar {
        height: auto;
        padding: 10px;
    }
    .element-box-title {
        font-size: 22px !important;
    }
}


/* Full-screen particles background */
#particles-js {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* Behind all other content */
  background-color: #0a0a0a; /* Optional background color */
}