/* angewonk was here, i love u hana */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: rgba(100, 255, 218, 0.2);
    border-radius: 6px;
    transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(100, 255, 218, 0.4);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Modern Variables */
:root {
    --bg-primary: #1e1e1e;
    --bg-secondary: #252526;
    --text-primary: #d4d4d4;
    --text-secondary: #808080;
    --accent-primary: #c586c0;    /* purple for keywords */
    --accent-secondary: #569cd6;  /* blue for functions */
    --accent-tertiary: #4ec9b0;   /* teal for classes */
    --string-color: #ce9178;      /* orange-pink for strings */
    --comment-color: #6a9955;     /* green for comments */
    --nav-height: 80px;
    --container-padding: 2rem;
    --font-size-xs: clamp(0.7rem, 2vw, 0.8rem);
    --font-size-sm: clamp(0.8rem, 2.5vw, 0.9rem);
    --font-size-base: clamp(0.9rem, 3vw, 1rem);
    --font-size-md: clamp(1rem, 3.5vw, 1.2rem);
    --font-size-lg: clamp(1.5rem, 4vw, 2rem);
    --font-size-xl: clamp(2rem, 6vw, 4rem);
    --font-size-xxl: clamp(2.5rem, 8vw, 4.5rem);
    --transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    --border-radius: 4px;
    --card-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.2);
    --card-hover-shadow: 0 20px 40px -15px rgba(197, 134, 192, 0.1);
}

@media (max-width: 768px) {
    :root {
        --nav-height: 70px;
        --container-padding: 1.5rem;
    }
}

body {
    font-family: 'Inter', 'SF Mono', 'Fira Code', monospace;
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    position: static;
    overflow-x: hidden;
    min-height: 100vh;
    padding-top: var(--nav-height);
}

/* Remove all glow-related elements */
.site-background,
.site-background::before,
.site-background::after,
.mouse-glow,
.glow-container,
.intro-glow,
.hero-content::before {
    display: none !important;
}

/* Remove hover glow from sections */
.section:hover {
    background: none;
}

/* Remove glow from hero section */
.hero::before {
    display: none;
}

/* Remove glow from hero text */
.hero span {
    text-shadow: none;
}

.hero h1 {
    text-shadow: none;
}

.hero h2 {
    text-shadow: none;
}

/* Remove glow from buttons */
.btn::before {
    display: none;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background-color: rgba(30, 30, 30, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(86, 156, 214, 0.1);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

/* Navigation */
.nav-links {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    padding: 1rem;
    background-color: var(--bg-secondary);
    border-bottom: 1px solid rgba(86, 156, 214, 0.1);
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
    list-style: none;
}

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

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: var(--font-size-sm);
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.8rem;
    display: block;
    width: 100%;
    text-align: center;
}

.nav-links a:hover {
    color: var(--accent-primary);
}

.nav-links a span {
    color: var(--accent-primary);
    font-family: 'Fira Code', monospace;
    margin-right: 0.5rem;
}

/* Hamburger Menu */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    margin-left: auto;
    padding: 0;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--accent-primary);
    transition: all 0.3s ease;
}

