/* ===================================
   신디클래스 홈페이지 CSS
   =================================== */

:root {
    --primary-purple: #6B2C91;
    --secondary-purple: #8B3CB3;
    --light-purple: #9B5CC8;
    --gold: #C8964D;
    --dark-gold: #B8863D;
    --text-dark: #2C2C2C;
    --text-gray: #666666;
    --text-light: #999999;
    --bg-light: #F8F5FC;
    --white: #FFFFFF;
    --shadow: rgba(107, 44, 145, 0.15);
    --shadow-hover: rgba(107, 44, 145, 0.25);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================================
   Navigation (재사용)
   =================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 2px 20px var(--shadow);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 60px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-purple);
}

.nav-storytelling {
    color: #DC143C !important;
    font-weight: 700 !important;
}

.nav-storytelling:hover {
    color: #FF6347 !important;
}

.btn-nav {
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    color: var(--white) !important;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-purple);
    cursor: pointer;
    padding: 10px;
    min-width: 44px;
    min-height: 44px;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover,
.mobile-menu-btn:active {
    color: var(--secondary-purple);
    transform: scale(1.1);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: var(--white);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    padding: 80px 30px 30px;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--primary-purple);
    cursor: pointer;
    padding: 10px;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 18px;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    min-height: 44px;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.mobile-menu a:hover,
.mobile-menu a:active {
    color: var(--primary-purple);
}

.btn-mobile {
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    color: var(--white) !important;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    margin-top: 20px;
    border: none !important;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ===================================
   Hero Home Section
   =================================== */

.hero-home {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    margin-top: 90px;
    overflow: hidden;
}

.hero-home::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.hero-home::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 900px;
    height: 900px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 60px 20px;
}

.subtitle {
    display: block;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 10px;
    opacity: 0.95;
    color: var(--gold);
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-tagline {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--gold);
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 50px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-hero.primary {
    background: var(--gold);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(200, 150, 77, 0.4);
}

.btn-hero.primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(200, 150, 77, 0.6);
}

.btn-hero.secondary {
    background: var(--white);
    color: var(--primary-purple);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.btn-hero.secondary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.5);
}

.btn-hero.storytelling {
    background: linear-gradient(135deg, #F4D03F, #F39C12);
    color: #2C3E50;
    box-shadow: 0 10px 30px rgba(244, 208, 63, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-hero.storytelling::before {
    content: 'NEW!';
    position: absolute;
    top: -5px;
    right: -5px;
    background: #9B59B6;
    color: var(--white);
    padding: 3px 10px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 700;
}

.btn-hero.storytelling:hover {
    background: linear-gradient(135deg, #9B59B6, #7D3C98);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(155, 89, 182, 0.6);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: var(--white);
    font-size: 24px;
    animation: scrollBounce 2s infinite;
    cursor: pointer;
}

@keyframes scrollBounce {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 10px); }
}

/* ===================================
   Sections Common
   =================================== */

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-purple);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
}

/* ===================================
   About Home Section
   =================================== */

.about-home {
    padding: 100px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
    align-items: center;
}

.about-card {
    text-align: center;
    background: var(--bg-light);
    padding: 40px;
    border-radius: 20px;
}

.about-image img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--white);
    box-shadow: 0 10px 30px var(--shadow);
    margin-bottom: 20px;
}

.about-card h3 {
    font-size: 1.5rem;
    color: var(--primary-purple);
    margin-bottom: 10px;
    font-weight: 800;
}

.role {
    color: var(--text-gray);
    font-size: 1rem;
}

.about-content h3 {
    font-size: 1.8rem;
    color: var(--primary-purple);
    margin-bottom: 20px;
    font-weight: 800;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--text-gray);
}

.about-features {
    list-style: none;
    margin-bottom: 30px;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: var(--text-dark);
}

.about-features i {
    color: var(--primary-purple);
    font-size: 20px;
}

.btn-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    color: var(--white);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-more:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--shadow-hover);
}

/* About Images */
.about-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.image-item {
    text-align: center;
}

