/* Video Maker Page Specific Styles */

/* 비디오메이커 전용 SVG 파이프라인 그래프 */
.video-pipeline-container {
    padding: 1.5rem;
    display: flex;
    justify-content: center;
    background: linear-gradient(135deg,
        rgba(248, 113, 113, 0.05) 0%,
        rgba(239, 68, 68, 0.02) 100%);
    border-radius: 16px;
    border: 1px solid rgba(248, 113, 113, 0.15);
}

.video-pipeline-svg {
    max-width: 900px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 20px rgba(248, 113, 113, 0.15));
}

/* 모바일 대응 */
@media screen and (max-width: 768px) {
    .video-pipeline-svg {
        max-width: 100%;
    }

    .video-pipeline-container {
        padding: 1rem;
        overflow-x: auto;
    }
}

/* Intro cards grid layout */
.intro-cards-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.intro-cards-description {
    text-align: center;
    margin-bottom: 2rem;
}

.intro-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.intro-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.intro-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.intro-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.intro-card-text {
    font-size: 0.9rem;
    color: var(--text-color-light);
    opacity: 0.8;
}

/* Responsive - Tablet */
@media screen and (max-width: 768px) {
    .intro-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .intro-cards-grid > *:nth-child(3) {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }
}

/* Responsive - Mobile */
@media screen and (max-width: 576px) {
    .intro-cards-grid {
        grid-template-columns: 1fr;
    }

    .intro-cards-grid > *:nth-child(3) {
        grid-column: span 1;
        max-width: 100%;
    }

    .intro-card {
        padding: 1.25rem;
    }
}

/* Video themed intro cards */
.intro-card.video-card-highlight {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(248, 113, 113, 0.1) 100%);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.intro-card.video-card-highlight:hover {
    border-color: rgba(239, 68, 68, 0.5);
    box-shadow: 0 8px 32px rgba(239, 68, 68, 0.2);
}

.video-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 0.75rem;
    color: #f87171;
}

.video-icon svg {
    stroke: #f87171;
    filter: drop-shadow(0 0 6px rgba(248, 113, 113, 0.4));
}

/* Light mode overrides */
[data-theme="light"] .intro-card.video-card-highlight {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.08) 0%, rgba(248, 113, 113, 0.05) 100%);
    border-color: rgba(239, 68, 68, 0.2);
}

[data-theme="light"] .intro-card.video-card-highlight:hover {
    border-color: rgba(239, 68, 68, 0.4);
    box-shadow: 0 8px 32px rgba(239, 68, 68, 0.15);
}

[data-theme="light"] .video-icon svg {
    stroke: #dc2626;
}

/* Feature items with video theme */
.feature__item--video {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.08) 0%, rgba(248, 113, 113, 0.05) 100%);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.feature__item--video:hover {
    border-color: rgba(239, 68, 68, 0.4);
    box-shadow: 0 12px 40px rgba(239, 68, 68, 0.2);
    transform: translateY(-4px);
}

.feature__item--video .feature__icon {
    color: #f87171;
}

.feature__item--video .feature__icon svg {
    stroke: #f87171;
    filter: drop-shadow(0 0 8px rgba(248, 113, 113, 0.4));
}

.feature__item--video .feature__title {
    color: #f87171;
}

/* Light mode feature overrides */
[data-theme="light"] .feature__item--video {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.05) 0%, rgba(248, 113, 113, 0.03) 100%);
    border-color: rgba(239, 68, 68, 0.15);
}

[data-theme="light"] .feature__item--video:hover {
    border-color: rgba(239, 68, 68, 0.3);
    box-shadow: 0 12px 40px rgba(239, 68, 68, 0.12);
}

[data-theme="light"] .feature__item--video .feature__title {
    color: #dc2626;
}

[data-theme="light"] .feature__item--video .feature__icon svg {
    stroke: #dc2626;
}

/* Hero gradient for video theme */
.home__title-gradient {
    background: linear-gradient(135deg, #f87171 0%, #fca5a5 50%, #f87171 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientFlow 3s ease infinite;
}

@keyframes gradientFlow {
    0% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
    100% {
        background-position: 0% center;
    }
}
