.project-detail {
    padding-top: 100px;
    color: white;
}

.project-header {
    text-align: center;
    padding: 60px 5%;
    background: linear-gradient(rgba(31, 36, 45, 0.8), rgba(31, 36, 45, 0.9)), url('/imgs/projects-bg.jpg');
    background-size: cover;
}

.subtitle {
    font-size: 1.2rem;
    color: #ccc;
    margin-top: -20px;
    margin-bottom: 20px;
}

.project-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 0.9rem;
    color: #5ca5ee;
}

.main-image {
    width: 100%;
    margin: -40px 0 50px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.main-image img {
    width: 100%;
    display: block;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 5%;
}

.detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.content-block {
    margin-bottom: 40px;
}

.content-block h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    color: #5ca5ee;
    margin-bottom: 15px;
}

.content-block p {
    line-height: 1.8;
    color: #ddd;
}

.content-block ul {
    list-style: none;
    padding-left: 5px;
}

.content-block ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #ddd;
}

.content-block ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #5ca5ee;
}

/* Sidebar kártyák */
.side-card {
    background: #2a2f3b;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 25px;
}

.side-card h4 {
    margin-bottom: 15px;
    border-bottom: 1px solid #444;
    padding-bottom: 10px;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-stack span {
    background: rgba(92, 165, 238, 0.1);
    color: #5ca5ee;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 0.85rem;
}

.action-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn.outline {
    background: transparent;
    border: 1px solid #5ca5ee;
}

.back-nav {
    margin: 50px 0;
    padding-top: 30px;
    border-top: 1px solid #333;
}

.back-link {
    color: #5ca5ee;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.back-link:hover {
    transform: translateX(-5px);
}

/* Reszponzivitás */
@media (max-width: 850px) {
    .detail-grid {
        grid-template-columns: 1fr;
    }
}