.about-section {
    padding: 100px 0;
    position: relative;
    background-color: rgba(42, 45, 62, 0.7);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.8rem;
    color: var(--heading-color);
    font-weight: 700;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.about-image-container {
    width: 350px;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    border: 3px solid var(--accent-color);
    box-shadow: 0 0 30px rgba(255, 159, 67, 0.3);
    margin: 0 auto 40px;
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 2;
}

.about-image-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, var(--accent-color) 0%, var(--primary-color) 40%, transparent 70%);
    z-index: 1;
    opacity: 0.9;
    transform: scale(1.2);
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
}

.who-am-i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 30px;
    font-weight: 700;
}

.about-description {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.about-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--paragraph-color);
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 159, 67, 0.1);
    transition: all 0.3s ease;
}

.about-description p:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 159, 67, 0.1);
    border-color: var(--accent-color);
}

.highlight {
    color: var(--accent-color);
    font-weight: 600;
}

.glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--accent-color);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    z-index: 0;
}

.glow:nth-child(1) {
    top: 20%;
    left: 20%;
}

.glow:nth-child(2) {
    bottom: 20%;
    right: 20%;
}

@media (max-width: 1200px) {
    .about-description {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .section-title h2 {
        font-size: 2.5rem;
    }

    .about-image-container {
        width: 300px;
        height: 300px;
    }

    .who-am-i {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }

    .about-description {
        grid-template-columns: 1fr;
    }

    .about-image-container {
        width: 250px;
        height: 250px;
    }

    .section-title h2 {
        font-size: 2.2rem;
    }

    .about-description p {
        font-size: 1rem;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .about-image-container {
        width: 200px;
        height: 200px;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .who-am-i {
        font-size: 1.6rem;
    }

    .about-content {
        padding: 0 15px;
    }
} 