﻿.portfolio-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 2rem;
    position: relative;
}

.section-content {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.section-title {
    text-align: center;
    font-family: 'gendy', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 3rem;
    position: relative;
    background: linear-gradient(165deg, #4d71ad, #528cdf, #c1a894, #bf893e);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

    .section-title.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .section-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 3px;
        background: linear-gradient(90deg, transparent, #528cdf, transparent);
    }

.scroll-button {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
}

    .scroll-button:hover {
        color: #528cdf;
        transform: translateX(-50%) translateY(-5px);
    }

/* Animations */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
    .portfolio-section {
        padding: 3rem 1rem;
    }

    .section-title {
        margin-bottom: 2rem;
    }

        .section-title::after {
            width: 60px;
        }

    .scroll-button {
        bottom: 1rem;
        font-size: 1.2rem;
    }
}