/* Projects Section Styles - Updated with YouTube Player */
.projects-section {
    padding: 1.2rem;
    padding-top: 0.6rem;
    background-color: #FDF6E3;
}

.projects-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 0.2rem;
}

.projects-container h2 {
    font-size: clamp(1.08rem, 1.8vw, 1.32rem);
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.project-item {
    margin-bottom: 1.5rem;
    padding: 0.9rem 1rem;
    border: 1px solid #333;
    border-radius: 4px;
    background-color: #FDF6E3;
}

.project-item:last-child {
    margin-bottom: 0;
}

.project-item h3 {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 0.3rem;
}

.project-item .description {
    font-size: clamp(0.72rem, 1.2vw, 0.9rem);
    font-weight: 500;
    line-height: 1.6;
    color: #555;
    margin-bottom: 0.2rem;
}

.project-item .github-link {
    font-size: clamp(0.6rem, 1vw, 0.8rem);
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.project-item .github-link a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.project-item .github-link a:hover {
    color: #000;
}

.project-item .github-link i {
    margin-right: 0.3rem;
}

/* list-style and embed styling removed for simpler text layout */

/* Media Queries for Projects Section */
@media (max-width: 768px) {
    .projects-section {
        padding: 1rem;
        padding-top: 0.5rem;
    }

    .projects-container {
        padding: 1rem;
    }

    .projects-container h2 {
        font-size: 1.5rem;
    }

    .project-item h3 {
        font-size: 1.2rem;
    }

    .project-item .description {
        font-size: 1rem;
    }

    .project-item .github-link {
        font-size: 0.9rem;
    }

    .project-item li {
        font-size: 1rem;
    }

    .project-item .youtube-player iframe {
        height: 180px;
    }
}

@media (max-width: 600px) {
    .project-item h3 {
        font-size: 1.1rem;
    }

    .project-item .description {
        font-size: 0.95rem;
    }

    .project-item .github-link {
        font-size: 0.85rem;
    }

    .project-item li {
        font-size: 0.95rem;
    }

    .project-item .youtube-player iframe {
        height: 160px;
    }
}

@media (max-width: 480px) {
    .projects-section {
        padding: 0.8rem;
        padding-top: 0.5rem;
    }

    .projects-container {
        padding: 1rem;
    }

    .projects-container h2 {
        font-size: 1.3rem;
    }

    .project-item h3 {
        font-size: 1rem;
    }

    .project-item .description {
        font-size: 0.9rem;
    }

    .project-item .github-link {
        font-size: 0.8rem;
    }

    .project-item li {
        font-size: 0.9rem;
    }

    .project-item .youtube-player iframe {
        height: 140px;
    }
}