/* Prodüksiyon (Production) Sayfası CSS - Yeni Modern Tasarım */

/* Sayfa Başlığı */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/production-header.jpg');
    background-size: cover;
    background-position: center;
    color: var(--light-text);
    padding: 150px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
    z-index: 2;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    animation: fadeInUp 1s ease-out;
    position: relative;
    z-index: 3;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.2s;
    animation-fill-mode: both;
    position: relative;
    z-index: 3;
    max-width: 700px;
    margin: 0 auto;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

/* Giriş Bölümü */
.prod-intro {
    padding: 100px 0;
    background-color: var(--bg-light);
    position: relative;
    z-index: 10;
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 50px;
}

.intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--secondary-color);
    position: relative;
    padding-bottom: 15px;
}

.intro-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

.intro-text p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #546e7a;
}

.intro-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    transform: perspective(1000px) rotateY(-5deg);
}

.intro-image img:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
    box-shadow: var(--shadow-lg);
}

/* Özellikler Listesi */
.prod-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.feature {
    display: flex;
    align-items: center;
    padding: 18px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border-left: 3px solid transparent;
    border-image: var(--primary-gradient);
    border-image-slice: 1;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--primary-gradient);
    z-index: -1;
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-5px) translateX(5px);
    box-shadow: var(--shadow);
}

.feature:hover::before {
    width: 100%;
    opacity: 0.05;
}

.feature i {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.3rem;
    margin-right: 15px;
    transition: var(--transition);
}

.feature:hover i {
    transform: scale(1.2);
}

.feature span {
    font-weight: 500;
    color: var(--secondary-color);
    transition: var(--transition);
}

/* Prodüksiyon Çalışmalarımız */
.production-works {
    padding: 100px 0;
    background-color: #f9f2e8;
    position: relative;
    overflow: hidden;
}

.production-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/pattern-bg.png');
    opacity: 0.05;
    z-index: 1;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--secondary-color);
    position: relative;
    padding-bottom: 15px;
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    margin: 40px 0;
    flex-wrap: wrap;
    gap: 15px;
    position: relative;
    z-index: 2;
}

.filter-btn {
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 600;
    color: #546e7a;
    background-color: var(--bg-light);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-gradient);
    color: var(--light-text);
    box-shadow: 0 8px 20px rgba(99, 0, 2, 0.3);
    transform: translateY(-3px);
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    min-height: 400px;
    position: relative;
    z-index: 2;
}

.work-card {
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.work-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.work-card-thumbnail {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    cursor: pointer;
}

.thumbnail-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.work-card:hover .thumbnail-img {
    transform: scale(1.05);
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: var(--transition);
}

.work-card:hover .play-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 1;
}

.play-button {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.7));
    transition: transform 0.3s ease;
}

.work-card:hover .play-button {
    transform: scale(1.2);
}

.work-card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.work-card-content h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 12px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.work-card-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.work-card:hover .work-card-content h3::after {
    width: 70px;
}

.work-card-content p {
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #546e7a;
    flex-grow: 1;
}

.work-category {
    display: inline-block;
    padding: 6px 12px;
    font-size: 0.85rem;
    color: var(--primary-color);
    background-color: rgba(99, 0, 2, 0.05);
    border-radius: 50px;
    margin-top: auto;
    font-weight: 500;
    transition: var(--transition);
}

.work-card:hover .work-category {
    background-color: rgba(99, 0, 2, 0.1);
    transform: scale(1.05);
}

/* CTA Bölümü */
.cta {
    background: linear-gradient(rgba(99, 0, 2, 0.9), rgba(99, 0, 2, 0.9)), url('../images/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: var(--light-text);
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
}

.cta h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 700;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.cta .btn {
    position: relative;
    z-index: 2;
    min-width: 200px;
    border: 2px solid var(--light-text);
    background: transparent;
    color: var(--light-text);
    font-weight: 600;
}

.cta .btn:hover {
    background: var(--light-text);
    color: var(--primary-color);
    transform: translateY(-5px);
}

/* Video Modal Popup */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    margin: auto;
    animation: modalOpen 0.4s ease-out;
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--primary-light);
}

.modal-video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.modal-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@keyframes modalOpen {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Ayarlar */
@media screen and (max-width: 1200px) {
    .prod-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 992px) {
    .page-header h1 {
        font-size: 3rem;
    }
    
    .intro-text h2 {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .works-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .cta h2 {
        font-size: 2.4rem;
    }
}

@media screen and (max-width: 768px) {
    .page-header {
        padding: 120px 0 60px;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .intro-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .intro-text {
        order: 2;
    }
    
    .intro-image {
        order: 1;
    }
    
    .prod-features {
        grid-template-columns: 1fr;
    }
    
    .works-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .cta {
        padding: 80px 0;
    }
    
    .cta h2 {
        font-size: 2.2rem;
    }
    
    .cta p {
        font-size: 1.1rem;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
    }
    
    .modal-content {
        width: 95%;
    }
    
    .work-card-content {
        padding: 20px;
    }
    
    .work-card-content h3 {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 576px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1.1rem;
    }
    
    .intro-text h2 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .works-grid {
        grid-template-columns: 1fr;
    }
    
    .work-card-content {
        padding: 15px;
    }
    
    .work-card-content h3 {
        font-size: 1.1rem;
    }
    
    .play-button {
        width: 50px;
        height: 50px;
    }
    
    .cta h2 {
        font-size: 1.8rem;
    }
    
    .cta p {
        font-size: 1rem;
    }
} 