/* Main Content */
.main-content {
    max-width: 85%;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: var(--font-main);
}

/* About Section */
.about-section {
    margin-bottom: 60px;
}

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

.profile-photo {
    display: flex;
    flex: 0 0 300px;
    flex-direction: column;
    align-items: center;
    gap: 15px
}

.profile-photo img {
    width: 100%;
    max-width: 300px;
    border: 6px solid var(--black);
    border-radius: 5px;
}

.download-btn {
    font-family: var(--font-main);
    font-size: var(--fs-base);
    font-weight: bold;
    background-color: transparent;
    
    border: 3px solid var(--orange);
    color: var(--black);
    padding: 12px 25px;
    cursor: pointer;

    margin: 0 auto 20px auto;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    
}

.download-btn:hover {
    background-color: var(--orange);
    color: var(--white);
}

/* right side (text) */
.about-info {
    flex: 1;
}

.about-info h2 {
    font-size: var(--fs-lg);
    margin-bottom: 5px;
}

.about-info .highlight {
    color: var(--orange);
}

.about-info h3 {
    font-size: var(--fs-md);
    margin-bottom: 20px;
    color: var(--gray);
}

.description {
    margin-bottom: 30px;
    text-align: justify
}

.personal-details {
    margin-bottom: 30px;
}

.detail-row {
    display: flex;
    margin-bottom: 8px;
}

.detail-row .label {
    font-weight: bold;
    width: 150px; 
}

.social-icons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-icons a:hover {
    transform: translateY(-2px);
    opacity: 0.85;
}

.social-icons img {
    width: 55px;
    height: 55px;
    display: block;
    object-fit: contain;
}

.social-icons a:hover img {
    filter: invert(44%) sepia(97%) saturate(5500%) hue-rotate(0deg) brightness(102%) contrast(105%);
}


/* Skills Section */
.skills-section {
    margin-bottom: 60px;
}
.skills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center; 
}

.skill-card {
    flex-grow: 1;       
    flex-shrink: 0;    
    flex-basis: 250px;  
    border: 3px solid #333;
    padding: 20px;
    background-color: #fff;
    box-sizing: border-box;
}

/* Card header */
.skill-card h3 {
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #333;
}

/* Skill tags */
.skill-items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skill-items span {
    background-color: #f5f5f0;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 14px;
}
