* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Roboto", sans-serif;
    position: relative;
}

header {
    width: 100%;
    height: 80px;
    background-color: #353831;
    color: #ffff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3;
    padding: 0 40px;
}

header .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1172px;
    padding: 0 80px;
}

.logo-wrapper {
    width: auto;
    height: 80px;
    line-height: 80px;
}

.logo-wrapper .logo-text {
    text-decoration: none;
    font-size: 25px;
    font-weight: bolder;
    color: #20fc8f;
}

header .main-navbar ul {
    display: flex;
    gap: 20px;
    list-style: none;
}

.main-navbar a {
    text-decoration: none;
    color: #20fc8f;
    font-weight: bold;
    font-size: 18px;
}

.main-navbar a:hover {
    color: hsla(50, 100%, 50%, 1);
}

.hamburger-menu {
    display: none;
    background-color: transparent;
    border: none;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 30px;
}

.hamburger-menu .bar {
    width: 20px;
    height: 3px;
    display: block;
    margin-bottom: 4px;
    background-color: white;
}

.hamburger-menu:hover .bar {
    background-color: hsla(50, 100%, 50%, 1);
}

header input {
    display: none;
}

header .date {
    font-size: 18px;
    font-weight: bold;
}

main.container {
    width: 100%;
}

.container .section {
    height: auto;
    padding: 80px;
    text-align: center;
    background-color: #2d2d2a;
}

.section .hero-section-content {
}

.container .section-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
    min-height: calc(100vh - 80px);
}

.hero-section-content h1 {
    font-size: 36px;
    color: rgb(232, 228, 228);
}

.hero-section-content .tag-line {
    font-size: 23px;
    margin-left: 100px;
    font-weight: 600;
    color: #20fc8f;
}

.profile-wrapper {
    width: 350px;
    height: 350px;
    border: 10px double rgb(204, 237, 204);
    border-radius: 50%;
    margin: 30px auto;
}

.profile-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.hero-section-content h2 {
    font-size: 2rem;
    margin-bottom: 12px;
    color: #20fc8f;
}

.social-media-wrapper .fa-brands {
    font-size: 38px;
    margin: 8px;
    color: white;
    transition: all 0.5s ease;
}

.fa-youtube:hover {
    color: red;
}

.fa-linkedin:hover {
    color: #0077b5;
}

.fa-github:hover {
    color: #1c0043;
}

.fa-facebook:hover {
    color: blue;
}

/* Projects Section */
.projects-section {
    width: 100%;
    padding: 80px 20px;
    background-color: #2d2d2a;
    text-align: center;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #20fc8f;
}

.projects-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* Project Card */
.project {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 300px;
    height: 350px;
    background-color: #353831;
    border: 2px solid #20fc8f;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    padding: 10px;
}

.project:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Thumbnail Container */
.project-thumbnail {
    width: 100%;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Thumbnail Images */
.project-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.project:hover .project-thumbnail img {
    transform: scale(1.05);
}
.project a {
    text-decoration: none;
}

.project h3 {
    
    font-size: 1.2rem;
    margin: 10px 0;
    color: #20fc8f; /* Default appealing green */
    background: linear-gradient(90deg, #20fc8f, #0fc5d2);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: color 0.3s ease, transform 0.3s ease;
}
.project:hover h3 {
    color: #f39c12; /* Bright orange on hover for better contrast */
    transform: scale(1.1); /* Slightly enlarges the text */
}

/* Media Queries */
@media screen and (max-width: 756px) {
    header .header-container {
        padding: 0 40px;
    }

    .hamburger-menu {
        display: block;
    }

    header .main-navbar ul {
        display: none;
        padding: 40px;
        position: absolute;
        top: 80px;
        left: 0px;
        width: 100%;
        height: 70vh;
        text-align: center;
        background-color: #0fc5d2;
        transition: all 1s ease;
    }

    header input:checked ~ .main-navbar ul {
        display: block;
    }

    header .main-navbar ul li {
        margin-bottom: 20px;
    }

    .container .section {
        padding: 80px 20px;
    }
}
