/* Tanıtım Videomuz - Frontend Styles */

.tv-section-wrapper {
    width: 100%;
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.tv-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.tv-background-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.tv-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

.tv-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 80px 20px;
}

.tv-content-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tv-content-left {
    animation: fadeInLeft 1s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.tv-main-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin: 0 0 30px 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.tv-description {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.tv-icon {
    flex-shrink: 0;
    color: #ffffff;
    margin-top: 5px;
}

.tv-description-text {
    font-size: 18px;
    line-height: 1.8;
    color: #ffffff;
    text-shadow: 0 1px 5px rgba(0,0,0,0.3);
}

.tv-content-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: fadeInRight 1s ease-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.tv-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.tv-button-video {
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    border: 2px solid transparent;
}

.tv-button-video:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.tv-button-contact {
    background: #2e7d32;
    color: #ffffff;
    border: 2px solid transparent;
}

.tv-button-contact:hover {
    background: #1b5e20;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.4);
}

.tv-play-icon,
.tv-arrow-icon {
    display: inline-flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.tv-button:hover .tv-play-icon,
.tv-button:hover .tv-arrow-icon {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .tv-content-container {
        gap: 40px;
    }
    
    .tv-main-title {
        font-size: 40px;
    }
    
    .tv-description-text {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .tv-section-wrapper {
        min-height: 500px;
    }
    
    .tv-content-wrapper {
        padding: 60px 15px;
    }
    
    .tv-content-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .tv-main-title {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .tv-description-text {
        font-size: 15px;
    }
    
    .tv-button {
        padding: 14px 28px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .tv-section-wrapper {
        min-height: 400px;
    }
    
    .tv-content-wrapper {
        padding: 40px 10px;
    }
    
    .tv-main-title {
        font-size: 26px;
    }
    
    .tv-description {
        flex-direction: column;
        gap: 10px;
    }
    
    .tv-icon {
        margin-top: 0;
    }
    
    .tv-button {
        padding: 12px 24px;
        font-size: 14px;
    }
}

