/* IT Projects Styling */

.navbar {
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
}

.navbar-brand {
    font-family: 'Syncopate', sans-serif;
    font-weight: 700;
    letter-spacing: 0.2em;
}

.project-card {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(78, 205, 196, 0.2);
    border-radius: 15px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.project-card:hover {
    border-color: rgba(78, 205, 196, 0.5);
    box-shadow: 0 0 30px rgba(78, 205, 196, 0.3);
    transform: translateY(-5px);
}

.project-card h2 {
    color: #4ecdc4;
    font-weight: 700;
}

.project-card .text-muted {
    color: #a0a0a0 !important;
    font-style: italic;
}

.feature-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
}

.feature-list li:before {
    content: "▹";
    position: absolute;
    left: 0;
    color: #4ecdc4;
    font-weight: bold;
}

.tech-tags .badge {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 400;
}

.quiz-machine-gallery img {
    /* No hover effects */
}

.project-teaser {
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(78, 205, 196, 0.2);
    transition: all 0.3s ease;
}

.project-teaser:hover {
    border-color: rgba(78, 205, 196, 0.5);
    background: rgba(26, 26, 26, 0.8);
}

.project-teaser h4 {
    color: #ff6b6b;
    font-weight: 600;
}

.btn-outline-light {
    border: 2px solid rgba(78, 205, 196, 0.5);
    color: #4ecdc4;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: #4ecdc4;
    border-color: #4ecdc4;
    color: #0f0f0f;
}

.placeholder-image {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 2px dashed rgba(78, 205, 196, 0.3);
    border-radius: 10px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-style: italic;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .project-card {
        padding: 2rem;
    }
    
    .order-lg-1, .order-lg-2 {
        order: 0 !important;
    }
    
    .project-card .col-lg-6:first-child {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .project-card {
        padding: 1.5rem;
    }
    
    main {
        padding-top: 80px !important;
    }
    
    /* MOBILON: minden row lineáris lesz */
    .project-card .row {
        display: flex !important;
        flex-direction: column !important;
    }
    
    .project-card .row > div {
        width: 100% !important;
        max-width: 100% !important;
    }
}
