/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #000000;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.5;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Typography */
p {
    margin: 0;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    padding: 16px;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 18px;
    text-transform: lowercase;
    cursor: pointer;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    color: #6c6c6c;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    text-transform: lowercase;
    text-decoration: none;
    cursor: pointer;
}

/* Main content */
.main-content {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-color: #000000;
}

.container {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 80px 16px 50px;
    width: 100%;
}

/* Header Section */
.header-section {
    width: 100%;
}

.header-background {
    aspect-ratio: 1306/122;
    background-image: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1306&h=122&fit=crop');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    flex-shrink: 0;
    margin-bottom: 32px;
}

.profile-section {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}

.profile-image {
    width: 128px;
    height: 128px;
    background-image: shiva.jpeg;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 11.83px;
    flex-shrink: 0;
}

.profile-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    justify-content: flex-start;
    line-height: 0;
    width: 100%;
}

.profile-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-transform: lowercase;
    font-size: 24px;
    color: #ffffff;
    width: 100%;
    min-width: 100%;
    position: relative;
    flex-shrink: 0;
}

.profile-title p {
    line-height: normal;
    white-space: nowrap;
}

.profile-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    line-height: normal;
    font-size: 14px;
    color: #6c6c6c;
    position: relative;
    flex-shrink: 0;
}

.profile-subtitle p {
    color: #6c6c6c;
    margin-bottom: 0;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: flex-start;
    justify-content: flex-start;
    line-height: 0;
    text-transform: lowercase;
    width: 100%;
    font-size: 12px;
    color: #6c6c6c;
}

.social-link {
    position: relative;
    flex-shrink: 0;
    cursor: pointer;
    text-decoration: underline;
    text-decoration-skip-ink: none;
    text-underline-position: from-font;
    line-height: normal;
    white-space: pre;
}

/* Separator */
.separator {
    height: 0;
    width: 100%;
    max-width: 1024px;
    position: relative;
    flex-shrink: 0;
}

.separator svg {
    display: block;
    width: 100%;
    height: 100%;
}

/* Experience & Education Section */
.experience-education-section {
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    position: relative;
    flex-shrink: 0;
}

.experience-section, .education-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 26px;
    align-items: flex-start;
    justify-content: flex-start;
    position: relative;
    flex-shrink: 0;
}

.section-title {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    line-height: 0;
    text-transform: lowercase;
    font-size: 24px;
    color: #6c6c6c;
    white-space: nowrap;
    position: relative;
    flex-shrink: 0;
}

.section-title p {
    line-height: normal;
    white-space: pre;
}

.experience-items, .education-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    justify-content: flex-start;
    position: relative;
    flex-shrink: 0;
}

.experience-item, .education-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: flex-start;
    justify-content: flex-start;
    line-height: 0;
    text-transform: lowercase;
    font-size: 16px;
    width: 100%;
    position: relative;
    flex-shrink: 0;
}

.item-title {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: #ffffff;
    width: 100%;
    position: relative;
    flex-shrink: 0;
}

.item-title p {
    line-height: normal;
}

.item-description {
    font-family: 'Inter', sans-serif;
    font-weight: normal;
    color: #6c6c6c;
    letter-spacing: -0.8px;
    font-size: 12px;
    width: 100%;
    position: relative;
    flex-shrink: 0;
}

.item-description p {
    line-height: normal;
    font-size: 16px;
    color: rgba(98, 98, 98, 1);
}

/* Works Section */
.works-section, .also-did-section, .other-interests-section {
    display: flex;
    flex-direction: column;
    gap: 26px;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    position: relative;
    flex-shrink: 0;
}

.works-items, .also-did-items {
    display: flex;
    flex-direction: column;
    gap: 64px;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    position: relative;
    flex-shrink: 0;
}

.work-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    position: relative;
    flex-shrink: 0;
}

.work-title {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    line-height: 0;
    text-transform: lowercase;
    min-width: 100%;
    font-size: 16px;
    color: #ffffff;
    width: min-content;
    position: relative;
    flex-shrink: 0;
}

.work-title p {
    line-height: normal;
}

