/* ===================== PROJECTS PAGE ===================== */

.projects-header {
    text-align: center;
    padding: 130px 20px 50px;
}

.projects-header h1 {
    font-size: 48px;
    margin-bottom: 12px;
}

.projects-header p {
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.85;
}

/* Projects Layout */
.projects-section {
    padding: 40px 20px 100px;
    display: grid;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Project Card */
.project-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 30px;
    padding: 30px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 35px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.2);
}

/* Image */
.project-image img {
    width: 100%;
    border-radius: 18px;
    object-fit: cover;
}

/* Content */
.project-content h3 {
    font-size: 26px;
    margin-bottom: 12px;
}

.project-content p {
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}

/* Tech Stack */
.tech-stack {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 20px;
}

.tech-stack img {
    height: 42px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.tech-stack img:hover {
    transform: scale(1.1);
}

/* Actions */
.project-actions a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 12px;
    border: 2px solid var(--accent);
    text-decoration: none;
    color: var(--accent);
    font-weight: 600;
    transition: 0.3s ease;
}

.project-actions a:hover {
    background: var(--accent);
    color: #fff;
}

/* Responsive */
@media (max-width: 900px) {
    .project-card {
        grid-template-columns: 1fr;
    }
}
