This commit is contained in:
2025-08-18 16:13:05 -03:00
commit e3e83a3f40
12 changed files with 1054 additions and 0 deletions

153
css/sections/hero.css Normal file
View File

@@ -0,0 +1,153 @@
.hero-details {
display: flex;
flex-direction: row;
gap: 32px;
align-items: flex-start;
width: 100%;
}
.hero-main-column {
display: flex;
flex-direction: column;
gap: 24px;
flex: 1 1 0;
min-width: 0;
}
.hero-card {
padding: 48px;
width: 100%;
display: grid;
grid-template-columns: 200px 1fr;
gap: 40px;
align-items: center;
animation: fadeInUp 0.8s ease-out;
}
.name {
font-size: 2.5rem;
font-weight: 700;
margin-bottom: 8px;
background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.description {
font-size: 1.2rem;
margin-bottom: 32px;
color: rgba(255, 255, 255, 0.8);
font-weight: 400;
}
.social-links {
display: flex;
gap: 16px;
flex-wrap: wrap;
}
.social-link {
padding: 12px 20px;
background: rgba(10, 18, 40, 0.85);
color: #fff;
border: none;
border-radius: 10px;
text-decoration: none;
font-weight: 500;
font-size: 15px;
position: relative;
overflow: visible;
box-shadow: 0 2px 16px 0 rgba(31, 38, 135, 0.12);
transition: background 0.18s, transform 0.18s;
}
/* Modern underline effect under text */
.social-link span {
position: relative;
z-index: 1;
display: inline-block;
}
.social-link span::after {
content: '';
display: block;
width: 100%;
height: 2px;
background: linear-gradient(90deg, #fff 0%, #667eea 100%);
border-radius: 1px;
position: absolute;
left: 0;
bottom: -4px;
opacity: 0.7;
transition: height 0.18s, opacity 0.18s;
}
.social-link:hover {
background: rgba(20, 30, 60, 0.95);
transform: translateY(-1px) scale(1.03);
}
.social-link:hover span::after {
height: 3px;
opacity: 1;
}
@media (max-width: 900px) {
.hero-details {
flex-direction: column;
gap: 24px;
}
.hero-card {
grid-template-columns: 1fr;
}
}
@media (max-width: 768px) {
.hero-card {
grid-template-columns: 1fr;
gap: 32px;
padding: 32px 24px;
text-align: center;
}
.avatar {
width: 140px;
height: 140px;
margin: 0 auto;
font-size: 40px;
}
.name {
font-size: 2rem;
}
.description {
font-size: 1.1rem;
}
.social-links {
justify-content: center;
}
}
@media (max-width: 480px) {
.hero-card {
padding: 24px 16px;
}
.avatar {
width: 120px;
height: 120px;
font-size: 32px;
}
.name {
font-size: 1.8rem;
}
.social-links {
gap: 12px;
}
.social-link {
padding: 10px 16px;
font-size: 13px;
}
}

68
css/sections/homelab.css Normal file
View File

@@ -0,0 +1,68 @@
.homelab-section {
margin-top: 18px;
padding: 32px 24px;
background: rgba(20, 20, 30, 0.10);
backdrop-filter: blur(24px) saturate(140%) brightness(1.08);
-webkit-backdrop-filter: blur(24px) saturate(140%) brightness(1.08);
border-radius: 24px;
box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18), inset 0 1px 0 rgba(255,255,255,0.10);
min-width: 26rem;
max-width: 26rem;
align-self: stretch;
display: flex;
flex-direction: column;
gap: 18px;
}
.homelab-title {
font-size: 1.4rem;
font-weight: 700;
margin-bottom: 10px;
letter-spacing: 0.03em;
background: linear-gradient(270deg, #764ba2, #2b2e6c, #764ba2, #2b2e6c);
background-size: 400% 400%;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
animation: homelab-gradient-move 12s linear infinite;
}
@keyframes homelab-gradient-move {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
.homelab-buttons {
display: flex;
gap: 16px;
flex-wrap: wrap;
}
.homelab-btn {
padding: 12px 28px;
background: rgba(10, 18, 40, 0.85);
color: #fff;
border: none;
border-radius: 14px;
font-weight: 600;
font-size: 15px;
letter-spacing: 0.02em;
text-decoration: none;
box-shadow: 0 4px 24px 0 rgba(31, 38, 135, 0.18), 0 1.5px 0 rgba(255,255,255,0.08);
transition: transform 0.18s cubic-bezier(0.4, 0, 0.2, 1), background 0.18s;
cursor: pointer;
position: relative;
overflow: hidden;
}
.homelab-btn:hover {
background: rgba(20, 30, 60, 0.95);
transform: translateY(-2px) scale(1.04);
box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.28);
}
.homelab-btn:active {
transform: translateY(0px) scale(1.0);
}

78
css/sections/profile.css Normal file
View File

@@ -0,0 +1,78 @@
/* Profile Info Section Styles */
.profile-info {
margin-top: 1.2rem;
display: flex;
flex-direction: column;
gap: 0.7rem;
align-items: flex-start;
}
.profile-info-item {
display: flex;
align-items: center;
gap: 0.6rem;
font-size: 0.95rem;
background: none;
border-radius: 0;
padding: 0;
box-shadow: none;
transition: none;
}
.profile-info-item i {
font-size: 1.3rem;
color: #4fc3f7;
margin-right: 0.2rem;
}
.profile-info-label {
font-weight: 600;
color: #222;
margin-right: 0.3rem;
}
.profile-info-value {
color: rgba(255, 255, 255, 0.45);
font-weight: 400;
}
.profile-info-value span {
display: block;
}
/* profile.css - Styles for avatar and avatar-container */
.profile-container {
position: relative;
}
.avatar {
width: 160px;
height: 160px;
border-radius: 24px;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
display: flex;
align-items: center;
justify-content: center;
color: white;
position: relative;
overflow: hidden;
border: 2px solid rgba(255, 255, 255, 0.2);
}
.avatar::before {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
}
.avatar img {
width: 100%;
height: 100%;
object-fit: cover;
border-radius: 24px;
}

74
css/sections/projects.css Normal file
View File

@@ -0,0 +1,74 @@
.projects-section {
flex: 0 0 340px;
display: flex;
flex-direction: column;
gap: 18px;
padding: 32px 24px;
background: rgba(20, 20, 30, 0.10);
backdrop-filter: blur(24px) saturate(140%) brightness(1.08);
-webkit-backdrop-filter: blur(24px) saturate(140%) brightness(1.08);
border-radius: 24px;
box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18), inset 0 1px 0 rgba(255,255,255,0.10);
min-width: 280px;
max-width: 340px;
margin-left: 20px;
align-self: stretch;
}
.projects-title {
font-size: 1.6rem;
font-weight: 700;
margin-bottom: 10px;
color: #fff;
letter-spacing: 0.03em;
background: linear-gradient(135deg, #667eea 0%, #fff 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.project {
padding: 18px 16px;
border-radius: 16px;
box-shadow: 0 2px 12px 0 rgba(31, 38, 135, 0.10);
margin-bottom: 0;
display: flex;
flex-direction: column;
gap: 6px;
transition: transform 0.18s, box-shadow 0.18s;
}
.project:nth-child(odd) {
background: linear-gradient(135deg, rgba(20, 30, 60, 0.75) 0%, rgba(40, 50, 120, 0.75) 100%);
}
.project:nth-child(even) {
background: linear-gradient(135deg, rgba(10, 10, 10, 0.82) 0%, rgba(30, 30, 30, 0.82) 100%);
}
.project-title {
font-size: 1.15rem;
font-weight: 600;
color: #fff;
margin-bottom: 2px;
letter-spacing: 0.01em;
background: linear-gradient(90deg, #fff 0%, #667eea 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.project-desc {
font-size: 0.98rem;
color: rgba(255,255,255,0.85);
font-weight: 400;
line-height: 1.5;
}
@media (max-width: 900px) {
.projects-section {
flex: unset;
max-width: 100%;
margin-left: 0;
margin-top: 24px;
max-width: 100%;
}
}