/**
 * ZZAN Local Landing Page Styles
 */

/* Common Container */
.local-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.local-landing {
    overflow: hidden;
    font-family: 'Pretendard', sans-serif;
    color: #1a1a1a;
}

/* Sections Common */
.local-landing section {
    padding: 120px 0;
    position: relative;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    font-family: 'Lexend', sans-serif;
}

/* Hero Section */
.local-hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 !important;
    background: #000;
    color: #fff;
    text-align: left;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.hero-bg .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.7));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-content .badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--point-color);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-content .title {
    font-size: 96px;
    font-weight: 800;
    margin-bottom: 40px;
    line-height: 1.1;
    font-family: 'Lexend', sans-serif;
    letter-spacing: -0.03em;
}

.hero-content .desc {
    font-size: 24px;
    line-height: 1.6;
    opacity: 0.9;
    word-break: keep-all;
    font-weight: 400;
}

.scroll-down {
    position: absolute;
    bottom: 50px;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.scroll-down span {
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-family: 'Lexend', sans-serif;
}

.scroll-down .line {
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,0.3);
    position: relative;
    overflow: hidden;
}

.scroll-down .line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

/* Overview Section */
.local-overview {
    background: #f8f9fa;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.overview-grid .main-text {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    word-break: keep-all;
}

.overview-grid .sub-text {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    word-break: keep-all;
}

.overview-grid .img-wrapper {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.overview-grid img {
    width: 100%;
    transition: transform 0.8s;
}

.overview-grid img:hover {
    transform: scale(1.05);
}

/* Programs Section */
.local-programs {
    background: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-desc {
    font-size: 20px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.program-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.program-item {
    background: #fdfdfd;
    border-radius: 40px;
    padding: 40px;
    border: 1px solid #eee;
    transition: all 0.4s;
}

.program-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border-color: var(--point-color);
}

.program-item .item-inner {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.program-item .img-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 240px;
}

.program-item .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.program-item .num {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 40px;
    font-weight: 800;
    color: #fff;
    font-family: 'Lexend', sans-serif;
    opacity: 0.8;
}

.program-item h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 10px;
    font-family: 'Lexend', sans-serif;
}

.program-item .point {
    color: var(--point-color);
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 15px;
}

.program-item .desc {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 25px;
}

.program-item .features {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 12px;
}

.program-item .features li {
    display: flex;
    flex-direction: column;
    padding-left: 20px;
    position: relative;
}

.program-item .features li::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 0;
    width: 6px;
    height: 6px;
    background: var(--point-color);
    border-radius: 50%;
}

.program-item .features li strong {
    font-size: 15px;
    margin-bottom: 2px;
}

.program-item .features li span,
.program-item .features li {
    font-size: 14px;
    color: #777;
}

/* Why Section */
.local-why {
    background: #111;
    color: #fff;
}

.why-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.why-wrapper .title-side {
    flex: 1;
    color: #fff;
}

.why-wrapper .title-side .section-title {
    color: #fff;
}

.why-wrapper .content-side {
    flex: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.why-wrapper .quote {
    font-size: 24px;
    color: var(--point-color);
    font-weight: 600;
}

.why-card {
    background: rgba(255,255,255,0.05);
    padding: 40px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.1);
}

.why-card .icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.why-card h4 {
    font-size: 24px;
    margin-bottom: 15px;
    font-family: 'Lexend', sans-serif;
}

.why-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #ccc;
}

/* Process Section */
.local-process {
    background: #fff;
    text-align: center;
}

.process-steps {
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    width: 80%;
    height: 1px;
    background: #eee;
    z-index: 1;
}

.process-steps .step {
    position: relative;
    z-index: 2;
}

.process-steps .step-num {
    display: inline-flex;
    width: 80px;
    height: 80px;
    background: #fff;
    border: 2px solid #eee;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #ddd;
    transition: all 0.3s;
    font-family: 'Lexend', sans-serif;
}

.process-steps .step:hover .step-num {
    border-color: var(--point-color);
    color: var(--point-color);
    transform: translateY(-5px);
}

.process-steps h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.process-steps p {
    font-size: 14px;
    color: #777;
    word-break: keep-all;
}

/* CTA Section */
.local-cta {
    padding: 180px 0 !important;
    background: #000;
    text-align: center;
    color: #fff;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-text {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 50px;
    word-break: keep-all;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.local-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 35px 70px !important; /* 세로 패딩 더 확대 */
    border-radius: 100px !important;
    font-size: 24px !important; /* 폰트 크기 확대 */
    font-weight: 800 !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    text-decoration: none !important;
    min-width: 280px !important;
    line-height: 1 !important;
    box-sizing: border-box !important;
}

.local-btn-primary {
    background: var(--point-color) !important;
    color: #fff !important;
    border: none !important;
}

.local-btn-primary:hover {
    background: #fff !important;
    color: var(--point-color) !important;
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 30px rgba(var(--point-color-rgb), 0.4) !important;
}

.local-btn-outline {
    border: 2px solid #fff !important;
    color: #fff !important;
    background: transparent !important;
}

.local-btn-outline:hover {
    background: #fff !important;
    color: #000 !important;
    transform: translateY(-5px) !important;
}

/* Animations */
[data-animate] {
    opacity: 0;
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

[data-animate="fade-up"] { transform: translateY(50px); }
[data-animate="fade-right"] { transform: translateX(-50px); }
[data-animate="fade-left"] { transform: translateX(50px); }

.animated[data-animate] {
    opacity: 1;
    transform: translate(0, 0);
}

/* Responsive */
@media (max-width: 1024px) {
    .section-title { font-size: 38px; }
    .hero-content .title { font-size: 60px; }
    .overview-grid { grid-template-columns: 1fr; gap: 40px; }
    .program-list { grid-template-columns: 1fr; }
    .why-wrapper { flex-direction: column; }
    .process-steps { grid-template-columns: 1fr; gap: 40px; }
    .process-steps::before { display: none; }
}

@media (max-width: 768px) {
    .local-landing section { padding: 60px 0; }
    .section-title { font-size: 32px; margin-bottom: 15px; }
    .section-header { text-align: left; display: flex; flex-direction: column; align-items: flex-start; margin-bottom: 40px; }
    .section-desc { font-size: 16px; margin: 0; max-width: 100%; text-align: left; }

    .hero-content .title { font-size: 42px; margin-bottom: 20px; }
    .hero-content .desc { font-size: 16px; }

    .overview-grid .main-text { font-size: 22px; }
    .overview-grid .sub-text { font-size: 16px; }

    .program-item { padding: 25px; border-radius: 30px; }
    .program-item h3 { font-size: 22px; }
    .program-item .img-box { height: 200px; }
    .program-item .num { font-size: 30px; top: 15px; right: 15px; }
    .program-item .desc { font-size: 15px; }

    .why-card { padding: 30px; }
    .why-card h4 { font-size: 20px; }
    .why-card p { font-size: 15px; }

    .process-steps { gap: 30px; }
    .process-steps .step-num { width: 60px; height: 60px; font-size: 18px; margin-bottom: 15px; }
    .process-steps h4 { font-size: 18px; }

    .cta-text { font-size: 20px; margin-bottom: 30px; }
    .cta-btns { flex-direction: column; padding: 0 20px; }
    .local-btn { padding: 20px 40px !important; font-size: 18px !important; min-width: auto !important; width: 100%; }
}
