/* Hero Section */
.hero-section-proiecte {
    background-image: url('/assets/images/proiecte/hero-proiecte.png');
}

/* Projects Section */
.projects {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.projects-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

/* Project Card */
.project-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.project-card-reverse {
    direction: rtl;
}

.project-card-reverse > * {
    direction: ltr;
}

.project-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.project-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #23221E;
    margin-bottom: 1.5rem;
}

.project-list {
    list-style: none;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.project-list li {
    position: relative;
    padding-left: 1.5rem;
    color: #555;
    font-size: 1rem;
    line-height: 1.5;
}

.project-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    background-color: #F9C349;
    border-radius: 50%;
}

.project-button {
    display: inline-block;
    background-color: #F9C349;
    color: #fff;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
    align-self: flex-start;
}

.project-button:hover {
    background-color: #e0b03d;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px) {
    .project-card {
        grid-template-columns: 1fr;
    }

    .project-card-reverse {
        direction: ltr;
    }

    .project-image {
        min-height: 300px;
    }
}

@media (max-width: 576px) {
    .projects {
        padding: 3rem 1rem;
    }

    .projects-container {
        gap: 2.5rem;
    }

    .project-content {
        padding: 1.5rem;
    }

    .project-title {
        font-size: 1.5rem;
    }

    .project-image {
        min-height: 250px;
    }
}