.image-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow);
    margin-bottom: 15px;
}

.image-caption {
    font-size: 1rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* ===================================
   Programs Section
   =================================== */

.programs-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.program-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px var(--shadow-hover);
}

.program-card.featured {
    border: 3px solid var(--gold);
}

.card-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--gold);
    color: var(--white);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(200, 150, 77, 0.4);
}

.card-badge.new {
    background: linear-gradient(135deg, #F4D03F, #F39C12);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Storytelling Card Styles */
.storytelling-card {
    background: linear-gradient(135deg, #FFF9E6 0%, #FCF3CF 100%);
    border: 3px solid #F4D03F;
}

.storytelling-card:hover {
    border-color: #9B59B6;
    box-shadow: 0 15px 50px rgba(155, 89, 182, 0.3);
}

.storytelling-icon {
    background: linear-gradient(135deg, #9B59B6, #F4D03F) !important;
}

.storytelling-card h3 {
    background: linear-gradient(135deg, #9B59B6, #F4D03F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.storytelling-btn {
    background: linear-gradient(135deg, #F4D03F, #F39C12) !important;
    color: #2C3E50 !important;
}

.storytelling-btn:hover {
    background: linear-gradient(135deg, #9B59B6, #7D3C98) !important;
    color: var(--white) !important;
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 36px;
    color: var(--white);
}

.program-card h3 {
    font-size: 1.5rem;
    color: var(--primary-purple);
    margin-bottom: 15px;
    font-weight: 800;
    line-height: 1.3;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.card-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.card-features {
    list-style: none;
    margin-bottom: 25px;
}

.card-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--text-gray);
}

.card-features i {
    color: var(--primary-purple);
    font-size: 14px;
}

.btn-card {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    color: var(--white);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.btn-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px var(--shadow-hover);
}

/* ===================================
   Services Section
   =================================== */

.services-section {
    padding: 100px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    background: var(--bg-light);
    padding: 35px;
    border-radius: 15px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow);
}

.service-card.featured {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: var(--white);
    border: 3px solid #9f7aea;
}

.service-card.featured h3,
.service-card.featured p {
    color: var(--white);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--white);
}

.service-icon.purple {
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
}

.service-icon.green {
    background: linear-gradient(135deg, #4CAF50, #388E3C);
}

.service-icon.red {
    background: linear-gradient(135deg, #FF0000, #CC0000);
}

.service-icon.orange {
    background: linear-gradient(135deg, #FF9800, #F57C00);
}

.service-icon.gold {
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
}

.service-icon.ai {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.service-icon.kakao {
    background: linear-gradient(135deg, #FEE500, #FAC800);
    color: #3C1E1E;
}

.ai-badge {
    position: absolute;
    top: -10px;
    right: 15px;
    background: #9f7aea;
    color: var(--white);
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(159, 122, 234, 0.4);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.service-arrow {
    margin-top: auto;
    color: var(--primary-purple);
    font-size: 20px;
    transition: transform 0.3s ease;
}

.service-card:hover .service-arrow {
    transform: translateX(5px);
}

.service-card.featured .service-arrow {
    color: var(--white);
}

/* ===================================
   Live Section
   =================================== */

.live-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #FF0000, #CC0000);
}

.live-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    color: var(--white);
}

.live-icon {
    font-size: 60px;
    color: var(--white);
}

.live-icon .blink {
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0.3; }
}

.live-text {
    flex: 1;
}

.live-text h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 800;
}

.live-text p {
    font-size: 1.1rem;
    opacity: 0.95;
}

.btn-live {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: var(--white);
    color: #FF0000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-live:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
}

/* ==========================================
   Storytelling Section (영어 그림동화)
   ========================================== */
.storytelling-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
}

.storytelling-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
    align-items: start;
}

.storytelling-text {
    animation: fadeInUp 1s ease;
}

.storytelling-text h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 800;
}

.lead-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 40px;
}

.lead-text strong {
    color: var(--primary);
    font-weight: 700;
}

.storytelling-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.feature-content h4 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 8px;
    font-weight: 700;
}

.feature-content p {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.6;
    margin: 0;
}

.storytelling-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-storytelling {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #FEE500, #FAC800);
    color: #3C1E1E;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(254, 229, 0, 0.3);
}

.btn-storytelling:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(254, 229, 0, 0.4);
}

