@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Manrope:wght@200..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    font-family: "Lato", sans-serif;
}

body {
    min-height: 100vh;
    background-color: #191919;
    position: relative;
    overflow-x: hidden;
}
body span.bigbg{
    display: block;
    position: absolute;
    top: 20%;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #565656;
    opacity: 0.3;
    filter: blur(200px);
    z-index: -2;
    animation: BackgroundPoop infinite 3s ease-in;
}
nav {
    display: flex;
    position: sticky;
    justify-content: space-evenly;
    top: 0.25rem;
    margin: 0 auto;
    padding: 0.25rem 1rem;
    width: 80%;
    height: 60px;
    border: 1px solid transparent;
    overflow: hidden;
    border-radius: 0.75rem;
    z-index: 2;
}

nav .menu ,nav .links{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    gap: 1rem;
    

}
nav .links{
    gap: 0.5rem;
}
nav .menu .menu-item ,nav .links .links-item{
    display: flex;
    height: 90%;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
    border-radius: 0.75rem;
}

nav .menu .menu-item:hover ,nav .menu .menu-item.active{
    background-color: #191919;
    opacity: 0.9;
    .menu-link {
        color: #D8d8d8;
    }
}

nav .menu .menu-item .menu-link{
    display: flex;
    width: 100%;
    height: 100%;
    color: #D8d8d8;
    text-transform: uppercase;
    font-size: 1.29rem;
    font-family: "Lato", sans-serif;
    padding: 0 0.75rem;
    font-weight: 900;
    font-style: normal;
    justify-content: center;
    align-items: center;
}
nav .links .links-item .links-link {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.2rem;
    width: 100%;
    height: 100%;
    color: #D8d8d8;
    padding: 0 0.25rem;
}
nav .bg {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: darkgray;
    opacity: 1;
    filter: blur(100px);
    z-index: -1;
    animation: none;
}

main {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    padding: 0 1rem;
    padding-top: 1rem;
    width: 80%;
    align-items: center;
    justify-content: start;
}
main .hr{
    width: 100%;
    height: 25px;
    position: relative;
}
main .hr .bg {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 25px;
    background-color: black;
    opacity: 0.3;
    z-index: 1;
}
.bbg{
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: darkgray;
    opacity: 0.3;
    z-index: -1;
    animation: none;
}
main section {
    width: 100%;
    height: 325px;
    padding: 2rem ;
    position: relative;
}
main section.main{
    flex-direction: row;
    align-items: center;
    height: 350px;
    border-top: 1px solid #333333;
     border-bottom: 1px solid #333333;
     padding: 0 0 0 5rem;
     overflow: hidden;
}
main section.main h1{
    font-size: 3rem;
    margin: 0 auto;
}
main section.main .cover{
    height: 250px;
    width:250px;
    overflow: hidden;
    border-radius: 50%;
}
main section.main .cover img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
main section.blogs{
    height: 425px;
     border-bottom: 1px solid #333333;
     border-radius: 2rem 2rem 0px 0px;
}main section.projects{
    height: 425px;
}
main section{
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}
main .projects{
    border-radius: 2rem 2rem 0px 0;
}
main section h1{
    color: #D8d8d8;
    text-transform: uppercase;
    font-family: "Lato", sans-serif;
    font-weight: 900;
    font-style: normal;
}

main section .swiper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.swiper-wrapper {
    display: flex;
}

.swiper-slide {
    width: 250px;
    min-height: 250px;
    border-radius: 2rem;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.swiper-slide:hover {
    width: 300px;
}

.swiper-slide .content {
    padding: 1rem;
    z-index: 2;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.content-cover {
    width: 100%;
    height: 150px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
    background-color: #d8d8d8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-cover img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.title {
    margin: 0.5rem 0;
    font-weight: bold;
    color: #222;
}

.desc {
    font-size: 0.95rem;
    color: #191919;
    flex-grow: 1;
}

.swiper-slide  .bg {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    opacity: 0.8;
    filter: blur(150px);
    rotate: 45deg;
    z-index: -1;
}
footer {
    margin-top:1rem ;
    background-color: #101010;
    color: #fff;
    padding: 40px 20px;
    font-family: 'Arial', sans-serif;
}

.footer-content {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    text-align: left;
}

.row {
    
    flex: 1 1 250px;
    width: 70%;
}

.row h3 {
    margin-bottom: 15px;
    font-size: 18px;
    border-bottom: 2px solid #555;
    padding-bottom: 5px;
}

.row-content {
    list-style: none;
    display: flex;
    flex-direction: column;
    padding: 0 0 0 2rem;
}

.content-item {

    margin-bottom: 10px;
    font-size: 14px;
}

.content-item a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.content-item a:hover {
    color: #00aced;
    text-decoration: underline;
}

.footer-copy {
    text-align: center;
    margin-top: 30px;
    font-size: 13px;
    color: #aaa;
}

/* Responsive Design */
@media (max-width: 768px) {
    .links{
        display: none !important;
    }
    .footer-content {
        flex-direction: column;
        align-items: center;
    }
    .row{flex:1 1 100%;}
}

@keyframes BackgroundPoop {
    0%{
        filter: blur(75px);
    }
    50%{
        filter: blur(150px);
    }
    100%{
        filter: blur(75px);
    }
}