/* projects.css */

/* Specific styles for the Projects page */
.projects-section {
    padding: 5rem 0;
    margin-bottom: 2rem;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.project-card {
    background: rgba(0, 0, 0, 0.7);
    padding: 2rem;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.project-card h3 {
    color: var(--neon-color);
    margin-bottom: 1rem;
    text-shadow: 0 0 5px var(--neon-color);
}

.project-card p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.project-card a {
    color: var(--primary-color);
    font-weight: bold;
    border-bottom: 1px solid var(--primary-color);
    transition: color 0.3s, border-color 0.3s;
}

.project-card a:hover {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 15px var(--neon-color);
}

/* New styles for the Project Detail page */
.project-detail {
    padding: 5rem 0;
    margin-bottom: 2rem;
}

.project-detail .container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.project-detail h3 {
    margin-top: 2rem;
    color: var(--neon-color);
    text-shadow: 0 0 5px var(--neon-color);
}

.project-detail embed {
    width: 100%;
    height: 600px;
    border: 2px solid var(--neon-color);
    border-radius: 10px;
    margin-top: 1rem;
}
