/* 1. GLOBAL VARIABLES & THEME */
:root {
    --bg-dark: #0a192f;
    --bg-light: #112240;
    --accent: #64ffda;
    /* Cyber Green */
    --text-main: #e6f1ff;
    --text-dim: #8892b0;
    --glass: rgba(255, 255, 255, 0.05);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Inter', -apple-system, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* 2. NAVIGATION */
.glass-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: rgba(10, 25, 47, 0.85);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(100, 255, 218, 0.1);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.logo span {
    color: var(--accent);
}

.admin-link {
    color: var(--accent);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 8px 16px;
    border: 1px solid var(--accent);
    display: inline-flex;
    border-radius: 4px;
    transition: var(--transition);
    align-items: center;
    gap: 8px;
}
 .nav-links {
     display: flex;
     gap: 15px;
     /* Adds space between the buttons */
     align-items: center;
 }

 /* .admin-link {
     text-decoration: none;
     display: inline-flex;
     align-items: center;
     gap: 8px;
     /* Adds space between icon and text */

.admin-link:hover {
    background: rgba(100, 255, 218, 0.1);
}

/* 3. HERO SECTION */
.hero {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, #112240 0%, #0a192f 100%);
    text-align: center;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.hero p {
    max-width: 600px;
    color: var(--text-dim);
    font-size: 1.2rem;
    margin: 0 auto;
}

/* 4. SKILLS GRID (DRY Component Styling) */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.skill-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid transparent;
    transition: var(--transition);
}

.skill-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.skill-card i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 20px;
}

/* 5. EXPERIENCE TIMELINE (DRY Component Styling) */
.web-timeline {
    border-left: 2px solid var(--bg-light);
    padding-left: 30px;
    margin-top: 40px;
}

.web-entry {
    position: relative;
    margin-bottom: 50px;
}

/* The dot on the timeline */
.web-entry::before {
    content: '';
    position: absolute;
    left: -41px;
    top: 5px;
    width: 20px;
    height: 20px;
    background: var(--bg-dark);
    border: 3px solid var(--accent);
    border-radius: 50%;
}

.entry-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.entry-header strong {
    font-size: 1.4rem;
    color: var(--text-main);
}

.date {
    font-family: monospace;
    color: var(--accent);
}

.sub-header em {
    color: var(--text-dim);
    font-style: normal;
    font-weight: 600;
}

.bullet-list {
    margin-top: 15px;
    list-style: none;
}

.bullet-list li {
    color: var(--text-dim);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.bullet-list li::before {
    content: "▹";
    position: absolute;
    left: 0;
    color: var(--accent);
}

/* 6. RESPONSIVENESS */
@media (max-width: 768px) {
    .entry-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero h1 {
        font-size: 3rem;
    }
}
.edu-item {
    margin-bottom: 10px;
    font-size: 10pt;
}

.lang-tag {
    font-size: 10pt;
    margin-bottom: 2px;
}