/* --- CSS Variables --- */
:root {
    --menu-width: 220px;
    --accent-color: #00C9FF;
    --bg-main: #0d0d0d;
    --bg-container: rgba(26, 32, 44, 0.5);
    --border-color: #2d3748;
    --text-color: #e0e0e0;
    --text-strong: #ffffff;
}
/* ... (keep existing @font-face rules here) ... */
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 300; font-display: swap; src: url('/fonts/inter-v20-latin-300.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 400; font-display: swap; src: url('/fonts/inter-v20-latin-regular.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 600; font-display: swap; src: url('/fonts/inter-v20-latin-600.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 700; font-display: swap; src: url('/fonts/inter-v20-latin-700.woff2') format('woff2'); }
@font-face { font-family: 'Orbitron'; font-style: normal; font-weight: 400; font-display: swap; src: url('/fonts/orbitron-v35-latin-regular.woff2') format('woff2'); }
@font-face { font-family: 'Orbitron'; font-style: normal; font-weight: 600; font-display: swap; src: url('/fonts/orbitron-v35-latin-600.woff2') format('woff2'); }

/* --- Base & Reset --- */
html { height: 100%; width: 100%; overflow-x: hidden; scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; background-color: var(--bg-main); min-height: 100vh; margin: 0; padding: 0; box-sizing: border-box; color: var(--text-color); display: flex; flex-direction: row; line-height: 1.7; }
body.menu-open { overflow: hidden; }

/* --- Left Menu (Desktop) --- */
/* ... (keep existing .left-menu styles) ... */
.left-menu { width: var(--menu-width); min-width: var(--menu-width); height: 100vh; position: fixed; top: 0; left: 0; background: rgba(10, 10, 10, 0.9); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); box-shadow: 2px 0 5px rgba(0, 0, 0, 0.3); padding: 0 20px; box-sizing: border-box; z-index: 1001; display: flex; flex-direction: column; justify-content: center; overflow-y: auto; }
.left-menu ul { list-style: none; padding: 0; margin: 0; }
.left-menu li { margin-bottom: 20px; }
.left-menu a { font-family: 'Orbitron', sans-serif; font-size: 24px; font-weight: 400; color: var(--accent-color); text-decoration: none; text-shadow: 0 0 2px var(--accent-color), 0 0 3px rgba(0, 201, 255, 0.6); display: block; padding: 8px 0; transition: color 0.3s ease, text-shadow 0.3s ease, background-color 0.3s ease; }
.left-menu a:hover, .left-menu a:focus { color: var(--text-strong); text-shadow: 0 0 6px var(--text-strong), 0 0 8px rgba(255, 255, 255, 0.5); outline: none; }
.left-menu a.active-page-link { color: var(--text-strong); text-shadow: 0 0 8px var(--text-strong), 0 0 12px rgba(255, 255, 255, 0.7); background-color: rgba(0, 190, 255, 0.1); border-radius: 5px; padding-left: 10px; padding-right: 10px; }

/* --- Main Content Area --- */
.main-content-wrapper { flex-grow: 1; padding: 60px 40px; display: flex; justify-content: center; box-sizing: border-box; width: calc(100% - var(--menu-width)); margin-left: var(--menu-width); }
.content-container { width: 100%; max-width: 900px; background-color: var(--bg-container); border: 1px solid var(--border-color); padding: 30px 40px; border-radius: 10px; }

/* --- Page Header & Buttons --- */
.page-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; margin-bottom: 0.5em; }
.page-header-title { flex-grow: 1; }
.resume-button, .print-button { flex-shrink: 0; background-color: var(--accent-color); color: #000; border: 1px solid var(--accent-color); padding: 0.6em 1.2em; border-radius: 5px; cursor: pointer; font-size: 0.9rem; font-weight: 600; text-decoration: none; text-align: center; transition: all 0.3s ease; }
.resume-button:hover, .print-button:hover { background-color: #fff; border-color: #fff; }
.print-button .fas { margin-right: 8px; }

/* --- Content Typography & Styles --- */
.content-container h1 { font-size: 2.8rem; font-weight: 700; color: var(--text-strong); margin: 0 0 0.1em 0; }
.content-container h2 { font-size: 1.8rem; font-weight: 600; color: var(--accent-color); margin: 0; }
.content-container h3 { font-size: 1.5rem; font-weight: 600; color: var(--accent-color); margin-top: 2em; margin-bottom: 0.75em; border-bottom: 1px solid var(--border-color); padding-bottom: 0.3em; }
.content-container p.tagline { font-size: 1.2rem; font-weight: 300; margin-top: 0; margin-bottom: 2em; }

/* --- Resume Page Specific Styles --- */
.resume-page h1 { font-size: 2.2rem; }
.resume-page section { margin-top: 2rem; }
.resume-page section h2 { font-size: 1.6rem; color: var(--accent-color); border-bottom: 1px solid var(--border-color); padding-bottom: 0.5rem; margin-bottom: 1rem; }
.resume-page ul { list-style-type: none; padding-left: 0; margin: 0; }
.resume-page ul li { padding-left: 1.5em; position: relative; margin-bottom: 0.7em; }
.resume-page ul li::before { content: '•'; color: var(--accent-color); position: absolute; left: 0.25em; font-size: 1.2em; line-height: 1; top: 0.2em; }
.skills-table { width: 100%; border-collapse: collapse; margin-top: 1rem; }
.skills-table th, .skills-table td { text-align: left; padding: 0.8rem; border-bottom: 1px solid var(--border-color); }
.skills-table th { font-weight: 600; color: var(--text-strong); width: 25%; vertical-align: top; }
.job-entry, .education-entry { margin-bottom: 2rem; }
.job-header { display: flex; justify-content: space-between; align-items: baseline; flex-wrap: wrap; gap: 10px; margin-bottom: 0.25rem; }
.job-header h3 { font-size: 1.2rem; color: var(--text-strong); margin: 0; padding: 0; border: none; }
.job-header span { font-size: 0.9rem; color: var(--text-color); font-style: italic; }
.job-title { font-weight: 600; margin: 0 0 0.75rem 0; }
.education-entry h3 { font-size: 1.1rem; color: var(--text-strong); margin: 0; }
.education-entry p { margin: 0; }

/* --- Fixed Social Icons --- */
.fixed-social-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}
.social-icon-list-vertical {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
    margin: 0;
}
.social-icon-list-vertical li {
    list-style: none;
}
.social-icon-list-vertical li a {
    width: 45px;
    height: 45px;
    background-color: #fff;
    text-align: center;
    line-height: 45px;
    font-size: 1.25rem;
    display: block;
    border-radius: 50%;
    position: relative; /* Crucial for the ::before pseudo-element */
    overflow: hidden;   /* Hides the color block before it slides in */
    border: 2px solid #fff;
    transition: transform 0.3s ease;
}
.social-icon-list-vertical li a:hover {
    transform: scale(1.1) translateY(-2px);
}
.social-icon-list-vertical li a i {
    position: relative; /* Keeps the icon on top */
    color: #262626;
    transition: transform 0.5s ease, color 0.5s ease;
    z-index: 2;
}
.social-icon-list-vertical li a:hover i {
    color: #fff;
    transform: rotateY(360deg); /* The 3D rotation effect */
}
.social-icon-list-vertical li a::before {
    content: '';
    position: absolute;
    top: 100%; /* Start hidden below the button */
    left: 0;
    width: 100%;
    height: 100%;
    transition: top 0.5s ease; /* Animate the slide-up effect */
    z-index: 1;
}
.social-icon-list-vertical li a:hover::before {
    top: 0; /* Slide up to cover the background on hover */
}

/* Individual brand colors for the slide-up background */
.social-icon-list-vertical li:nth-child(1) a::before { background: #3b5999; } /* Facebook */
.social-icon-list-vertical li:nth-child(2) a::before { background: #0077b5; } /* LinkedIn */
.social-icon-list-vertical li:nth-child(3) a::before { background: #000; }    /* X (Twitter) */

/* --- Mobile & Responsive Styles --- */
/* ... (keep existing @media styles) ... */
@media (max-width: 992px) {
    body { flex-direction: column; }
    .main-content-wrapper { padding: 80px 20px 40px; width: 100%; box-sizing: border-box; margin-left: 0; }
    .mobile-header { display: flex; align-items: center; justify-content: space-between; padding: 0 20px; height: 60px; background-color: var(--bg-main); border-bottom: 1px solid var(--border-color); position: fixed; top: 0; left: 0; width: 100%; z-index: 1002; box-sizing: border-box; }
    .hamburger-btn { background: none; border: none; padding: 10px; cursor: pointer; z-index: 1003; }
    .hamburger-btn .line { display: block; width: 24px; height: 3px; background-color: var(--text-color); margin: 5px 0; transition: transform 0.3s ease, opacity 0.3s ease; }
    .mobile-title { font-family: 'Orbitron', sans-serif; font-size: 1.2rem; color: var(--accent-color); }
    .left-menu { transform: translateX(-100%); transition: transform 0.3s ease-in-out; width: 250px; min-width: 250px; }
    .left-menu.menu-open { transform: translateX(0); }
    .menu-overlay { display: block; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 1000; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
    .menu-overlay.menu-open { opacity: 1; pointer-events: auto; }
    .content-container { padding: 20px; font-size: 0.95rem; }
    .content-container h1 { font-size: 2.2rem; }
    .content-container h2 { font-size: 1.5rem; }
    .content-container h3 { font-size: 1.3rem; }
    .fixed-social-container { bottom: 15px; right: 15px; }
    .social-icon-list-vertical li a { width: 40px; height: 40px; line-height: 40px; font-size: 1.1rem; }
    .page-header { flex-direction: column; align-items: stretch; gap: 15px; }
}