/* Project Detail Page Styles - Solo Leveling Dark Theme */

.project-detail-page {
    background: #0a0e1a;
    color: #e5e7eb;
}

/* Project Header - Solo Leveling Dark Theme */
.project-header {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
    background: transparent !important;
}

.project-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, rgba(37, 99, 235, 0.1) 30%, transparent 70%);
    border-radius: 50%;
    animation: float 25s ease-in-out infinite;
    filter: blur(60px);
}

.project-header::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 60%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite reverse;
    filter: blur(50px);
}

.project-header-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.project-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #94a3b8;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.2s forwards;
}

.project-breadcrumb a {
    color: #60a5fa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.project-breadcrumb a:hover {
    color: #3b82f6;
}

.project-breadcrumb span {
    color: #475569;
}

.project-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #60a5fa;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.4s forwards;
    backdrop-filter: blur(10px);
}

.badge-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.project-header-title {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #e5e7eb 0%, #60a5fa 30%, #3b82f6 60%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    animation: fadeInUp 1s ease 0.6s forwards;
    text-shadow: 0 0 40px rgba(59, 130, 246, 0.3);
}

.project-header-subtitle {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    opacity: 0;
    animation: fadeInUp 1s ease 0.8s forwards;
}

.project-header-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease 1s forwards;
}

.project-header-visual {
    flex: 1;
    max-width: 600px;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateX(30px);
    animation: fadeInRight 1s ease 1.2s forwards;
}

.project-header-image-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 50%, #1a1f3a 100%);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    font-size: 1.2rem;
    font-weight: 600;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(59, 130, 246, 0.1);
    position: relative;
    overflow: hidden;
}

.project-header-image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shine 3s infinite;
}

.project-header-video {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(59, 130, 246, 0.1);
}

.feature-video {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    border-radius: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(59, 130, 246, 0.1);
}

/* iOS Safari'de videoların ortasındaki büyük play ikonunu gizle */
.project-header-video::-webkit-media-controls-start-playback-button,
.feature-video::-webkit-media-controls-start-playback-button {
    display: none !important;
}

.feature-image {
    width: 100%;
    height: auto;
    min-height: 400px;
    max-height: 600px;
    object-fit: contain;
    border-radius: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(59, 130, 246, 0.1);
    transition: transform 0.3s ease;
    background-color: rgba(15, 23, 42, 0.5);
}

.feature-image:hover {
    transform: scale(1.02);
}

/* Mobile: Fix image overflow and use contain */
@media (max-width: 968px) {
    .feature-image {
        object-fit: contain;
        max-width: 100%;
        width: 100%;
        height: auto;
        min-height: 300px;
        max-height: 500px;
        background-color: rgba(15, 23, 42, 0.5);
    }
    
    .feature-visual {
        width: 100%;
        overflow: hidden;
        padding: 0;
    }
}

.back-button {
    background: #f5f5f7;
    color: #1d1d1f !important;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.back-button:hover {
    background: #e8e8ed;
    transform: translateX(-3px);
}

/* Responsive for Project Header */
@media (max-width: 968px) {
    .project-header {
        flex-direction: column;
        text-align: center;
        padding: 6rem 2rem 4rem;
    }

    .project-header-content {
        max-width: 100%;
        margin-bottom: 3rem;
    }

    .project-header-visual {
        max-width: 100%;
    }

    .project-breadcrumb {
        justify-content: center;
    }
}

