html {
    /* --almost-white: #e7ecefff; */
    --dark-blue: #274c77ff;
    --lapis: #365f88ff;
    --bluebell: #447199ff;
    --ocean: #6096baff;
    --sky: #b9e3f0;
    --battleship: #8b8c89ff;
    --stone: rgb(188, 189, 191);

    --light-teal: #abf1e1;

    --dark-green: #132a13ff;
    --hunter: #31572cff;
    --fern: #4f772dff;
    --moss: #90a955ff;
    --light-green: #d0f4d8;
    --almost-white: #fafffe;
    scroll-behavior: smooth;


}

body {
    font-family: "Helvetica", "Arial", sans-serif;
    /* font-family: "Verdana", "Geneva", sans-serif; */
    /* font-family: "Georgia", serif; */

    margin: 0;
    padding: 0;
    background: var(--almost-white);
    color: #333333;

}


header {
    background: var(--dark-green);
    color: var(--almost-white);
    text-align: center;
    padding: 2rem 1rem;

}


.header-wrapper {
    display: flex;
    justify-content: center;
}


section {
    padding: 2rem 1rem;
    max-width: 1000px;
    margin: auto;
    text-align: center;
}

h2 {
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--ocean);
    display: inline-block;
}

.in-progress {
    color: var(--dark-blue);
    font-weight: italic;
    font-size: .75rem;
    margin: 0;
}

p {
    margin-bottom: 5px;
}

/* 
#ride-warriors-card {
    height: 100%;
} */


.skills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.skills-grid i {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.skill-item {
    flex: 1 1 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 2px 0px;
}

.skill-item p {
    font-size: 200px;
}

/*
.project-card {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    background: #f8f8f8;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
*/
.project-card {
    display: flex;
    flex-direction: row;
    /* flex-wrap: wrap; */
    gap: 10px;
    min-height: 50vh;
    max-height: 75vh;
    margin: 10px;
}



.project-card img {
    width: 100%;
    /* max-width: 300px; */
    object-fit: cover;
    padding: 10px;
    /* object-position: center; */
}





.project-image {
    /* flex: 1 1 300px; */
    max-width: 25vw;
    display: flex;
    background-color: var(--sky);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.1),
        inset -2px -2px 5px rgba(255, 255, 255, 0.7);
    margin: 1.5rem 0;
    flex-wrap: wrap;
}



.project-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    display: block;
    padding: 1rem;
    box-sizing: border-box;
}

/* .project-info {
    flex: 1;
    padding: 1rem;
} */

.project-info {
    flex: 1 1 300px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;

    display: flex;
    background-color: var(--sky);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.1),
        inset -2px -2px 5px rgba(255, 255, 255, 0.7);
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.project-links {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
}



footer {
    text-align: center;
    padding: 1rem;
    background: #3b0855;
    color: white;
}


#avatar {
    margin-top: 10px;
    width: 200px;
    height: 200px;
    /* width: 192px;
    height: 192px; */
    border-radius: 50%;
    object-fit: cover;
    border: 0.35rem solid var(--almost-white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}


button {
    font-size: 1rem;
    padding: 10px 16px;
    color: var(--almost-white);
    border-radius: 999px;
    border: 1px solid var(--dark-blue);
    /* dark border */
    display: flex;
    align-items: center;
    gap: 8px;
    /* spacing between icon and text */
    cursor: pointer;
    background: transparent;
}




.project-links a {
    margin-right: 1rem;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    margin-top: 1rem;
    background: var(--lapis);
    border-radius: 999px;

}



button:hover {
    /* background: var(--dark-blue); */
    background-color: rgb(255, 0, 170);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    /* optional */
}

.btn-header {
    background-color: var(--fern);
    border: 1px solid var(--hunter);
}

.btn-header:hover {
    background: var(--hunter);
    transform: scale(1.05);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    justify-items: center;
    font-size: 50px;

}


.skills-grid p {
    font-size: 10px;
}



/* Navbar styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: var(--stone);
    justify-content: center;
    padding: 1rem 2rem;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}


.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}


.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}


.nav-links li a {
    color: #333333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}


.nav-links li a:hover {
    color: #ff6d97;
    /* Accent color on hover */
}

/* Add padding so content doesn't hide under the fixed nav */
section {
    padding-top: 100px;
}



@media (max-width: 600px) {
    .skills-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.education-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}


.education-card {
    max-width: 600px;
    background-color: var(--light-green);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.1),
        inset -2px -2px 5px rgba(255, 255, 255, 0.7);
    margin: 1.5rem auto;
    padding-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
}


.about-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}


.about-card {
    max-width: 600px;
    background-color: var(--light-teal);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.1),
        inset -2px -2px 5px rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
    /* display: flex; */
    padding-bottom: 1.5rem;

    /* flex-direction: column; */
    /* align-items: center; */
    /* flex-wrap: wrap; */
}