feat: integrate portfolio section, fix grid layout and button styles

This commit is contained in:
Daniel LaForce 2025-04-26 20:23:10 -06:00
parent 9c48434a3e
commit af61b8afb7
2 changed files with 1016 additions and 47 deletions

File diff suppressed because it is too large Load Diff

View File

@ -1328,24 +1328,31 @@ background-clip: text;
box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.3);
}
/* Footer */
/* Footer styles */
.footer {
width: 100%;
padding: 2rem 0;
background: transparent;
border-top: 1px solid var(--border);
margin-top: 2rem;
margin-top: 4rem;
}
.footer .container {
display: flex;
flex-direction: column;
align-items: center;
}
.footer-content {
display: flex;
justify-content: space-between;
width: 100%;
align-items: center;
flex-wrap: wrap;
gap: 1rem;
margin-bottom: 1.5rem;
position: relative;
}
.footer-logo {
position: absolute;
left: 0;
font-weight: 700;
font-size: 1.5rem;
}
@ -1353,53 +1360,45 @@ background-clip: text;
.footer-links {
display: flex;
gap: 1.5rem;
flex-wrap: wrap;
margin: 0 auto;
}
.footer-links a {
color: var(--text-secondary);
text-decoration: none;
transition: color var(--transition-normal);
transition: color 0.3s;
}
.footer-links a:hover {
color: var(--accent);
}
.footer-social {
display: flex;
gap: 1rem;
}
.footer-social a {
color: var(--text-secondary);
font-size: 1.25rem;
transition: color var(--transition-normal);
}
.footer-social a:hover {
color: var(--accent);
}
.footer-bottom {
margin-top: 1.5rem;
text-align: center;
color: var(--text-secondary);
font-size: 0.9rem;
width: 100%;
}
.footer-bottom .disclaimer {
margin-top: 0.25rem;
}
/* Responsive behavior */
@media (max-width: 768px) {
.footer-content {
flex-direction: column;
text-align: center;
padding-top: 2rem;
gap: 1.5rem;
}
.footer-logo {
position: static;
margin-bottom: 1rem;
}
.footer-links {
justify-content: center;
}
.footer-social {
justify-content: center;
margin: 0;
}
}
@ -2016,18 +2015,38 @@ body::before {
}
.project-link {
font-size: 0.85rem;
font-weight: 500;
color: var(--accent);
transition: all var(--transition-normal);
/* Apply button styles */
display: inline-flex;
align-items: center;
gap: 0.5rem;
justify-content: center;
padding: 0.5rem 1rem; /* Adjusted padding */
font-weight: 600;
border-radius: 0.5rem;
transition: all var(--transition-normal);
cursor: pointer;
position: relative;
overflow: hidden;
border: none;
outline: none;
gap: 0.5rem; /* Keep the gap for icon */
font-size: 0.9rem; /* Match general button size */
text-decoration: none; /* Remove underline */
/* Specific button appearance */
background-color: var(--accent);
color: white;
}
.project-link i {
margin-left: 0.5rem; /* Keep icon spacing */
}
.project-link:hover {
color: var(--accent-darker);
text-decoration: underline;
background-color: var(--accent-darker); /* Darken on hover */
color: white; /* Keep text white */
box-shadow: var(--accent-glow);
transform: translateY(-2px);
text-decoration: none; /* Ensure no underline on hover */
}
/* Responsive adjustments */
@ -2063,5 +2082,3 @@ body::before {
display: inline-block;
margin-right: 0.5rem;
}