.section-about {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin: 200px;
    margin-bottom: 50px;
    margin-left: 200px;
    margin-right: 200px;
    padding: 20px;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
}

.about-photo {
    border-radius: 5px;
    opacity: 0;
}

.about-hr {
    margin-right: 50px;
    margin-left: 50px;
    transform-origin: left;
    opacity: 0;
    transform: scaleX(0);
}

.about-title {
    margin-right: 50px;
    margin-left: 50px;
    color: rgb(255, 174, 0);
    opacity: 0;
    transform: translateY(30px);
    font-weight: bold;
}

.about-text {
    margin-right: 50px;
    margin-left: 50px;
    color: rgb(141, 141, 141);
    line-height: 1.8;
    opacity: 0;
    transform: translateY(30px);
}

.section-about.animate {
    animation: borderDraw 0.5s ease forwards;
}

.section-about.animate .about-photo {
    animation: imageDrop 1s ease forwards;
    animation-delay: 0.5s;
}

.section-about.animate .about-hr {
    animation: hrDraw 0.5s ease forwards;
    animation-delay: 1s;
}

.section-about.animate .about-title {
    animation: textUp 0.8s ease forwards;
    animation-delay: 1.5s;
}

.section-about.animate .about-text {
    animation: textUp 0.8s ease forwards;
    animation-delay: 1.7s;
}

.about-social-link {
    text-align: center;
    border: 1px solid rgb(136, 136, 136);
    width: 80px;
    height: 60px;
    padding-top: 15px;
    border-radius: 10px;
    margin-right: 10px;
    display: inline-block;
    opacity: 0;
    transform: translateY(30px);
    animation-fill-mode: forwards;
    transition: all 0.3s ease;
    cursor: pointer;
}

.about-social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.about-social-link.github:hover {
    background: linear-gradient(45deg, #333, #555);
    transform: translateY(-10px);
}

.about-social-link.linkedin:hover {
    background: linear-gradient(45deg, #015685, #00b2f3);
}

.about-social-link.instagram:hover {
    background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
}

.section-about.animate .about-social-link {
    animation: iconUp 0.5s ease forwards;
}

.section-about.animate .about-social-link.github { animation-delay: 2.2s; }
.section-about.animate .about-social-link.linkedin { animation-delay: 2.4s; }
.section-about.animate .about-social-link.instagram { animation-delay: 2.6s; }

@media (max-width: 1300px) {
    .section-about {
        margin: 50px 20px;
        padding: 20px;
    }
    .section-about .d-flex {
        flex-direction: column;
        align-items: center;
    }
    .about-photo {
        display: none;
    }
    .about-title,
    .about-text,
    .about-hr {
        text-align: center;
        margin-left: 0;
        margin-right: 0;
    }
}

@keyframes iconUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes borderDraw {
    0% { transform: translateY(30px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes imageDrop {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes hrDraw {
    0% { transform: scaleX(0); opacity: 0; }
    100% { transform: scaleX(1); opacity: 1; }
}

@keyframes textUp {
    0% { transform: translateY(30px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}
