/* Projeler Blok CSS - Görseldeki Tasarıma Uygun */

.block-projects {
    width: 100%;
    min-height: 600px;
    background-color: #f5f5f5;
    padding: 80px 0;
    position: relative;
    margin-top: 0;
}

.projects-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.projects-header {
    text-align: right;
    margin-bottom: 40px;
}

.projects-page-title {
    font-family: "Bebas Neue", cursive;
    font-size: 48px;
    color: #0080c9;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0;
    font-style: italic;
    text-transform: uppercase;
}

.projects-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.projects-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #0080c9;
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 10;
}

.projects-nav-btn:hover {
    background-color: #1a3a7a;
    transform: scale(1.1);
}

.projects-nav-btn:active {
    transform: scale(0.95);
}

.projects-slider {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.project-slide {
    display: none;
    width: 100%;
}

.project-slide.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.project-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background-color: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.project-image-section {
    width: 100%;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    background-color: #f0f0f0;
}

.project-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-image-section:hover .project-main-image {
    transform: scale(1.05);
}

.project-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0080c9 0%, #1a3a7a 100%);
    color: #fff;
    font-size: 64px;
}

.project-text-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}

.project-title {
    font-family: "Bebas Neue", cursive;
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin: 0;
    line-height: 1.2;
    letter-spacing: 1px;
}

.project-start-date {
    display: flex;
    align-items: baseline;
    gap: 10px;
    font-size: 16px;
    color: #666;
    margin-top: -10px;
}

.date-label {
    font-weight: 600;
    color: #333;
}

.date-value {
    color: #0080c9;
    font-weight: 500;
}

.project-description {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin: 0;
    text-align: justify;
}

.project-actions {
    display: flex;
    gap: 15px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.project-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background-color: #fff;
    color: #333;
    text-decoration: none;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: "Bebas Neue", cursive;
    letter-spacing: 1px;
}

.project-btn:hover {
    background-color: #0080c9;
    color: #fff;
    border-color: #0080c9;
    transform: translateX(5px);
}

.project-btn i {
    transition: transform 0.3s ease;
}

.project-btn:hover i {
    transform: translateX(5px);
}

.project-idea {
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.idea-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
}

.idea-text {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    font-family: "Bebas Neue", cursive;
    letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 1200px) {
    .project-content {
        gap: 30px;
        padding: 30px;
    }
    
    .project-image-section {
        height: 400px;
    }
}

@media (max-width: 992px) {
    .block-projects {
        padding: 60px 0;
    }
    
    .project-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .project-image-section {
        height: 350px;
        order: 1;
    }
    
    .project-text-section {
        order: 2;
    }
    
    .project-idea {
        position: static;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .block-projects {
        padding: 40px 0;
    }
    
    .projects-page-title {
        font-size: 36px;
    }
    
    .projects-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .project-content {
        padding: 20px;
    }
    
    .project-title {
        font-size: 28px;
    }
    
    .project-image-section {
        height: 250px;
    }
    
    .project-actions {
        flex-direction: column;
    }
    
    .project-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .projects-page-title {
        font-size: 28px;
    }
    
    .project-title {
        font-size: 24px;
    }
    
    .project-description {
        font-size: 14px;
    }
    
    .project-start-date {
        font-size: 14px;
    }
}