.hamburger.active span:first-child {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:last-child {
    transform: translateY(-9px) rotate(-45deg);
}

/* Desktop Navigation */
@media (min-width: 768px) {
    .hamburger {
        display: none;
    }

    .nav-links {
        position: static;
        display: flex;
        width: auto;
        padding: 0;
        flex-direction: row;
        gap: 3rem;
        background: none;
        border: none;
        backdrop-filter: none;
    }

    .nav-links a {
        padding: 0;
        width: auto;
        position: relative;
    }

    .nav-links a::before {
        content: "";
        position: absolute;
        width: 0;
        height: 2px;
        bottom: -4px;
        left: 0;
        background-color: var(--accent-primary);
        transition: width 0.3s ease;
    }

    .nav-links a:hover::before {
        width: 100%;
    }
}

/* Header scroll behavior */
.header.scrolled {
    background-color: rgba(30, 30, 30, 0.98);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
}

.header.header-hidden {
    transform: translateY(-100%);
}

/* Prevent content from going under fixed header */
body {
    padding-top: var(--nav-height);
}

/* Additional mobile optimizations */
@media (max-width: 480px) {
    .nav-links a {
        font-size: var(--font-size-base);
        padding: 1rem;
    }

    .nav-links {
        gap: 0.25rem;
    }
}

/* Tablet optimizations */
@media (min-width: 481px) and (max-width: 767px) {
    .nav-links a {
        padding: 0.9rem;
    }

    .nav-links {
        gap: 0.3rem;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 var(--container-padding);
    background-color: var(--bg-primary);
    position: relative;
}

.hero-content {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

.hero span {
    color: var(--accent-primary);
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-size: 1rem;
    margin-bottom: 1rem;
    display: block;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.hero h2 {
    font-size: clamp(2rem, 6vw, 4rem);
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--accent-tertiary);
    font-weight: 600;
}

.hero p {
    margin: 2rem 0;
}

.social-links {
    display: flex;
    gap: clamp(1rem, 3vw, 1.5rem);
    justify-content: center;
    margin-top: 2rem;
}

.social-links a {
    color: var(--text-secondary);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-primary);
    transform: translateY(-3px);
}

/* Section Styles */
.section {
    padding: clamp(3rem, 8vw, 8rem) var(--container-padding);
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

/* Modern Section Headers */
.section h2 {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
    font-size: var(--font-size-lg);
    color: var(--text-primary);
}

.section h2 span {
    color: var(--accent-primary);
    font-family: 'Fira Code', monospace;
    font-size: var(--font-size-base);
}

.section h2::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(
        to right,
        rgba(100, 255, 218, 0.5),
        rgba(100, 255, 218, 0.1)
    );
}

/* Modern Card Styles */
.card {
    background: var(--bg-secondary);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(197, 134, 192, 0.1);
    border-radius: var(--border-radius);
    padding: clamp(1.5rem, 4vw, 2rem);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    transform: translateY(0);
}

.card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -15px rgba(197, 134, 192, 0.2);
}

.card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right bottom,
        transparent,
        rgba(100, 255, 218, 0.05)
    );
    transform: translateX(-100%);
    transition: var(--transition);
}

.card:hover::before {
    transform: translateX(0);
}

/* Education Section */
.education-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.education-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.education-card:hover {
    transform: translateY(-5px);
}

.education-card h3 {
    color: #2d3436;
    margin-bottom: 1rem;
}

.date {
    color: var(--comment-color);
    font-size: 0.9rem;
}

/* Certifications Section */
.cert-grid {
    display: grid;
    gap: clamp(1.5rem, 4vw, 2rem);
    max-width: 1200px;
    margin: 0 auto;
}

.cert-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.cert-card:hover {
    transform: translateY(-5px);
}

/* Projects Section */
.project-grid {
    display: grid;
    gap: clamp(1.5rem, 4vw, 2rem);
    max-width: 1200px;
    margin: 0 auto;
}

.project-category h4 {
    margin-bottom: 1.5rem;
    color: #2d3436;
}

.project-cards {
    display: grid;
    gap: 1rem;
}

.project-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: #2d3436;
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
}

/* Skills Section */
.skills-container {
    display: grid;
    gap: clamp(1.5rem, 4vw, 2rem);
    max-width: 1200px;
    margin: 0 auto;
}

.skill-category {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(100, 255, 218, 0.1);
}

.skill-category h3 {
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.skill-category ul {
    list-style: none;
}

.skill-category li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.skill-category li::before {
    content: "▹";
    color: var(--accent-primary);
}

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

.contact-info {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.contact-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateY(-3px);
    background: rgba(197, 134, 192, 0.1);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--accent-primary);
}

.contact-item a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--accent-primary);
}