.btn-storytelling-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: transparent;
    color: var(--primary);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid var(--primary);
    transition: all 0.3s ease;
}

.btn-storytelling-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(107, 44, 145, 0.3);
}

.storytelling-images {
    display: flex;
    flex-direction: column;
    gap: 30px;
    animation: fadeInRight 1s ease;
}

.image-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.image-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.image-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.3s ease;
}

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

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--white);
    padding: 20px;
    font-size: 1.1rem;
    font-weight: 600;
}

.storytelling-impact {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
    padding-top: 60px;
    border-top: 2px solid var(--border);
}

.impact-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.impact-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.impact-label {
    font-size: 1rem;
    color: var(--text);
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-hero {
        width: 100%;
        max-width: 400px;
        justify-content: center;
    }
    
    .storytelling-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .storytelling-impact {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .storytelling-text h3 {
        font-size: 1.6rem;
    }
    
    .lead-text {
        font-size: 1rem;
    }
    
    .storytelling-cta {
        flex-direction: column;
    }
    
    .btn-storytelling,
    .btn-storytelling-outline {
        width: 100%;
        justify-content: center;
    }
    
    .storytelling-impact {
        grid-template-columns: 1fr;
    }
    
    .impact-number {
        font-size: 2.5rem;
    }
}

/* ==========================================
   CTA Section
   ========================================== */
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.5);
}

/* ===================================
   CTA Home Section
   =================================== */

.cta-home {
    padding: 100px 0;
    background: var(--bg-light);
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    color: var(--primary-purple);
    margin-bottom: 20px;
    font-weight: 900;
}

.cta-content p {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 50px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-cta.primary {
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    color: var(--white);
    box-shadow: 0 10px 30px var(--shadow);
}

.btn-cta.primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-hover);
}

.btn-cta.secondary {
    background: var(--white);
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
}

.btn-cta.secondary:hover {
    background: var(--primary-purple);
    color: var(--white);
    transform: translateY(-5px);
}

.btn-cta.kakao {
    background: #FEE500;
    color: #3C1E1E;
    border: 2px solid #FAC800;
}

.btn-cta.kakao:hover {
    background: #FAC800;
    transform: translateY(-5px);
}

.contact-info-quick {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.quick-contact {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    background: var(--white);
    border-radius: 50px;
    box-shadow: 0 5px 20px var(--shadow);
    font-size: 1.1rem;
    color: var(--text-dark);
}

.quick-contact i {
    color: var(--primary-purple);
    font-size: 20px;
}

.quick-contact strong {
    color: var(--primary-purple);
    font-size: 1.2rem;
}

/* ===================================
   Footer
   =================================== */

.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 15px;
}

.footer-tagline {
    color: var(--gold);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.footer-tagline-en {
    color: var(--gold);
    font-size: 0.95rem;
    font-style: italic;
    opacity: 0.9;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--gold);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a,
.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

/* ===================================
   Scroll to Top
   =================================== */

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 10px 30px var(--shadow-hover);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
}

/* ===================================
   Responsive Design
   =================================== */

