﻿.projects-section {
    padding: 140px 0 100px;
    background: linear-gradient(to bottom, #121212, #1b1b1b);
}

.fancy-title {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(to right, #00f0ff, #0ff, #00bcd4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #aaa;
    max-width: 800px;
    margin: 0 auto 60px;
}

.description-box {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 15px;
    max-width: 960px;
    margin: 40px auto;
    line-height: 1.7;
    font-size: 1.1rem;
    color: #ddd;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.screenshot-card {
    background: linear-gradient(145deg, #1c1c1c, #2c2c2c);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .screenshot-card:hover {
        transform: scale(1.03);
        box-shadow: 0 0 20px 5px rgba(100, 200, 255, 0.2);
    }

    .screenshot-card img {
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 15px;
        filter: grayscale(0.2) brightness(0.9);
        transition: filter 0.3s ease;
    }

    .screenshot-card:hover img {
        filter: none;
    }

.caption {
    margin-top: 12px;
    font-size: 1rem;
    color: #aaa;
    text-align: center;
}

.btn-custom {
    border-radius: 30px;
    font-size: 1.1rem;
    padding: 12px 30px;
}

@media (max-width: 768px) {
    .fancy-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .description-box {
        font-size: 1rem;
        margin: 20px 1rem;
    }

    .btn-custom {
        width: 100%;
    }
}

.fancy-title {
    font-size: 5rem;
    font-weight: 800;
    background: linear-gradient(to right, #00e0ff, #00ffae);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(0, 255, 200, 0.1);
    margin-bottom: 20px;
    display: inline-block;
}

.back-link {
    color: #ccc;
    font-size: 1.5rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

    .back-link:hover {
        color: #00ffae;
    }
