@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');


body {
    font-family: 'Poppins', sans-serif;
    background-color: #000000;
    color: #ffffff;
    font-weight: 300;

    min-height: 100vh;
    display: flex;
    flex-direction: column;
}


main.container {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10rem;
}


.navbar-brand {
    font-weight: 600;
    font-size: 1.25rem;
    color: #ffffff !important;
}

.nav-link {
    color: #ffffff;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ffffff;
}

a {
    color: black;
    text-decoration: none;
    text-decoration-color: #ffffff;

}

a:hover {
    color: white;
    text-decoration: underline;

}


.profile-picture img {
    width: 200%;
    max-width: 500px;
    height: auto;
    border-radius: 50%;
    object-fit: cover;
    aspect-ratio: 1 / 1;

}


.profile-details {
    padding-left: 10rem;
    font-size: 0.5rem;

}



.profile-details .greeting {
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 1rem;



}

.profile-details h1 {
    font-size: 5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    margin-top: 0.5rem;
}



.profile-details .role {
    font-size: 5rem;
    font-weight: 100;
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
}

.buttons a {
    display: inline-block;
    padding: 10px 20px;
    margin-right: 15px;
    border-radius: 20px;
    background-color: #ffffff;
    color: #000000;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    transition: background-color 0.3s;
}

.buttons a:hover {
    background-color: #2b2b2b;
    color: #ffffff;
}



.contact-link {
    text-decoration: none;
    font-size: 1rem;
    color: #b91010;
    font-weight: 200;
}

.contact-link:hover {
    color: #888;
}

.profile-details .role {
    font-size: 5rem;
    white-space: nowrap;
    font-weight: 5;

}

@media (max-width: 767px) {
    main.container {
        align-items: flex-start;
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .hero-section {
        text-align: center;
    }

    .profile-picture {
        margin-bottom: 2rem;
    }

    .profile-picture img {
        max-width: 250px;
    }

    .profile-details {
        padding-left: 10;
    }

    .profile-details h1 {
        font-size: 2.5rem;
    }

    .profile-details .role {
        font-size: 5rem;

    }
}

.body {
    font-family: 'Poppins', sans-serif;
    background-color: #000000;
    color: #ffffff;
    font-weight: 300;

    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.aboutme-wrapper{
display: flex;
align-items: center;
height: 450px;
padding: 200px 50px;
}

.aboutme-wrapper {
    display: flex; 
    align-items: center; 
    gap: 5rem; 
    height: auto; 
}

.aboutme .container {
    max-width: 1200px; 
}

.aboutme-image {
    flex-shrink: 0; 
    width: 350px;
    height: 350px;
    overflow: hidden;
}

.aboutme-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px; 
}

.aboutme-info-block {
    flex-grow: 1; 
}

.aboutme-info-block h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.aboutme-info-block p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #b0b0b0;
}

.myproject-title {
     margin: 3rem 0;
     text-align: center;
}

.myproject-title h2 { 
   font-size: 3rem;
    text-transform: uppercase;
}

.myproject-grid h3 {
    margin-top: 20px;
}

.myproject-grid p {
    margin-top: 10px;
    font-size: 0.95rem;
    line-height: 1.6;
}




.myproject-grid { 
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 2fr));
    gap: 55px; 
    max-width: 1500px; 
    margin: 0 auto;  
    padding: 0 20px;
    margin-top: 100px;
    margin-bottom: 200px;   
    font-size: 0.95rem;
    line-height: 1.6;   
    text-align: center; 
}



.myproject-item {
    display: flex;
    flex-direction: column; 
    align-items: center; 
    text-align: center;
}


.myproject-item img {
   
    border-radius: 20px; 
  
    width: 100%;
    height: auto;
    object-fit: cover;
   
}

.myproject-button {
    margin-top: 20px; 
}


.myproject-item button {
    background-color: transparent; 
    color: #ffffff;
    border: 1px solid #ffffff; 
    padding: 8px 15px;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase; 
    letter-spacing: 1px; 
    cursor: pointer;
    border-radius: 5px; 
    transition: all 0.3s ease;
    
   
    margin-bottom: 10px; 
}

.myproject-item button:hover {
    background-color: #ffffff; 
    color: #000000; 
}


.myproject-item p {
    color: #b0b0b0; 
}
footer {
    background-color: #242424!important;
    color:  #1A1A1A;
    color: #ffffff;

    padding: 60px 0; 
}


footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
    gap: 110px;
    
}


.footer-grid-item {
    opacity: 1; 
    visibility: visible; 
    transition: none; 
}



.footer-grid-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.footer-grid-item ul {
    list-style: none; 
    padding: 0;
    margin: 0;
}

.footer-grid-item li {
    margin-bottom: 8px;
}

.footer-grid-item a {
    color: #CCCCCC; 
    text-decoration: none; 
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-grid-item a:hover {
    color: #ffffff; 
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}   


.myproject-item {
    display: flex;
    flex-direction: column; 
    align-items: center; 
    text-align: center;
}


.myproject-item img {
    border-radius: 20px; 
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.05); 
}


.myproject-item .project-tag-button {
   
    background-color: transparent; 
    color: #ffffff;
    border: 1px solid #ffffff; 
    padding: 8px 15px; 
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase; 
    letter-spacing: 1px; 
    cursor: pointer;
    border-radius: 5px; 
    transition: all 0.3s ease;
    
   
    text-decoration: none; 
    display: inline-block; 
    margin-top: 30px; 
    margin-bottom: 30px
}


.myproject-item .project-tag-button:hover {
    background-color: #ffffff; 
    color: #000000; 
}

.myproject-item p {
    color: #b0b0b0; 
}