.work-description {
    font-family: 'Inter', sans-serif;
    font-weight: normal;
    line-height: 0;
    text-transform: lowercase;
    color: #aeaeae;
    font-size: 12px;
    letter-spacing: -0.4px;
    width: 100%;
    max-width: 768px;
    position: relative;
    flex-shrink: 0;
}

.work-description p {
    line-height: 1.3;
    color: rgba(98, 98, 98, 1);
    font-size: 16px;
}

.work-link, .work-link-external {
    font-family: 'Inter', sans-serif;
    font-weight: normal;
    line-height: 0;
    text-transform: lowercase;
    color: #6c6c6c;
    font-size: 12px;
    letter-spacing: -0.8px;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    flex-shrink: 0;
}

.work-link p, .work-link-external p {
    text-decoration-skip-ink: none;
    text-underline-position: from-font;
    text-decoration: solid underline;
    line-height: normal;
    font-size: 16px;
}

.work-image {
    width: 100%;
    max-width: 768px;
    position: relative;
    flex-shrink: 0;
}

.project-image {
    width: 100%;
    aspect-ratio: 728/290;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.project-image-overlay {
    position: absolute;
    inset: 0;
    border: 1px solid #404040;
    border-radius: 16px;
    pointer-events: none;
}

/* Project Images */
.project-image-1 {
    background-image: url('https://images.unsplash.com/photo-1551434678-e076c223a692?w=800&h=320&fit=crop');
}

.project-image-2 {
    background-image: url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?w=800&h=320&fit=crop');
}

.project-image-3 {
    background-image: url('https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=800&h=320&fit=crop');
}

.project-image-4 {
    background-image: url('https://images.unsplash.com/photo-1486312338219-ce68d2c6f44d?w=800&h=320&fit=crop');
}

/* Other Interests */
.interests-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    position: relative;
    flex-shrink: 0;
}

.interest-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
}

.interest-item:not(:last-child) {
    margin-bottom: 16px;
}

.interest-title {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    line-height: 0;
    text-transform: lowercase;
    color: #ffffff;
    font-size: 16px;
    position: relative;
    flex-shrink: 0;
}

.interest-title p {
    line-height: normal;
}

.interest-description {
    font-family: 'Inter', sans-serif;
    font-weight: normal;
    line-height: 1.3;
    text-transform: lowercase;
    color: rgba(98, 98, 98, 1);
    font-size: 14px;
    width: 100%;
    max-width: 768px;
    position: relative;
    flex-shrink: 0;
}

/* Responsive Design - Tablet and Desktop */
@media (min-width: 768px) {
    .nav-container {
        padding: 16px 32px;
    }
    
    .nav-logo {
        font-size: 20px;
    }
    
    .nav-links {
        gap: 32px;
    }
    
    .nav-link {
        font-size: 16px;
    }
    
    .container {
        padding: 80px 32px 100px;
        gap: 48px;
    }
    
    .profile-section {
        gap: 54px;
        align-items: flex-start;
    }
    
    .profile-image {
        width: 160px;
        height: 160px;
    }
    
    .profile-info {
        gap: 11px;
    }
    
    .profile-title {
        font-size: 32px;
    }
    
    .profile-subtitle {
        font-size: 16px;
    }
    
    .social-links {
        font-size: 14px;
        gap: 24px;
    }
    
    .experience-education-section {
        flex-direction: row;
        gap: 64px;
    }
    
    .experience-section, .education-section {
        flex-basis: 0;
        flex-grow: 1;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .experience-items, .education-items {
        gap: 32px;
    }
    
    .experience-item, .education-item {
        font-size: 18px;
    }
    
    .item-description {
        font-size: 14px;
    }
    
    .work-title {
        font-size: 18px;
    }
    
    .work-description {
        font-size: 14px;
    }
    
    .work-link, .work-link-external {
        font-size: 14px;
    }
    
    .works-items, .also-did-items {
        gap: 72px;
    }
    
    .interest-title {
        font-size: 18px;
    }
    
    .interest-description {
        font-size: 16px;
    }
}

@media (min-width: 1024px) {
    .nav-container {
        padding: 16px 215px;
    }
    
    .container {
        padding: 80px 215px 100px;
    }
}

/* Mobile specific adjustments */
@media (max-width: 767px) {
    .works-items, .also-did-items {
        gap: 64px;
    }
}
