:root {
    --accent: #8e2de2;
    --accent-light: #4a00e0;
    --dark: #0a0a0b;
    --light: #f8f9fa;
}

* { box-sizing: border-box; }
body { 
    margin: 0; 
    font-family: 'Inter', sans-serif; 
    scroll-behavior: smooth; 
    background: var(--dark);
    color: white;
}

.h1 { border-bottom: 2px solid #333; padding-bottom: 10px; }
        
.back-link { display: inline-block; margin-bottom: 20px; color: #007bff; text-decoration: none; }

/* Navbar Section */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 0;
    display: flex;           
    justify-content: center; 
    align-items: center;     
    background: rgba(10, 10, 11, 0); 
    backdrop-filter: blur(0px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0);
}

.navbar.scrolled {
    padding: 15px 0;
    background: rgba(10, 10, 11, 0.6); 
    backdrop-filter: blur(20px);      
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.nav-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin: 0 20px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover, .nav-links a.active {
    color: #ffffff;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent);
}

/* Hero Section */
.hero-section {
    padding-top: 90px; 
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center;
    text-align: center;
}
#particles-js { position: absolute; width: 100%; height: 100%; z-index: -1; }
.hero-content { position: relative; z-index: 10; text-align: center; }

.portrait-container {
    width: 200px; height: 200px; border-radius: 50%;
    border: 3px solid var(--accent); margin: 0 auto 30px;
    overflow: hidden; box-shadow: 0 0 40px rgba(142, 45, 226, 0.4);
}
.portrait-container img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%;}

.social-links { display: flex; justify-content: center; gap: 25px; margin-top: 30px; }
.social-links a { color: white; font-size: 2rem; transition: 0.3s; }
.social-links a:hover { color: var(--accent); transform: translateY(-5px); }


/* Resume Content */
.resume-section { padding: 100px 20px; background: white; color: #333; }
.alt-bg { background: #f4f4f4; }
.container { max-width: 900px; margin: 0 auto; }
.section-title { font-size: 2.5rem; margin-bottom: 50px; text-align: center; color: var(--dark); }

/* Skills Grid */
.skills-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 20px;
}
.skill-item {
    background: var(--dark); color: white; padding: 15px;
    text-align: center; border-radius: 8px; font-weight: 600;
}

/* Timeline Design */
.timeline { position: relative; max-width: 1200px; margin: 0 auto; }
.timeline::after {
    content: ''; position: absolute; width: 6px; background-color: var(--accent);
    top: 0; bottom: 0; left: 50%; margin-left: -3px;
}
.timeline-container { padding: 10px 40px; position: relative; width: 50%; }
.left { left: 0; } .right { left: 50%; }
.timeline-content {
    padding: 20px; background: white; border: 2px solid var(--accent); border-radius: 10px;
}

@media screen and (max-width: 600px) {
    .timeline::after { left: 31px; }
    .timeline-container { width: 100%; padding-left: 70px; padding-right: 25px; }
    .right { left: 0%; }
}

.particle-section {
    height: auto;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #0a0a0b; 
    color: white;
}

.particle-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0;
}

.content-overlay {
    position: relative;
    z-index: 2;
    background: rgba(10, 10, 11, 0.6);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.1);
}

/* Skills Grouping */
.skills-wrapper { display: flex; flex-direction: column; gap: 40px; }
.skill-group h4 { 
    text-transform: uppercase; letter-spacing: 2px; color: var(--accent); 
    margin-bottom: 20px; border-left: 4px solid var(--accent); padding-left: 15px;
}
.skills-grid { 
    display: flex; flex-wrap: wrap; gap: 15px; 
}
.skill-tag {
    background: rgba(255,255,255,0.05);
    padding: 12px 20px; border-radius: 50px;
    display: flex; align-items: center; gap: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: 0.3s;
}
.skill-tag:hover { background: var(--accent); transform: scale(1.05); }
.skill-tag i { font-size: 1.2rem; }

.blog-button-container {
    margin-top: 40px;
}