@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-images {
        grid-template-columns: 1fr;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .live-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    /* 네비게이션 */
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
    }
    
    .logo img {
        max-height: 35px;
    }
    
    /* 히어로 섹션 */
    .hero-home {
        min-height: 80vh;
        padding: 80px 0 60px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    .hero-title .subtitle {
        font-size: 1rem;
    }
    
    .hero-tagline {
        font-size: 1.2rem;
        margin: 20px 0;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .btn-hero {
        width: 100%;
        padding: 16px 25px;
        font-size: 1rem;
    }
    
    /* 섹션 공통 */
    .section-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    /* About 섹션 */
    .about-home {
        padding: 60px 0;
    }
    
    .about-card h3 {
        font-size: 1.3rem;
    }
    
    .about-content h3 {
        font-size: 1.4rem;
    }
    
    .about-content p {
        font-size: 0.95rem;
    }
    
    .about-features li {
        font-size: 0.95rem;
    }
    
    /* 프로그램 섹션 */
    .programs-section {
        padding: 60px 0;
    }
    
    .program-card {
        padding: 30px 20px;
    }
    
    .program-card h3 {
        font-size: 1.2rem;
        line-height: 1.4;
        min-height: auto;
    }
    
    .card-description {
        font-size: 0.95rem;
    }
    
    /* 스토리텔링 섹션 */
    .storytelling-section {
        padding: 60px 0;
    }
    
    .storytelling-text h3 {
        font-size: 1.5rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        margin-bottom: 15px;
    }
    
    .feature-content h4 {
        font-size: 1.1rem;
    }
    
    /* 서비스 섹션 */
    .services-section {
        padding: 60px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    /* 라이브 섹션 */
    .live-section {
        padding: 50px 0;
    }
    
    .live-content {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    
    .live-icon {
        font-size: 50px;
    }
    
    .live-text h2 {
        font-size: 1.5rem;
    }
    
    .live-text p {
        font-size: 1rem;
    }
    
    /* CTA 섹션 */
    .cta-home {
        padding: 60px 0;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .btn-cta {
        width: 100%;
        padding: 16px 25px;
    }
    
    /* Footer */
    .footer {
        padding: 50px 0 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-col h4 {
        font-size: 1.1rem;
    }
    
    .footer-logo {
        max-height: 50px;
    }
}

/* 모바일 Small (480px 이하) */
@media (max-width: 480px) {
    /* Container 패딩 조정 */
    .container {
        padding: 0 20px;
    }
    
    /* 히어로 섹션 */
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-title .subtitle {
        font-size: 0.9rem;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .btn-hero {
        padding: 14px 20px;
        font-size: 0.95rem;
    }
    
    /* 섹션 타이틀 */
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    /* About 이미지 그리드 */
    .about-images {
        gap: 20px;
    }
    
    /* 프로그램 카드 */
    .card-badge {
        font-size: 0.75rem;
        padding: 5px 12px;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    .program-card h3 {
        font-size: 1.1rem;
        line-height: 1.4;
    }
    
    /* Impact 카드 */
    .storytelling-impact {
        gap: 15px;
    }
    
    .impact-card {
        padding: 20px 15px;
    }
    
    .impact-number {
        font-size: 2rem;
    }
    
    .impact-label {
        font-size: 0.9rem;
    }
    
    /* 서비스 카드 */
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    /* 라이브 섹션 */
    .live-icon {
        font-size: 40px;
    }
    
    .live-text h2 {
        font-size: 1.3rem;
    }
    
    .live-text p {
        font-size: 0.95rem;
    }
    
    .btn-live {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
    
    /* CTA 섹션 */
    .cta-content h2 {
        font-size: 1.5rem;
    }
    
    .cta-content p {
        font-size: 0.95rem;
    }
    
    .btn-cta {
        padding: 14px 20px;
        font-size: 0.95rem;
    }
    
    .quick-contact {
        font-size: 0.9rem;
    }
    
    /* Footer */
    .footer-tagline {
        font-size: 0.95rem;
    }
    
    .footer-tagline-en {
        font-size: 0.85rem;
    }
    
    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* 초소형 모바일 (360px 이하) */
@media (max-width: 360px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-tagline {
        font-size: 1rem;
    }
    
    .btn-hero {
        padding: 12px 18px;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .program-card,
    .service-card {
        padding: 20px 15px;
    }
    
    .impact-number {
        font-size: 1.8rem;
    }
    
    .live-text h2 {
        font-size: 1.2rem;
    }
    
    .cta-content h2 {
        font-size: 1.4rem;
    }
}
