/* ======================================== 메인 페이지 전용 스타일 - 모션캡쳐/버튜버 테마 ======================================== */ /* Hero 섹션 */ .hero-section { height: 100vh; display: flex; align-items: center; position: relative; background: var(--gradient-warm); overflow: hidden; padding: var(--spacing-3xl) 0; } .hero-bg { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(circle at 20% 50%, rgba(255, 136, 0, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(255, 153, 51, 0.1) 0%, transparent 50%); z-index: 0; } /* 유튜브 배경 영상 스타일 */ .video-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; overflow: hidden; z-index: -1; } .video-bg iframe { position: absolute; top: 50%; left: 50%; width: 100%; height: 100%; transform: translate(-50%, -50%); pointer-events: none; } /* PC: 가로 기준으로 맞춤 (좌우 꽉 채우기) */ @media (min-width: 768px) { .video-bg iframe { width: 100%; height: 56.25vw; /* 16:9 비율 */ min-height: 100%; } } /* 모바일: 세로 기준으로 맞춤 (상하 꽉 채우기) */ @media (max-width: 767px) { .hero-bg { height: 120vh; } .video-bg { height: 120vh; } .video-bg iframe { width: 213.33vh; /* 120vh * 16/9 */ height: 120vh; min-width: 100%; } } /* 영상 위에 오버레이 */ .hero-bg::after { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.6); z-index: 1; } .hero-content { display: grid; grid-template-columns: 1fr 1fr; gap: var(--spacing-3xl); align-items: center; position: relative; z-index: 2; } .hero-title { font-size: 2.7rem; font-weight: 800; line-height: 1.2; color: white; margin-bottom: var(--spacing-xs); text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 4px 4px 8px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 0, 0, 0.3); } .hero-subtitle { font-size: 2.2rem; font-weight: 700; text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 4px 4px 8px rgba(0, 0, 0, 0.4), 0 0 15px rgba(0, 0, 0, 0.3); } .gradient-text { background: var(--gradient-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; text-shadow: none; } .hero-description { margin: var(--spacing-lg) 0 var(--spacing-xl); color: white; font-size: 1.15rem; line-height: 1.6; font-weight: 500; text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7), 2px 2px 6px rgba(0, 0, 0, 0.4); } .hero-buttons { display: flex; gap: var(--spacing-md); flex-wrap: wrap; margin-bottom: var(--spacing-2xl); } .btn-outline { background: transparent; border: 2px solid var(--primary-color); color: var(--primary-color); } .btn-outline:hover { background: var(--primary-color); color: var(--text-white); transform: translateY(-3px); } /* Hero 스펙 표시 */ .hero-specs { display: flex; gap: var(--spacing-xl); margin-top: var(--spacing-2xl); padding-top: var(--spacing-xl); border-top: 1px solid rgba(0, 0, 0, 0.1); } .spec-item { display: flex; align-items: center; gap: var(--spacing-sm); } .spec-icon { font-size: 1.2rem; } .spec-text { font-size: 0.95rem; color: white; font-weight: 600; text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6); } /* Hero 이미지 */ .hero-image { display: flex; justify-content: center; align-items: center; } .logo-wrapper { position: relative; } .hero-logo { max-width: 390px; width: 100%; height: auto; filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1)); animation: float 6s ease-in-out infinite; } .logo-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 120%; height: 120%; background: radial-gradient(circle, rgba(255, 136, 0, 0.2) 0%, transparent 70%); filter: blur(40px); animation: pulse 3s ease-in-out infinite; } @keyframes float { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-20px); } } @keyframes pulse { 0%, 100% { opacity: 0.5; } 50% { opacity: 0.8; } } /* Features 섹션 */ .features-section { padding: var(--spacing-3xl) 0; background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #fff7ed 100%); } .features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--spacing-xl); margin-top: var(--spacing-2xl); max-width: 1200px; margin-left: auto; margin-right: auto; } .feature-card { text-align: center; padding: var(--spacing-2xl); background: rgba(255, 255, 255, 0.8); backdrop-filter: blur(10px); border-radius: var(--border-radius); box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); border: 1px solid rgba(255, 255, 255, 0.2); transition: var(--transition); position: relative; overflow: hidden; min-height: 200px; display: flex; flex-direction: column; justify-content: center; } .feature-card::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%); opacity: 0; transition: opacity 0.3s; } .feature-card:hover::before { opacity: 0.05; } .feature-card:hover { transform: translateY(-10px); box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12); } .feature-icon-wrapper { width: 80px; height: 80px; margin: 0 auto var(--spacing-lg); background: var(--gradient-warm); border-radius: 50%; display: flex; align-items: center; justify-content: center; } .feature-icon { font-size: 2.5rem; } .feature-card h3 { font-size: var(--font-xl); margin-bottom: var(--spacing-md); color: var(--text-primary); } .feature-card p { color: var(--text-secondary); line-height: 1.6; } /* Services Preview */ .services-preview { padding: var(--spacing-3xl) 0; } .bg-gradient { background: linear-gradient(135deg, #f8fafc 0%, #fff7ed 100%); } .services-carousel { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: var(--spacing-xl); margin-top: var(--spacing-2xl); max-width: 1000px; margin-left: auto; margin-right: auto; } .service-item { background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(10px); padding: var(--spacing-xl); border-radius: var(--border-radius); box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); border: 1px solid rgba(255, 255, 255, 0.3); transition: var(--transition); text-align: center; cursor: pointer; min-height: 160px; display: flex; flex-direction: column; justify-content: center; } .service-item.active { background: linear-gradient(135deg, var(--primary-color), var(--primary-hover)); color: var(--text-white); transform: scale(1.05); } .service-item:hover:not(.active) { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12); } .service-icon { font-size: 2.5rem; margin-bottom: var(--spacing-md); } .service-item h3 { font-size: var(--font-lg); margin-bottom: var(--spacing-sm); } .service-item.active h3, .service-item.active p { color: var(--text-white); } /* Studio Preview */ .studio-preview { padding: var(--spacing-3xl) 0; background: linear-gradient(135deg, #fff7ed 0%, #ffffff 50%, #f8fafc 100%); } .preview-grid { display: grid; grid-template-columns: 2fr 1fr; gap: var(--spacing-lg); margin-top: var(--spacing-2xl); } .preview-main, .preview-item { position: relative; overflow: hidden; border-radius: var(--border-radius); cursor: pointer; } .preview-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; } .preview-main { height: 400px; } .preview-side { display: flex; flex-direction: column; gap: var(--spacing-lg); } .preview-item { height: calc((400px - var(--spacing-lg)) / 2); } .preview-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent); color: var(--text-white); padding: var(--spacing-xl); transform: translateY(100%); transition: transform 0.3s; } .preview-main:hover .preview-overlay, .preview-item:hover .preview-overlay { transform: translateY(0); } .preview-main:hover .preview-img, .preview-item:hover .preview-img { transform: scale(1.1); } .preview-overlay h3 { margin-bottom: var(--spacing-sm); } /* Portfolio Preview */ .portfolio-preview { padding: var(--spacing-3xl) 0; } .portfolio-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: var(--spacing-xl); margin-top: var(--spacing-2xl); } .portfolio-item { text-align: center; } .portfolio-video { position: relative; padding-bottom: 56.25%; /* 16:9 비율 */ height: 0; overflow: hidden; border-radius: var(--border-radius); box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); } .portfolio-video iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; } .portfolio-item h3 { margin-top: var(--spacing-md); font-size: var(--font-xl); color: var(--text-primary); } /* 고객 후기 섹션 */ .testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: var(--spacing-xl); margin-top: var(--spacing-2xl); } .testimonial-card { background: var(--bg-white); padding: var(--spacing-2xl); border-radius: var(--border-radius); box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); transition: var(--transition); position: relative; overflow: hidden; } .testimonial-card::before { content: '"'; position: absolute; top: var(--spacing-md); left: var(--spacing-md); font-size: 4rem; color: rgba(255, 136, 0, 0.1); font-family: Georgia, serif; line-height: 1; } .testimonial-card:hover { transform: translateY(-5px); box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12); } .testimonial-content { position: relative; z-index: 1; } .testimonial-stars { font-size: 1.2rem; margin-bottom: var(--spacing-md); } .testimonial-card p { font-size: var(--font-base); line-height: 1.7; color: var(--text-secondary); margin-bottom: var(--spacing-lg); font-style: italic; } .testimonial-author { display: flex; align-items: center; gap: var(--spacing-md); padding-top: var(--spacing-lg); border-top: 1px solid rgba(0, 0, 0, 0.1); } .author-info strong { display: block; color: var(--text-primary); font-size: var(--font-base); margin-bottom: var(--spacing-xs); } .author-info span { color: var(--text-secondary); font-size: var(--font-sm); } /* CTA 섹션 */ .cta-section { padding: var(--spacing-3xl) 0; position: relative; overflow: hidden; } .cta-bg { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: var(--gradient-warm); z-index: 0; } .cta-section .container { position: relative; z-index: 1; } .cta-title { font-size: var(--font-4xl); color: var(--text-primary); margin-bottom: var(--spacing-md); } .cta-description { font-size: var(--font-xl); color: var(--text-secondary); margin-bottom: var(--spacing-2xl); } .cta-buttons { display: flex; gap: var(--spacing-md); justify-content: center; flex-wrap: wrap; margin-bottom: var(--spacing-2xl); } .btn-lg { padding: var(--spacing-lg) var(--spacing-2xl); font-size: var(--font-lg); } .cta-section .btn-outline { border-color: var(--primary-color); color: var(--primary-color); } .cta-section .btn-outline:hover { background: var(--primary-color); color: var(--text-white); } .contact-info-quick { display: flex; gap: var(--spacing-2xl); justify-content: center; flex-wrap: wrap; color: var(--text-secondary); font-size: var(--font-sm); } /* ======================================== 기업 파트너 섹션 ======================================== */ .partners-section { background: var(--bg-white); padding: var(--spacing-3xl) 0; } .partners-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: var(--spacing-xl); max-width: 1000px; margin: 0 auto; padding: var(--spacing-xl) 0; } .partner-logo-item { display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; } .partner-logo-item:hover { transform: translateY(-5px); } .partner-placeholder { width: 180px; height: 120px; background: var(--bg-light); border: 2px dashed var(--border-color); border-radius: var(--border-radius); display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; position: relative; overflow: hidden; } .partner-placeholder:hover { border-color: var(--primary-color); background: rgba(255, 136, 0, 0.05); } .partner-placeholder-text { font-size: var(--font-sm); color: var(--text-secondary); font-weight: 500; text-align: center; } .partner-logo-item img { width: 180px; height: 120px; object-fit: contain; object-position: center; filter: grayscale(100%); transition: all 0.3s ease; background: var(--bg-light); border-radius: var(--border-radius); padding: var(--spacing-md); border: 1px solid rgba(0, 0, 0, 0.05); } .partner-logo-item:hover img { filter: grayscale(0%); transform: scale(1.02); background: white; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); } /* 단일 파트너 특별 스타일 */ .partners-grid.single-partner { display: flex; justify-content: center; align-items: center; max-width: 500px; } .partner-logo-item.featured-partner { background: transparent; border-radius: var(--border-radius-lg); padding: var(--spacing-lg); text-align: center; transition: all 0.4s ease; width: 100%; max-width: 300px; } .partner-logo-item.featured-partner:hover { transform: translateY(-5px); } .featured-partner .partner-logo { width: 240px; height: 140px; object-fit: contain; object-position: center; filter: grayscale(30%); background: var(--bg-white); border-radius: var(--border-radius-lg); padding: var(--spacing-lg); border: 1px solid rgba(0, 0, 0, 0.08); box-shadow: var(--shadow-md); display: block; transition: all 0.3s ease; } .featured-partner:hover .partner-logo { filter: grayscale(0%); transform: scale(1.05); box-shadow: var(--shadow-lg); } /* ======================================== 비디오 콘텐츠 섹션 ======================================== */ .video-content-section { background: var(--bg-light); padding: var(--spacing-3xl) 0; } .video-tabs { display: flex; justify-content: center; gap: var(--spacing-xs); margin-bottom: var(--spacing-2xl); border-bottom: 1px solid var(--border-color); padding-bottom: var(--spacing-md); } .video-tab-btn { background: none; border: none; padding: var(--spacing-md) var(--spacing-xl); font-size: var(--font-base); font-weight: 600; color: var(--text-secondary); cursor: pointer; border-radius: var(--border-radius) var(--border-radius) 0 0; transition: all 0.3s ease; position: relative; } .video-tab-btn:hover { color: var(--primary-color); background: rgba(255, 136, 0, 0.05); } .video-tab-btn.active { color: var(--primary-color); background: var(--bg-white); border: 1px solid var(--border-color); border-bottom: 1px solid var(--bg-white); margin-bottom: -1px; } .video-tab-btn.active::after { content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 2px; background: var(--primary-color); } .video-tab-content { display: none; animation: fadeIn 0.5s ease; } .video-tab-content.active { display: block; } /* 라이브 비디오 그리드 */ .live-videos-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: var(--spacing-xl); margin-bottom: var(--spacing-xl); } .live-video-item { background: var(--bg-white); border-radius: var(--border-radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: all 0.3s ease; } .live-video-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); } .video-placeholder { width: 100%; height: 200px; background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%); display: flex; align-items: center; justify-content: center; position: relative; border-bottom: 1px solid var(--border-color); } .video-placeholder.vertical { height: 300px; aspect-ratio: 9/16; } .video-wrapper { width: 100%; height: 200px; position: relative; border-bottom: 1px solid var(--border-color); overflow: hidden; } .video-wrapper.vertical { height: 300px; aspect-ratio: 9/16; } .video-wrapper iframe { width: 100%; height: 100%; border: none; } .video-placeholder-text { font-size: var(--font-base); color: var(--text-secondary); font-weight: 500; } .live-indicator { position: absolute; top: var(--spacing-sm); right: var(--spacing-sm); background: #ef4444; color: white; padding: var(--spacing-xs) var(--spacing-sm); border-radius: var(--border-radius); font-size: var(--font-xs); font-weight: 600; animation: pulse 2s infinite; } @keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.7; } } .live-video-item h3 { font-size: var(--font-lg); font-weight: 600; color: var(--text-primary); margin: var(--spacing-md); margin-bottom: var(--spacing-xs); } .live-video-item p { font-size: var(--font-sm); color: var(--text-secondary); margin: 0 var(--spacing-md) var(--spacing-md); } /* 숏폼 비디오 그리드 */ .shorts-videos-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: var(--spacing-lg); max-width: 800px; margin: 0 auto var(--spacing-xl); } .shorts-video-item { background: var(--bg-white); border-radius: var(--border-radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: all 0.3s ease; } .shorts-video-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); } .shorts-video-item h4 { font-size: var(--font-sm); font-weight: 600; color: var(--text-primary); margin: var(--spacing-sm); text-align: center; } /* 유틸리티 클래스 */ .text-center { text-align: center; } .mt-4 { margin-top: var(--spacing-xl); } .bg-light { background-color: var(--bg-light); } /* 반응형 디자인 */ @media (max-width: 1024px) { .hero-content { grid-template-columns: 1fr; text-align: center; } .hero-image { order: -1; margin-bottom: var(--spacing-2xl); } .hero-specs { justify-content: center; } .preview-grid { grid-template-columns: 1fr; } .preview-main { height: 300px; } .preview-side { flex-direction: row; } .preview-item { height: 200px; flex: 1; } } @media (max-width: 768px) { .hero-section { min-height: 120vh; padding: var(--spacing-2xl) var(--spacing-md); } .hero-content { gap: var(--spacing-lg); } .hero-title { font-size: 2rem; } .hero-subtitle { font-size: 1.6rem; } .hero-description { font-size: 1rem; line-height: 1.7; } .hero-buttons { justify-content: center; flex-wrap: wrap; gap: var(--spacing-md); } .hero-specs { flex-direction: column; align-items: center; gap: var(--spacing-md); } .hero-logo { max-width: 240px; } .hero-image { margin-bottom: var(--spacing-lg); } .services-carousel { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: var(--spacing-lg); } .service-item { min-height: 140px; } .portfolio-grid { grid-template-columns: 1fr; } .partners-grid { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: var(--spacing-lg); } .live-videos-grid { grid-template-columns: 1fr; } .shorts-videos-grid { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); } .video-tabs { flex-direction: column; align-items: center; } .cta-title { font-size: var(--font-3xl); } .cta-description { font-size: var(--font-base); } } @media (max-width: 480px) { .hero-title { font-size: 1.8rem; } .hero-subtitle { font-size: 1.5rem; } .hero-logo { max-width: 300px; } .features-grid { grid-template-columns: 1fr; gap: var(--spacing-lg); } .feature-card { min-height: 180px; } .preview-side { flex-direction: column; } .partners-grid { grid-template-columns: repeat(2, 1fr); gap: var(--spacing-md); } .partner-placeholder { width: 140px; height: 100px; } /* 단일 파트너 모바일 스타일 */ .partners-grid.single-partner { max-width: 90%; } .partner-logo-item.featured-partner { padding: var(--spacing-xl); max-width: none; } .featured-partner .partner-logo { width: 180px; height: 110px; } .shorts-videos-grid { grid-template-columns: repeat(2, 1fr); } .video-tab-btn { padding: var(--spacing-sm) var(--spacing-lg); font-size: var(--font-sm); } .contact-info-quick { flex-direction: column; gap: var(--spacing-sm); } }