/* Footer */
.footer {
    text-align: center;
    padding: clamp(1.5rem, 4vw, 2rem);
    background-color: var(--bg-secondary);
    color: var(--text-secondary);
    font-size: clamp(0.8rem, 2vw, 0.9rem);
}

/* Modern Button Styles */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--accent-primary);
    border: 1px solid var(--accent-primary);
    border-radius: var(--border-radius);
    font-size: var(--font-size-sm);
    font-weight: 500;
    transition: var(--transition);
    overflow: hidden;
    z-index: 1;
    text-decoration: none;
}

.btn-sm {
    padding: 0.75rem 1.5rem;
    font-size: var(--font-size-xs);
    text-decoration: none;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(100, 255, 218, 0.1);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
    z-index: -1;
}

.btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn:hover {
    transform: translateY(-2px);
    background: rgba(197, 134, 192, 0.1);
}

/* Animations */
.fade-in-hidden {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Project Link Styles */
.project-link {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 4px;
    background-color: var(--bg-secondary);
    transition: all 0.3s ease;
}

.project-link:hover {
    transform: translateY(-5px);
    background-color: rgba(100, 255, 218, 0.1);
}

.project-link i {
    font-size: 2rem;
    color: var(--accent-primary);
}

.project-link h5 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin: 0;
}

.project-link p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-direction: row !important;
    flex-wrap: nowrap;
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--accent-primary);
    color: var(--accent-primary);
}

/* Experience Section */
.experience-grid {
    display: grid;
    gap: clamp(1.5rem, 4vw, 2rem);
    max-width: 1200px;
    margin: 0 auto;
}

.role {
    color: var(--string-color);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.experience-list {
    list-style: none;
    margin-top: 1rem;
}

.experience-list li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: flex-start;
    line-height: 1.5;
}

.experience-list li::before {
    content: "▹";
    color: var(--accent-primary);
    margin-right: 0.5rem;
}

/* Project Styles */
.project-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.project-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.project-header i {
    font-size: 2rem;
    color: var(--accent-primary);
    transition: var(--transition);
}

.project-card:hover .project-header i {
    transform: rotate(5deg);
}

.project-header h3 {
    color: var(--text-primary);
    font-size: 1.3rem;
    margin: 0;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.project-tech span {
    font-family: 'Fira Code', monospace;
    font-size: var(--font-size-xs);
    color: var(--accent-tertiary);
    background: rgba(78, 201, 176, 0.1);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    transition: var(--transition);
}

.project-tech span:hover {
    background: rgba(197, 134, 192, 0.2);
    transform: translateY(-2px);
}

/* Modern Certificate Cards */
.cert-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cert-list li {
    margin-bottom: 1rem;
}

.cert-list li a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    border-radius: var(--border-radius);
}

.cert-list li a:hover {
    color: var(--accent-primary);
    background: rgba(197, 134, 192, 0.05);
    transform: translateX(5px);
}

/* About Section Enhancement */
.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 2rem;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.profile-logo {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.profile-logo:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
    }
}

/* Skills Enhancement */
.skills-container .card ul li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.skills-container .card ul li::before {
    content: "▹";
    color: var(--accent-primary);
}

/* Contact Enhancement */
.contact-item p {
    color: var(--text-secondary);
    margin: 0;
}

