/* ==========================================================
   Block: Projects Section — frontend styles
   ========================================================== */

.projects-section {
    background: linear-gradient(135deg, #0d1b4b, #1a3a7a);
    padding: 80px 0;
}

.projects-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.projects-section .section-title { color: #fff; }
.projects-section .section-title span { color: var(--red) !important; }
.projects-section .section-subtitle { color: rgba(255, 255, 255, 0.7); }

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.project-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 28px 24px;
    transition: all 0.3s;
    backdrop-filter: blur(6px);
}

.project-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
}

.project-icon {
    font-size: 36px;
    margin-bottom: 16px;
    line-height: 1;
}

.project-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: rgba(255, 82, 82, 0.2);
    border: 1px solid rgba(255, 82, 82, 0.4);
    color: #ff8080;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}

.project-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 10px;
}

.project-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.project-card p strong { color: #fff; }

@media (max-width: 1024px) {
    .projects-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .projects-section { padding: 48px 0; }
    .projects-section .container { padding: 0 16px; }
    .projects-grid { grid-template-columns: 1fr; }
}