.btn-blog {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    color: white;
    border: 2px solid var(--accent);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.btn-blog:hover {
    background: var(--accent);
    box-shadow: 0 0 20px var(--accent);
    transform: translateY(-3px);
}
.modern-timeline {
    position: relative;
    padding-left: 30px;
    border-left: 2px solid rgba(255,255,255,0.1);
    margin-top: 50px;
}

.timeline-event {
    position: relative;
    margin-bottom: 50px;
}

.timeline-dot {
    position: absolute;
    left: -37px;
    top: 5px;
    width: 12px;
    height: 12px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent);
}

.timeline-date {
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.timeline-box {
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
}

.timeline-box h3 { margin: 0 0 5px 0; font-size: 1.3rem; }
.timeline-box .location { font-style: italic; color: #aaa; margin-bottom: 15px; }

.experience-list {
    margin: 15px 0 0 0;
    padding-left: 18px;
    list-style-type: square;
    color: #ddd;
}

.experience-list li {
    margin-bottom: 8px;
    line-height: 1.5;
}


.timeline-box {
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.timeline-box:hover {
    transform: translateX(10px);
    border-color: var(--accent);
}

.resume-section {
    padding: 60px 20px 100px; 
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; 
}


.section-title {
    font-size: 2.5rem;
    margin-top: 20px; 
    margin-bottom: 40px; 
    text-align: center;
}


.container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding-top: 20px; 
}


.modern-timeline {
    margin-top: 20px; 
}

.section-header-container {
    text-align: center;
    margin-bottom: 50px;
    padding-top: 10px;
}


.modern-header {
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 10px;
    background: linear-gradient(to bottom, #ffffff, #a1a1a1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: none; 
}


.header-underline {
    width: 60px;
    height: 4px;
    background: var(--accent);
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 0 15px var(--accent);
}


.content-overlay {
    margin-top: 20px; 
}
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.project-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.07);
}

.project-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.project-tags {
    margin: 20px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.project-tags span {
    font-size: 0.75rem;
    background: rgba(142, 45, 226, 0.2);
    color: var(--accent);
    padding: 5px 12px;
    border-radius: 15px;
    font-weight: 600;
}

.project-link {
    margin-top: auto;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Certificates Grid */
.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    justify-content: center;
}

.cert-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px 15px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 220px;
}

.cert-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.07);
    border-color: #4285F4; /* Google Blue */
    box-shadow: 0 10px 30px rgba(66, 133, 244, 0.2);
}

.cert-card i {
    font-size: 2.2rem;
    color: #4285F4;
    margin-bottom: 15px;
}

.cert-card h3 {
    font-size: 1rem;
    margin-bottom: 10px;
    line-height: 1.3;
}

.badge {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(66, 133, 244, 0.15);
    color: #4285F4;
    padding: 4px 10px;
    border-radius: 10px;
    margin-top: 10px;
    font-weight: 700;
}

.project-card.splunk-themed {
    border: 2px solid #ed0081;
    background: linear-gradient(145deg, rgba(30, 30, 35, 0.9), rgba(10, 10, 11, 1));
    position: relative;
    overflow: visible; 
    padding-top: 40px; 
}

.project-card.cee-themed {
    border: 2px solid #acf912;
    background: linear-gradient(145deg, rgba(30, 30, 35, 0.9), rgba(10, 10, 11, 1));
    position: relative;
    overflow: visible; 
    padding-top: 40px; 
}

.project-card.splunk-themed:hover {
    box-shadow: 0 0 30px rgba(237, 0, 129, 0.3);
    transform: translateY(-10px) scale(1.02);
}

.project-badge {
    position: absolute;
    top: 5px;
    right: 5px;
    background: #00ff8c;
    color: #000;
    font-size: 0.65rem; 
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 5px; 
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(0, 255, 140, 0.4);
    z-index: 20;
}

.project-badge {
    animation: pulse-green 2s infinite;
}

.splunk-icon i {
    color: #ed0081; 
    filter: drop-shadow(0 0 10px rgba(237, 0, 129, 0.5));
}

.cee-icon i {
    color: #acf912; 
    filter: drop-shadow(0 0 10px rgba(237, 0, 129, 0.5));
}

.project-card.splunk-themed .project-tags span {
    background: rgba(237, 0, 129, 0.1);
    color: #ff4da6;
    border: 1px solid rgba(237, 0, 129, 0.3);
}
.project-card.cee-themed .project-tags span {
    background: rgb(2, 0, 1);
    color: #acf912;
    border: 1px solid rgba(237, 0, 129, 0.3);
}

