/**
 * 랜딩 페이지 전용 스타일
 * index.html에서 사용
 */

body {
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    max-width: 700px;
    padding: 80px 40px;
    text-align: center;
}

.logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 40px;
    cursor: default;
    user-select: none;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

h1 {
    font-size: 48px;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.subtitle {
    font-size: 20px;
    color: var(--color-text-tertiary);
    margin-bottom: 60px;
    line-height: 1.6;
    font-weight: 400;
}

.info-section {
    margin: 60px 0;
}

.info-section h2 {
    font-size: 28px;
    font-weight: 500;
    color: var(--color-text-primary);
    margin-bottom: 20px;
}

.info-section p {
    font-size: 18px;
    color: var(--color-text-tertiary);
    line-height: 1.8;
    margin-bottom: 12px;
}

.divider {
    width: 60px;
    height: 1px;
    background: var(--color-border-medium);
    margin: 50px auto;
}

.contact-section {
    margin-top: 60px;
}

.contact-section h3 {
    font-size: 20px;
    font-weight: 500;
    color: var(--color-text-primary);
    margin-bottom: 15px;
}

.contact-section p {
    font-size: 16px;
    color: var(--color-text-tertiary);
    margin-bottom: 8px;
}

.contact-section a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-fast);
}

.contact-section a:hover {
    color: var(--color-primary-hover);
}

@media (max-width: 768px) {
    .container {
        padding: 60px 30px;
    }

    h1 {
        font-size: 36px;
    }

    .subtitle {
        font-size: 18px;
    }

    .info-section h2 {
        font-size: 24px;
    }

    .info-section p {
        font-size: 16px;
    }
}
