/* About Section */
.about-section {
    background: #1a1a1a;
    box-shadow: inset 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    animation: fadeInLeft 1s ease-out;
}

.about-text .section-title {
    color:#b3a271;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

.about-image {
    animation: fadeInRight 1s ease-out;
    display: flex;
    justify-content: center;
}

.about-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8),
                0 0 40px rgba(179, 162, 113, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid rgba(179, 162, 113, 0.2);
}

.about-image img:hover {
    transform: scale(1.05);
    /*box-shadow: 0 25px 70px rgba(0, 0, 0, 0.9),
                0 0 60px rgba(179, 162, 113, 0.4);*/
}

.about-skills {
    margin-top: 5rem;
}

.skills-subtitle {
    font-size: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 3rem;
    letter-spacing: 1px;
}

/* Skills Tags */
.skills-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 2rem;
    justify-content: center;
}

.skill-tag {
    background: transparent;
    color: rgba(255, 255, 255, 0.75);
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-size: 1rem;
    border: 1px solid rgba(179, 162, 113, 0.2);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.skill-tag-primary {
    border: 1px solid rgba(179, 162, 113, 0.4);
    padding: 0.75rem 1.4rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: #b3a271;
}

.skill-icon-small {
    color: #b3a271;
    font-size: 1.1rem;
}
