/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
    /* Width of the vertical scrollbar */
}

::-webkit-scrollbar-track {
    background: #000;
    /* Color of the track */
}

::-webkit-scrollbar-thumb {
    background: #ff0000;
    /* Color of the scrollbar */
}

::-webkit-scrollbar-thumb:hover {
    background: #b30000;
    /* Color when hovering over the scrollbar */
}

body {
    margin: 0;
    overflow: auto;
    overflow-x: hidden;
    background: #000;
    position: relative;
    z-index: 1;
}

#canvas-placeholder {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
    /* this is to contain the particles within the canvas */
}

#intro {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    z-index: 10;
}

#title {
    color: #ff0000;
    font-size: 5em;
    text-shadow: 3px 3px 10px rgba(255, 0, 0, 0.5);
    font-family: 'Roboto', sans-serif;
    user-select: none;
}

.cta {
    /* let's add a rounded border to the button */
    border: 2px solid #aa0000;
    border-radius: 10px;
    /* and add a drop shadow */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    /* let's add some padding to the button */
    padding: 10px 20px;

    user-select: none;
    font-size: 1.5em;
    color: #ff0000;
    cursor: pointer;
    transition: 0.3s ease all;
    text-shadow: 3px 3px 10px rgba(255, 0, 0, 0.5);
    margin-bottom: 50px;
}

#projects {
    position: relative;
    width: 100%;
    background: #000;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta:hover {
    /* let's change the background color on hover tiny apha */
    background: rgba(170, 0, 0, 0.2);
    transform: scale(1.1);
}

.project-card {
    background: rgb(31, 31, 31) !important;
    color: #fff !important;
    margin-bottom: 15px;
    cursor: pointer;
}

.project-card:hover {
    transform: scale(1.05);
    /* Add a hover effect to the card */
    transition: all 0.3s ease;
}

.project-card .card-body {
    flex-grow: 1;
    /* Allow it to take up remaining space */
}

.project-card .card-img-top {
    width: 100%;
    height: 20vw;
    object-fit: cover;
}

/* if screen is smaller than 768px lets make images taller */
@media (max-width: 768px) {
    .project-card .card-img-top {
        height: 40vw;
    }
}

/* lets fix the AI CHAT SYSTEMS title position on smaller screens and also make the cta button smaller */
@media (max-width: 768px) {
    #title {
        font-size: 2.5em;
    }
    .cta {
        font-size: 1em;
    }
}

.info {
    color:#ddd;
}

/* lets make links in footer red */
#footer a {
    color: #ff0000;
}

#footer a:hover {
    color: #b30000;
}

#footer {
    position: relative;
    width: 100%;
    background: #222;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

#footer .social {
    display: flex;
    justify-content: center;
    align-items: center;
}

#footer .social i {
    padding: 4px;
}

