
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #151515;
}

.header {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    width: 100%;
}
.header-container{
    display: flex;
    align-items: center;
    justify-content: center;
}
.empty_circle {
    width: 1.3rem;
    height: 1.3rem;
    border-radius: 50%;
    border: 1px solid rgb(233 232 209);
}
.full_circle{
    width: 1.3rem;
    height: 1.3rem;
    border-radius: 50%;
    background: rgb(233 232 209);
    margin: 0 4px;
}


/* Portfolio Page Styles */
.portfolio-page {
    min-height: 100vh;
    background: #1a1a1a;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    /*position: relative;*/
    overflow: hidden;
}

.nav-dots, .nav-dots-right {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 10;
}

.nav-dots {
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.nav-dots-right {
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #666;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #fff;
    border-color: #fff;
}

.portfolio-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    /*position: relative;*/
}

.year_badge_box{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}
.year_badge_box > .empty_circle{
    width: 1.75rem;
    height: 1.75rem;
    margin-right: 8px;
}

.year-badge {
    /*position: absolute;*/
    /*top: -80px;*/
    /*left: 50%;*/
    /*transform: translateX(-50%);*/
    background: transparent;
    border: 1px solid #f5f5dd;
    border-radius: 25px;
    /*padding: 8px 20px;*/
    color: #ccc;
    font-size: 18px;
    font-weight: bold;
    width: 100px;
}

.portfolio-title {
    /*position: relative;*/
    /*margin: 50px 0;*/
}

.main-title {
    font-size: 7rem;
    /*font-size: clamp(10rem, 12vw, 8rem);*/
    font-weight: 900;
    color: #f5f5dc;
    letter-spacing: 0.1em;
    line-height: 1.1;
    /*position: relative;*/
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.gradient-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50px;
    z-index: 1;
}

.author-info {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
    width: 96%;
}

.author-dot {
    width: 2rem;
    height: 2rem;
    background: #f5f5dc;
    border-radius: 50%;
}

.author-name {
    color: #f5f5dc;
    font-size: 24px;
    font-style: italic;
    background: rgb(233 232 209);
    /*padding: 2px 2px;*/
    border-radius: 25px;
    /*border: 2px solid #666;*/
    width: 162px;
    color: #333333;
}

.enter-button {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.enter-link {
    color: #f5f5dc;
    text-decoration: none;
    padding: 12px 30px;
    border: 2px solid #666;
    border-radius: 25px;
    background: rgba(51, 51, 51, 0.8);
    transition: all 0.3s ease;
}

.enter-link:hover {
    background: #f5f5dc;
    color: #1a1a1a;
    border-color: #f5f5dc;
}

/* Resume Page Styles */





.resume-page {
    /*background: #f5f5dc;*/
    min-height: 100vh;
    padding: 10px;
}

.resume-container {
    /*max-width: 1200px;*/
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    /*background: #f5f5dc;*/
}

.profile-section {
    grid-row: span 2;
}

.profile-image {
    position: relative;
    border-bottom-right-radius: 70px;
    overflow: hidden;
    height: 500px;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.profile-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 30px;
    color: white;
}

.profile-name {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
}

.profile-tags {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.tag {
    background: rgba(255,255,255,0.2);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    border: 1px solid rgba(255,255,255,0.3);
}

.profile-dots {
    display: flex;
    gap: 8px;
}

.about-section {
    background: #e8e8d0;
    padding: 12px 16px;
    border-bottom-right-radius: 70px;
    position: relative;
    margin-top: 20px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 28px;
    font-weight: bold;
}

.header-dots {
    display: flex;
    gap: 8px;
}

.about-content .greeting {
    font-style: italic;
    font-size: 18px;
    margin-bottom: 15px;
}

.about-content .collaboration {
    font-style: italic;
    margin-top: 15px;
}

.education-section, .experience-section {
    background: #e8e8d0;
    padding: 12px 16px;
    border-top-right-radius: 70px;
}

.education-section h2, .experience-section h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 4px;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    /*gap: 20px;*/
    margin-bottom: 10px;
    align-items: flex-start;
}

.year {
    /*background: #333;*/
    color: #333;
    padding: 3px 8px 0;
    font-weight: bold;
    min-width: 80px;
    text-align: center;
    font-family: "Calligraffitti", cursive;
    border-radius: 25px;
    border: 1px solid #333;
}

.details h3 {
    font-weight: bold;
    margin-bottom: 5px;
}

.details p {
    color: #666;
    font-size: 14px;
}

.skills-section_box{
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 28px;
}


.software-section {
    grid-column: span 1;
    background: #e8e8d0;
    padding: 12px 16px;
    border-bottom-left-radius: 70px;
}

.software-section h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 12px;
}

