/* ================================
   Base Styles
================================ */
html {
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
}

.project-card {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
    align-items: center;
}
/* ================================
   Project Cards
================================ */
.project-card {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
    align-items: center;
    max-width: 100%;
    overflow: hidden;
}
/* ================================
   Base Styles
================================ */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}
/* ================================
   Base Styles
================================ */
html {
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
}
/* Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.1;
}

/* Images and media */
img, video {
    max-width: 100%;
    height: auto;
    display: block;
}
/* ================================
   Project Cards
================================ */
.project-card {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
    align-items: center;
}
.project-image {
    grid-column: 1 / 8;
    grid-row: 1 / -1;
    position: relative;
    z-index: 1;
    transition: all 0.25s ease;
    max-width: 100%;
    overflow: hidden;
}
.project-image img {
    filter: none;
    transition: filter 0.25s ease;
}

.project-card:hover .project-image img {
    filter: brightness(1.1);
}
.project-content {
    grid-column: 7 / -1;
    grid-row: 1 / -1;
    text-align: right;
    z-index: 2;
}

.project-card:nth-child(even) .project-image {
    grid-column: 6 / -1;
}
.project-card:nth-child(even) .project-content {
    grid-column: 1 / 8;
    text-align: left;
}

.project-image {
    opacity: 1;
}
/* ================================
   Experience Items
================================ */
.experience-item {
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    transform: translateY(20px);
}

.experience-item.visible {
    opacity: 1;
    transform: translateY(0);
}
/* Experience card - same background as website */
.experience-item .bg-dark-800 {
    background: transparent; /* matches overall background */
    border-radius: 0.75rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: none; /* no shadow until hover */
    max-width: 100%;
    overflow: hidden;
}
/* Technology tags */
.tech-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: rgba(30, 41, 59, 0.4);
    color: #64ffda;
    border-radius: 9999px;
    font-size: 0.75rem;
    transition: all 0.2s ease;
    max-width: 100%;
    word-break: break-word;
}
.tech-tag:hover {
    background-color: rgba(30, 41, 59, 0.7);
    transform: translateY(-1px);
    color: #7fffe0;
}
/* Subtle hover: small lift & soft edge */
.experience-item .bg-dark-800:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.25),
                0 0 0 1px rgba(100, 255, 218, 0.08);
}

/* Remove default list style */
.experience-item ul {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}

/* Prevent duplicate bullets */
.experience-item li {
    position: relative;
    padding-left: 0;
    list-style-type: none;
}

.experience-item li::before {
    content: none !important;
    border: 0;
}

/* Align custom bullet span ▹ */
.experience-item li > span:first-child {
    display: inline-block;
    width: 1.25rem;
    text-align: center;
    margin-right: 0.5rem;
    line-height: 1;
    transform: translateY(2px);
    color: #64ffda;
    transition: color 0.3s ease, transform 0.3s ease;
}

/* Slight hover accent for bullets inside hovered card */
.experience-item .bg-dark-800:hover li > span:first-child {
    color: #7fffe0;
    transform: translateY(1px);
}

/* ================================
   Animations
================================ */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================================
   Responsive Adjustments
================================ */
@media (max-width: 768px) {
    .project-card,
    .project-card:nth-child(even) {
        display: flex;
        flex-direction: column;
    }

    .project-image,
    .project-card:nth-child(even) .project-image {
        grid-column: 1 / -1;
        opacity: 0.25;
    }

    .project-content,
    .project-card:nth-child(even) .project-content {
        grid-column: 1 / -1;
        padding: 2rem;
        background-color: rgba(10, 25, 47, 0.85);
        text-align: left;
    }
}

/* ================================
   Reduced Motion (accessibility)
================================ */
@media (prefers-reduced-motion: reduce) {
    .experience-item,
    .experience-item .bg-dark-800 {
        transition: none !important;
        transform: none !important;
        box-shadow: none !important;
    }
}


/* ===== Splash / Intro ===== */
/* ===== Splash / Intro ===== */
/* ===== Splash / Intro ===== */
