/* body h1, h2, h3, h4, h5, h6, p, a, ul li {
    font-family: "Roboto Mono", monospace;
} */
body h1, h2, h3, h4, h5, h6, p, a, ul li {
    color: #000;
}
img {
    -drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}



/* HEADER - NAVBAR */
header {
    position: fixed;
    width: 100%;
    z-index: 999;
    padding-top: 0;
    background-color: #fff;
}
header .navbar {
    padding-bottom: 0;
}
header .navbar .container {
    background: #000;
    margin-top: 1em;
    padding: 5px;
    box-shadow: 0px 0px 30px rgb(0 0 0 / 4%);
}
header .navbar .logo {
    width: 50%;
}
header .navbar .logo img {
    width: 4em;
    margin-right: 0.5em;
}
header .navbar .logo h1 {
    color: #ffffff;
    font-size: 36px;
    margin-left: 0.6em;
    margin-bottom: 0;
    text-transform: capitalize;  
}
header .navbar .navbar-toggler {
    color: rgb(255, 255, 255);
    border-color: transparent;
    padding: 0%;
    padding-block: 3px !important;
}
header .navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: none;
}
header .navbar-nav {
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: row;
    background: #ffffff;
    padding: 10px;
}
header .navbar-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
}
header .navbar-nav ul li a {
    margin-inline: 1em;
    position: relative;
    font-size: 15px;
    color: #000 !important;
    font-weight: 500;
    transition: 0.2s;
    border: 2px solid #fff;
    padding-inline: 10px;
    cursor: pointer;
    justify-content: center;
    display: flex;
    gap: 5px;
}
header .navbar-nav ul li a:active, header .navbar-nav ul li a:focus, header .navbar-nav ul li a:hover {
    border: 2px solid;
    padding-inline: 10px;
}
header .navbar .menu-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 25px;
    cursor: pointer;
    position: relative;
    z-index: 2;
    margin: 20px;
}
/* header .navbar .menu-icon a {
    text-decoration: none;
    color: #ffffff;
    border: none;
    font-family: 'Roboto Mono';
    font-size: 24px;
} */
header .navbar .menu-icon .line {
    width: 1em;
    height: 2px;
    margin-left: 5px;
    background-color: #ffffff;
    transition: all 0.2s;
}
header .navbar button[aria-expanded="true"] {
    transform: translateX(0);
}
header .navbar button[aria-expanded="true"] .line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
header .navbar button[aria-expanded="true"] .line:nth-child(2) {
    opacity: 0;
}
header .navbar button[aria-expanded="true"] .line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}
@media (max-width: 992px) {
    header .navbar .container {
        width: 90%;
        padding: 5px;
    }
    header .navbar .logo {
        width: 70%;
        justify-content: space-between;
    }
    header .navbar .logo h1 {
        margin-right: 2em;
        font-size: 24px;
    }
    header .navbar .menu-icon {
        width: auto;
    }
    header .navbar .menu-icon a {
        font-size: 18px;
    }
    header .navbar-nav ul {
        flex-direction: column;
        padding-left: 0;
        width: 100%;
    }
    header .navbar-nav ul li {
        padding-block: 1px;
    }
    header .navbar-nav ul li a {
        padding: 0;
        font-size: 16px;
        background: none;
    }
    header .navbar-nav ul li a:active, header .navbar-nav ul li a:focus, header .navbar-nav ul li a:hover {
        border: 2px #fff;
        padding-inline: 10px;
    }
}
@media (max-width:767px) {
    header .navbar .logo {
        justify-content: space-between;
    }
    header .navbar .logo h1 {
        margin-right: 1em;
    }
}
@media (max-width: 500px) {
    header .navbar .logo {
        justify-content: space-between;
    }
    header .navbar .logo h1 {
        margin-right: 0;
        margin-left: 1em;
    }
}













/* SECTION - ONE */
.section-one {
    padding-top: 10em;
}
.project-container {
    margin-top: 0 !important;
}
#project-filters {
    display: flex;
    justify-content: center;
    margin-top: 1em;
    gap: 2.5px;
}
#project-filters div {
    transition: 0.2s;
    padding: 7.5px 15px;
    background: whitesmoke;
}
#project-filters div:hover {
    cursor: pointer;
}
#project-filters .filter-active {
    background: #000000;
    color: #fff;
} 
.section-one .project-description {
    text-align: justify;
    padding-inline: 1em;
}
.section-one .project-item {
    margin-top: 2em;
    margin-right: 12px;
    margin-bottom: 2em;
    padding: 0.45em;
}
.project-item .buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1em;
    margin-top: 2em;
}
.project-item button {
    padding: 5px 15px;
    background: #000;
    color: white;
    transition: 0.2s;
    width: 100%;
    border: 2px solid #000;
}
.project-item button:hover {
    color: #000;
    background-color: #dfdfdf51;
    box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.9);
}
.project-item .buttons a {
    text-decoration: none;
    padding: 5px 15px;
    background: #fff;
    color: black;
    transition: 0.2s;
    width: 100%;
    border: 2px solid #000;
    text-align: center;
}
.project-item .buttons a:hover {
    background-color: #dfdfdf51;
    box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.9);
}
.section-one img {
    width: 100%;
    padding-block: 3px;
}
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.4s;
}
.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 20px;
    width: 90% !important;
    max-width: 600px;
    border-radius: 0 !important;
    animation: slideIn 0.4s;
}
.close {
    color: #505050;
    float: right;
    font-size: 24px;
    cursor: pointer;
    margin-left: auto;
    margin-top: -12px;
    margin-bottom: 6px;
}
.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
.image-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.gallery-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    cursor: pointer;
}
#full-view-image {
    width: 100%;
    height: auto;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes slideIn {
    from { top: -300px; opacity: 0; }
    to { top: 0; opacity: 1; }
}