.software-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.software-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.software-icon {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 18px;
}

.software-icon.ai { background: #ff9a00; }
.software-icon.ps { background: #31a8ff; }
.software-icon.lr { background: #31a8ff; }
.software-icon.id { background: #ff3366; }
.software-icon.ae { background: #9999ff; }
.software-icon.figma { background: #f24e1e; }

.software-info h4 {
    font-weight: bold;
    margin-bottom: 5px;
}

.skill-dots {
    display: flex;
    gap: 5px;
}

.skill-dots .dot {
    width: 8px;
    height: 8px;
    border: none;
}

.skills-section {
    grid-column: span 2;
    background: #e8e8d0;
    padding: 30px;
    border-radius: 20px;
}

.skills-section h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 25px;
}

.skills-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.skill-tag {
    padding: 2px 10px;
    border-radius: 25px;
    border: 1px solid #333;
    /*font-style: italic;*/
    font-weight: 500;
    font-family: "Calligraffitti", cursive;
}

.contact-section {
    grid-column: span 2;
    background: #e8e8d0;
    padding: 12px 16px;
    border-top-right-radius: 70px;
    margin-top: 26px;
    /*height: 100%    ;*/
}

.contact-section h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 25px;
}

.contact-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.qr-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.qr-code {
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qr-code img {
    width: 100px;
    height: 100px;
}

.qr-text {
    text-align: center;
    font-weight: bold;
}

.contact-info {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 32px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 16px;
    margin: 13px;
}

.contact-icon {
    font-size: 0px;
}

.back-button {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 100;
}

.back-button a {
    color: #333;
    text-decoration: none;
    padding: 10px 20px;
    background: rgba(255,255,255,0.9);
    border-radius: 25px;
    border: 2px solid #333;
    transition: all 0.3s ease;
}

.back-button a:hover {
    background: #333;
    color: white;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-dots, .nav-dots-right {
        display: none;
    }

    .year-badge {
        position: static;
        transform: none;
        margin-bottom: 30px;
        display: inline-block;
    }

    .main-title {
        font-size: 3rem;
    }

    .author-name {
        font-size: 18px;
    }

    .resume-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 10px;
    }

    .profile-section {
        grid-row: auto;
    }

    .profile-image {
        height: 300px;
    }

    .software-section,
    .skills-section,
    .contact-section {
        grid-column: 1;
    }

    .software-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        flex-direction: column;
        gap: 20px;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .timeline-item {
        flex-direction: column;
        gap: 10px;
    }

    .year {
        align-self: flex-start;
    }
}

@media (max-width: 480px) {
    .resume-page {
        padding: 10px;
    }

    .about-section,
    .education-section,
    .experience-section,
    .software-section,
    .skills-section,
    .contact-section {
        padding: 20px;
    }

    .section-header h2,
    .education-section h2,
    .experience-section h2,
    .software-section h2,
    .skills-section h2,
    .contact-section h2 {
        font-size: 24px;
    }

    .main-title {
        font-size: 2.5rem;
    }

    .skills-tags {
        gap: 10px;
    }

    .skill-tag {
        padding: 8px 15px;
        font-size: 14px;
    }
}