body {
    margin: 0;
    padding: 0;
    background-color: #0a0a0a;
    color: #ffffff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.header-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;

    background: url('background.png') no-repeat center center;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.header-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85); /* Dark overlay for better text visibility */
    z-index: 0;
}

.header {
    padding: 1rem;
    max-width: 800px;
}

.name {
    color: #ffffff;
    font-size: 3rem;
    margin: 0;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.subtitle {
    font-size: 1.1rem;
    margin: 0.2rem 0 0 0;
    font-weight: 400;
    color: #a0a0a0;
    animation: fadeInUp 1s ease-out;
}

.header-container {
    display: flex;
    gap: 1rem;
    align-items: center;
    max-width: 1000px;
    padding: 1rem;

    position: relative;
    z-index: 1;
}

.header-image-box {
    width: 180px;
    height: 180px;
    overflow: hidden;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

.header-profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
}

.content-section {
    padding: 4rem 2rem 6rem;
}

.profile-container {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.image-box {
    position: relative;
    overflow: hidden;
    width: 280px;
    height: 280px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.05);
    flex-shrink: 0;
    transform: rotate(-5deg);
}

.image-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.05) 25%,
        transparent 25%,
        transparent 75%,
        rgba(255, 255, 255, 0.05) 75%
    );
    background-size: 4px 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    pointer-events: none;
    z-index: 1;
}

.image-box::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, 
        rgba(255, 255, 255, 0.03) 0%, 
        transparent 60%);
    pointer-events: none;
    animation: float 6s ease-in-out infinite;
}
 
.image-overlay {
    font-family: 'Teko', sans-serif;
    font-weight: 300;
    
    position: absolute;
    bottom: 0%;
    left: 0%;
    
    width: 100%;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.767);
    color: white;
    font-size: 2rem;
    font-weight: bold;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    pointer-events: none;
    z-index: 2;
}

@import url('https://fonts.googleapis.com/css2?family=Teko:wght@300;400;700&display=swap');

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(-5deg);
    }
    50% {
        transform: translateY(-10px) rotate(-5deg);
    }
}

.profile-image {
    position: absolute;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: rotate(5deg) scale(1.1);
    transform-origin: center center;
    top: 0;
    left: 0;
}

.description {
    color: #a0a0a0;
    line-height: 1.6;
}

.description h2 {
    color: #fff;
    font-size: 2rem;
    margin: 0 0 1rem 0;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #a0a0a0;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.social-link svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.social-link:hover svg {
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
    transform: scale(1.1);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.highlight {
    background-color: #0a0a0a;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 1px 7px;
}

.about-section {
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.about-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.about-title {
    color: #fff;
    font-size: 2rem;
    margin: 0 0 1.5rem 0;
    font-weight: 600;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.about-text {
    color: #ffffff;
    line-height: 1.6;
    font-size: 1.1rem;
    margin: 0 auto;
    max-width: 800px;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

@media (max-width: 768px) {
    .profile-container {
        flex-direction: column;
    }
    
    .image-box {
        width: 100%;
        height: auto;
        aspect-ratio: 1/1;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }
}


.projects-section {
    padding: 4rem 2rem;
    margin: 0 auto;

    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.section-title {
    color: #fff;
    font-size: 2rem;
    margin: 0 0 2rem 0;
    font-weight: 700;
}

.projects-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;

    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.project-card {
    width: 400px;
    flex-shrink: 0;

    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.project-thumbnail {
    width: 100%;
    height: 200px;

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-position-y: 80%;

    top: 50%;
}

.project-content {
    padding: 1.5rem;
}

.project-title {
    color: #fff;
    font-size: 1.25rem;
    margin: 0 0 0.5rem 0;
    font-weight: 600;
}

.project-description {
    color: #a0a0a0;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0 0 1rem 0;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.project-tag {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    font-size: 0.8rem;
}

.project-link {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.project-link:hover {
    opacity: 1;
}

.position-list {
    color: #a0a0a0;
}

.position-list .formerly {
    font-style: italic;
    opacity: 0.7;
}

hr {
    height: 2px;
    border-width: 0;
    color: rgb(255, 205, 98);
    background-color: rgb(255, 205, 98)
}

/* WORK GALLERY SECTION */
.work-gallery-section {
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.work-gallery-container {
    max-width: 1000px;
    margin: 0 auto;
}

.work-gallery-title {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 2rem;
    font-weight: 700;
    animation: fadeInUp 0.8s ease-out;
}

.work-items {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.work-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 280px;
    height: 180px;
    background: rgba(40, 40, 40, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    gap: 0.5rem;
}

.work-link::before {
    content: '📁';
    display: inline-block;
    margin-right: 0.5rem;
    font-size: 1.5rem;
    transition: transform 0.3s ease, content 0.3s ease;
}

.work-link:hover::before {
    content: '📂';
    transform: translateY(-2px);
}

.work-link:hover {
    background: rgba(60, 60, 60, 0.95);
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.2);
}

.passion-linked {
    text-decoration: dotted underline;
    color: rgb(255, 196, 0)
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .work-items {
        flex-direction: column;
        align-items: center;
    }

    .work-link {
        width: 90%;
        height: 150px;
    }
}