/* Responsive Enhancements */
@media (min-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .project-tech {
        margin-top: 1rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .section h2 {
        font-size: 1.5rem;
    }

    .hero-buttons {
        width: 100%;
    }

    .btn {
        padding: 0.8rem 1rem;
        min-width: 0;
    }
}

/* Typing Animation */
.typing-container span.typing-text,
.typing-container h1.typing-text,
.typing-container h2.typing-text {
    opacity: 1;
    animation: none;
    visibility: visible;
}

.typing-container:nth-child(2) h1,
.typing-container:nth-child(3) h2 {
    animation: none;
    opacity: 1;
}

/* Remove any typing animation delays */
.typing-container:first-child {
    animation: none;
}

.typing-container {
    animation: none;
}

/* Ensure text is immediately visible */
.hero span.typing-text,
.hero h1.typing-text,
.hero h2.typing-text {
    opacity: 1;
    animation: none;
}

/* Remove all logo-related styles */
.about-grid,
.about-text,
.about-image,
.profile-logo {
    display: none;
}

/* Hero section special glow */
.hero-content::before {
    display: none;
}

.intro-glow {
    display: none;
}

.glow-container {
    display: none;
}

/* Grid layouts */
.experience-grid,
.project-grid,
.skills-container,
.cert-grid {
    display: grid;
    gap: clamp(1.5rem, 4vw, 2rem);
}

@media (min-width: 768px) {
    .experience-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .project-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .skills-container {
        grid-template-columns: repeat(4, 1fr);
    }

    .cert-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablet-specific adjustments */
@media (min-width: 768px) and (max-width: 1024px) {
    .nav-links {
        gap: 1.5rem;
    }

    .nav-links a {
        font-size: 0.9rem;
    }
}

/* Large screen optimizations */
@media (min-width: 1440px) {
    :root {
        --container-padding: 3rem;
    }

    .hero-content,
    .nav-container,
    .section {
        max-width: 1400px;
    }
}

/* Touch device optimizations */
@media (hover: none) {
    .card:hover {
        transform: none;
    }

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

/* Typography base styles */
body {
    font-family: 'Inter', 'SF Mono', 'Fira Code', monospace;
    font-size: var(--font-size-base);
    line-height: 1.6;
}

/* Navigation typography */
.nav-links a {
    font-size: var(--font-size-sm);
    font-weight: 500;
}

.nav-links a span {
    font-size: var(--font-size-xs);
    color: var(--accent-primary);
}

/* Hero section typography */
.hero span.typing-text {
    font-size: var(--font-size-base);
    font-family: 'Fira Code', monospace;
}

.hero h1.typing-text {
    font-size: var(--font-size-xxl);
    line-height: 1.1;
}

.hero h2.typing-text {
    font-size: var(--font-size-xl);
    line-height: 1.1;
}

.hero p {
    font-size: var(--font-size-md);
    max-width: min(540px, 100%);
}

/* Section headings */
.section h2 {
    font-size: var(--font-size-lg);
    margin-bottom: clamp(2rem, 6vw, 3rem);
}

.section h2 span {
    font-size: var(--font-size-base);
    font-family: 'Fira Code', monospace;
}

/* Card typography */
.card h3 {
    font-size: var(--font-size-md);
    margin-bottom: 1rem;
}

.role {
    font-size: var(--font-size-sm);
}

.date {
    font-size: var(--font-size-xs);
    color: var(--comment-color);
}

.experience-list li,
.skill-category li {
    font-size: var(--font-size-base);
}

/* Project typography */
.project-header h3 {
    font-size: var(--font-size-md);
}

.project-content p {
    font-size: var(--font-size-base);
}

.project-tech span {
    font-size: var(--font-size-xs);
    padding: 0.25rem 0.75rem;
}

/* Skills section */
.skill-category h3 {
    font-size: var(--font-size-md);
}

/* Certificate section */
.cert-list li a {
    font-size: var(--font-size-base);
}

/* Contact section */
.contact-item {
    font-size: var(--font-size-base);
}

.contact-item i {
    font-size: var(--font-size-lg);
}

/* Footer */
.footer {
    font-size: var(--font-size-xs);
}

/* Buttons */
.btn {
    font-size: var(--font-size-sm);
    padding: clamp(0.8rem, 2vw, 1rem) clamp(1.2rem, 3vw, 1.5rem);
}

/* Social links */
.social-links a {
    font-size: var(--font-size-lg);
}

/* Mobile-specific adjustments */
@media (max-width: 480px) {
    .section h2 {
        gap: 0.5rem;
    }

    .card {
        padding: clamp(1.2rem, 4vw, 1.5rem);
    }

    .hero-content {
        padding-top: 2rem;
    }
}

/* Tablet-specific adjustments */
@media (min-width: 481px) and (max-width: 768px) {
    .section h2 {
        gap: 0.75rem;
    }

    .hero-content {
        padding-top: 3rem;
    }
}

/* Ensure minimum touch target size */
@media (hover: none) {
    .nav-links a,
    .btn,
    .social-links a,
    .contact-item a {
        min-height: 44px;
        min-width: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero {
        padding: var(--nav-height) var(--container-padding) 0;
    }
    
    .hero-content {
        padding-bottom: 50px;
    }
}

/* Mobile-specific adjustments */
@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding-top: 2rem;
    }

    .hero-content {
        padding: 0;
    }

    .terminal {
        font-size: 0.9rem;
    }
    
    .terminal-body {
        padding: 1rem;
    }
    
    .output {
        padding: 0.5rem 0 0 1rem;
    }
}

/* Small mobile adjustments */
@media (max-width: 480px) {
    .hero {
        padding-top: 1rem;
    }
}

.about-content .card p {
    text-align: justify;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-content .card p:last-child {
    margin-bottom: 0;
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--accent-primary), var(--accent-secondary));
    transform-origin: left;
    z-index: 1001;
}

/* Project Links */
.project-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.project-links a {
    text-decoration: none;
}

/* Ensure no underlines on hover */
.btn:hover,
.btn:focus,
.btn:active,
.project-links a:hover,
.project-links a:focus,
.project-links a:active {
    text-decoration: none;
}

/* Terminal Colors */
.terminal {
    background-color: #282c34;
    border-radius: 8px;
    box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.5);
    margin-bottom: 2rem;
    font-family: 'Fira Code', monospace;
    overflow: hidden;
    width: 100%;
    max-width: 800px;
}

