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

:root {
    --primary: #1a3d0a;
    --secondary: #0f1f02;
    --accent: #66a030;
    --forest-green: #0d4818;
    --moss-green: #2e7d32;
    --lime-green: #689f38;
    --gold-accent: #fff1c6;
    --silver-accent: #c0c0c0;
    --text-dark: #2d3748;
    --text-light: #718096;
    --white: #ffffff;
    --light-bg: #f7fafc;
    --glass: rgba(255, 255, 255, 0.12);
    --glass-border: rgba(255, 255, 255, 0.08);
}

body {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(135deg, #0d4818 0%, #1b5e20 25%, #2e7d32 50%, #388e3c 75%, #43a047 100%);
    background-size: 400% 400%;
    animation: forestGradient 8s ease-in-out infinite;
    min-height: 100vh;
    overflow-x: hidden;
}

@keyframes forestGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Animated forest background particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.particle.leaf {
    width: 6px;
    height: 10px;
    background: linear-gradient(45deg, #689f38, #2e7d32);
    border-radius: 50% 0;
    transform-origin: bottom;
}

.particle.mist {
    width: 12px;
    height: 8px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    filter: blur(2px);
}

.particle.dewdrop {
    width: 3px;
    height: 3px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    box-shadow: 0 0 4px rgba(255, 255, 255, 0.5);
}

@keyframes float {
0%, 100% {
transform: translateY(0px) rotate(0deg) scale(1);
opacity: 0.7;
}
33% {
transform: translateY(-15px) rotate(120deg) scale(1.1);
opacity: 1;
}
66% {
transform: translateY(-25px) rotate(240deg) scale(0.9);
opacity: 0.8;
}
}

/* Hero Section */
.hero {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
position: relative;
padding-top: 80px;
}

.hero-content {
background: var(--glass);
backdrop-filter: blur(2px);
border-radius: 24px;
border: 1px solid var(--glass-border);
padding: 3rem;
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
animation: fadeInUp 1s ease-out;
max-width: 600px;
}

@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

.hero h1 {
font-size: 3.5rem;
font-weight: 800;
margin-bottom: 1rem;
background: linear-gradient(45deg, var(--silver-accent), #ffffff, var(--gold-accent), #ffffff);
background-size: 300% 300%;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
animation: heroGradient 4s ease-in-out infinite;
}

@keyframes heroGradient {
0%, 100% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
}

.hero .subtitle {
font-size: 1.3rem;
color: var(--white);
margin-bottom: 1.5rem;
opacity: 0.9;
}

.hero .description {
font-size: 1.1rem;
color: rgba(255, 255, 255, 0.8);
margin-bottom: 2rem;
line-height: 1.7;
}

.cta-buttons {
display: flex;
gap: 1rem;
justify-content: center;
flex-wrap: wrap;
}

.btn {
padding: 12px 24px;
border-radius: 50px;
text-decoration: none;
font-weight: 600;
transition: all 0.3s ease;
border: none;
cursor: pointer;
display: inline-flex;
align-items: center;
gap: 8px;
font-size: 1rem;
position: relative;
overflow: hidden;
}

.btn-primary {
background: linear-gradient(45deg, var(--bright-blue), var(--bright-green));
color: var(--white);
box-shadow: 0 0 5px var(--gold-accent);
}

.btn-secondary {
background: rgba(255, 255, 255, 0.2);
color: var(--white);
border: 1px solid rgba(255, 255, 255, 0.3);
backdrop-filter: blur(10px);
}

.btn:hover {
transform: translateY(-3px);
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
box-shadow: 0 0 15px var(--gold-accent);
}

/* Sections */
.section {
padding: 5rem 0;
position: relative;
}

.section-title {
text-align: center;
font-size: 2.5rem;
font-weight: 700;
margin-bottom: 3rem;
color: var(--white);
position: relative;
}

.section-title::after {
content: '';
position: absolute;
width: 60px;
height: 4px;
background: linear-gradient(45deg, var(--lime-green), var(--moss-green));
background-size: 200% 200%;
animation: titleGradient 2s ease-in-out infinite;
bottom: -10px;
left: 50%;
transform: translateX(-50%);
border-radius: 2px;
}

@keyframes titleGradient {
0%, 100% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
}

.avatar {
width: 250px;
height: 250px;
border-radius: 50%;
background: linear-gradient(45deg, var(--forest-green), var(--moss-green), var(--lime-green));
background-size: 300% 300%;
animation: avatarGradient 4s ease-in-out infinite;
display: flex;
align-items: center;
justify-content: center;
font-size: 4rem;
color: var(--white);
font-weight: 700;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

@keyframes avatarGradient {
0%, 100% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
}

.about-text {
background: var(--glass);
backdrop-filter: blur(2px);
border-radius: 16px;
padding: 2rem;
border: 1px solid var(--glass-border);
}

.about-text h3 {
color: #ffffff;
font-size: 1.5rem;
margin-bottom: 1rem;
}

.about-text p {
color: rgba(255, 255, 255, 0.9);
font-size: 1.1rem;
line-height: 1.7;
margin-bottom: 1.5rem;
}

.skills {
display: flex;
flex-wrap: wrap;
gap: 0.5rem;
margin-top: 1rem;
}

.skill-tag {
    background: var(--glass);
    backdrop-filter: blur(0%);
    border: 1px solid var(--glass-border);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.skill-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.18);
}

/* Experience Section */
.experience-grid {
display: grid;
gap: 2rem;
}

.experience-card {
background: var(--glass);
backdrop-filter: blur(2px);
border-radius: 16px;
padding: 2rem;
border: 1px solid var(--glass-border);
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}

.experience-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 4px;
background: linear-gradient(45deg, var(--bright-blue), var(--bright-green), var(--bright-yellow));
}

.experience-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.experience-header {
display: flex;
justify-content: space-between;
align-items: flex-start;
margin-bottom: 1rem;
flex-wrap: wrap;
gap: 1rem;
}

.experience-card h3 {
color: var(--bright-blue);
font-size: 1.3rem;
font-weight: 600;
}

.experience-card .company {
color: var(--bright-green);
font-weight: 500;
font-size: 1.1rem;
}

.experience-card .date {
color: rgba(255, 255, 255, 0.7);
font-size: 0.9rem;
font-weight: 500;
}

.experience-card ul {
list-style: none;
padding-left: 0;
}

.experience-card li {
    background: var(--glass);
    backdrop-filter: blur(0%);
    border: 1px solid var(--glass-border);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.8rem;
    position: relative;
    padding: 12px 16px 12px 2.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    line-height: 1.5;
}

.experience-card li:hover {
    transform: translateX(4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.16);
}

.experience-card li::before {
    content: '▶';
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #ffffff;
    font-size: 0.8rem;
}

/* Contact Section */
.contact-content {
text-align: center;
max-width: 600px;
margin: 0 auto;
}

.contact-content p {
color: rgba(255, 255, 255, 0.9);
font-size: 1.2rem;
margin-bottom: 2rem;
}

.contact-links {
display: flex;
justify-content: center;
gap: 2rem;
flex-wrap: wrap;
}

.contact-link {
background: var(--glass);
backdrop-filter: blur(2px);
border-radius: 16px;
padding: 1.5rem;
border: 1px solid var(--glass-border);
text-decoration: none;
color: var(--white);
transition: all 0.3s ease;
display: flex;
flex-direction: column;
align-items: center;
gap: 0.5rem;
min-width: 150px;
}

.contact-link:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-icon {
font-size: 2rem;
width: 40px;
height: 40px;
background: linear-gradient(45deg, var(--silver-accent), var(--gold-accent), #ffffff);
background-size: 200% 200%;
animation: iconGradient 2s ease-in-out infinite;
display: flex;
align-items: center;
justify-content: center;
-webkit-mask: var(--mask-image);
mask: var(--mask-image);
-webkit-mask-size: contain;
mask-size: contain;
-webkit-mask-repeat: no-repeat;
mask-repeat: no-repeat;
-webkit-mask-position: center;
mask-position: center;
}


@keyframes iconGradient {
0%, 100% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
}

/* Responsive Design */
@media (max-width: 768px) {
.nav-links {
display: none;
}

.hero h1 {
font-size: 2.5rem;
}

.hero-content {
padding: 2rem;
margin: 0 1rem;
}

.about-content {
grid-template-columns: 1fr;
text-align: center;
}

.avatar {
width: 200px;
height: 200px;
font-size: 3rem;
}

.cta-buttons {
flex-direction: column;
align-items: center;
}

.contact-links {
flex-direction: column;
align-items: center;
}

.section-title {
font-size: 2rem;
}
}

/* Smooth scroll behavior */
html {
scroll-behavior: smooth;
}

/* Additional animations */
.fade-in {
opacity: 0;
transform: translateY(30px);
transition: all 0.6s ease;
}

.fade-in.visible {
opacity: 1;
transform: translateY(0);
}