.project-card.splunk-themed .project-link.main {
    background: #ed0081;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    display: inline-block;
    margin-top: 15px;
    transition: 0.3s;
}
.project-card.cee-themed .project-link.main {
    background: #acf912;
    color: rgb(10, 0, 0);
    padding: 10px 20px;
    border-radius: 8px;
    display: inline-block;
    margin-top: 15px;
    transition: 0.3s;
}

.project-card.splunk-themed .project-link.main:hover {
    background: #c2006a;
    box-shadow: 0 0 15px #ed0081;
}

@keyframes pulse-green {
    0% { box-shadow: 0 0 5px rgba(0, 255, 140, 0.4); }
    50% { box-shadow: 0 0 20px rgba(0, 255, 140, 0.7); }
    100% { box-shadow: 0 0 5px rgba(0, 255, 140, 0.4); }
}
.sre-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 25px 0;
}
.stat-item {
    font-size: 0.8rem;
    color: #aaa;
    text-transform: uppercase;
}
.stat-item span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent); 
}
.elevator-pitch {
    max-width: 650px;
    margin: 20px auto;
    line-height: 1.6;
    font-size: 1.1rem;
    color: #ccc;
}

.elevator-pitch strong {
    color: var(--accent);
    font-weight: 600;
}

.cta-container {
    margin-top: 30px;
}

.pitch-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(5px);
    padding: 20px 30px;
    border-radius: 16px;
    max-width: 650px;
    margin: 30px auto; 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.subtitle {
    margin-bottom: 0; 
}
.nav-container {
    display: flex;
    justify-content: space-between; 
    align-items: center;
    width: 100%;
    max-width: 1200px;
    padding: 0 40px;
}

.nav-social {
    display: flex;
    gap: 20px;
}

.nav-social a {
    color: rgba(255,255,255,0.6);
    font-size: 1.1rem;
    transition: 0.3s;
}

.nav-social a:hover {
    color: var(--accent);
    transform: translateY(-2px);
}

.experience-footer {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.experience-footer p {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.linkedin-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 119, 181, 0.1);
    color: #0077b5;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid rgba(0, 119, 181, 0.3);
    transition: 0.3s;
}

.linkedin-btn:hover {
    background: #0077b5;
    color: white;
    box-shadow: 0 0 20px rgba(0, 119, 181, 0.4);
}
.gitops-status {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 20px 0;
}

.status-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.status-badge .dot {
    width: 10px;
    height: 10px;
    background-color: #18be94; 
    border-radius: 50%;
    box-shadow: 0 0 10px #18be94;
    animation: pulse-green 2s infinite;
}

.status-text strong {
    color: #18be94;
}

.sync-info {
    font-size: 0.7rem;
    color: #888;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sync-info i {
    margin-right: 5px;
}

@keyframes pulse-green {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

/* Desktop-Ansicht (Standard) */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.menu-toggle {
    display: none; 
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333; 
    margin: 4px 0;
    transition: 0.4s;
}


@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
        z-index: 1001;
        position: relative; 
    }

    .nav-content {
        display: none; 
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        
        background: rgba(17, 17, 17, 0.9); 
        backdrop-filter: blur(10px);        
        -webkit-backdrop-filter: blur(10px); 
        
        justify-content: center;
        align-items: center;
        z-index: 1000;
    }

    .nav-content.active {
        display: flex; 
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .nav-links a, .nav-social a {
        color: #ffffff !important; 
        text-shadow: 0px 0px 10px rgba(255, 255, 255, 0.3);
    }

    .nav-social {
        display: flex;
        flex-direction: row; 
        gap: 20px;
        margin-top: 30px;
    }

    .bar {
        background-color: white; 
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    .footer-links a {
        margin: 0 10px;
    }
}

.menu-toggle.is-active .bar:nth-child(2) {
    opacity: 0;
}
.menu-toggle.is-active .bar:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}
.menu-toggle.is-active .bar:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

.footer {
    background-color: #111;
    color: #888;
    padding: 40px 20px;
    margin-top: 50px;
    border-top: 1px solid #333;
    font-size: 0.9rem;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

.tech-stack {
    font-size: 0.75rem;
    margin-top: 5px;
    color: #555;
}