.terminal-header {
    background-color: #21252b;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #181a1f;
}

.terminal-buttons {
    display: flex;
    gap: 0.5rem;
    margin-right: 1rem;
}

.terminal-button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.terminal-button.close {
    background-color: #ff5f56;
}

.terminal-button.minimize {
    background-color: #ffbd2e;
}

.terminal-button.maximize {
    background-color: #27c93f;
}

.terminal-title {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.terminal-body {
    padding: 1.5rem;
    background-color: #282c34;
}

.command-line {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: #abb2bf;  /* Light gray for commands */
}

.command-line:last-child {
    margin-bottom: 0;
}

.prompt {
    color: #98c379;  /* Light green for prompt */
    margin-right: 0.75rem;
}

/* Style for echo command */
.command-line:nth-child(1) .output {
    color: #e06c75;  /* Pink for name */
}

/* Style for whoami command */
.command-line:nth-child(2) .output {
    color: #61afef;  /* Blue for role */
}

/* Style for about command */
.command-line:nth-child(3) .output {
    color: #98c379;  /* Green for bio */
}

/* Command text after prompt */
.command-line > span.prompt + text,
.command-line > span.prompt ~ text {
    color: #c678dd;  /* Purple for commands */
}

/* String literals in commands */
.command-line span[class*="string"] {
    color: #98c379;  /* Green for strings */
}

.output {
    padding: 0.5rem 0 0 1.5rem;
    line-height: 1.6;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.cursor {
    color: #56b6c2;  /* Cyan for cursor */
    animation: blink 1s infinite;
}

@media (max-width: 768px) {
    .terminal {
        font-size: 0.9rem;
    }
    
    .terminal-body {
        padding: 1rem;
    }
    
    .output {
        padding: 0.5rem 0 0 1rem;
    }
}

/* Section Headers Typing Effect */
.section h2 {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
    font-size: var(--font-size-lg);
    color: var(--text-primary);
}

.typing-cursor {
    display: inline-block;
    width: 0.5em;
    margin-left: 0.1em;
    font-family: monospace;
    animation: blink 1s step-end infinite;
    color: var(--accent-primary);
    font-weight: normal;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Make cursor visible when section is in view */
.section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
} 