﻿/* ========== Siemens Font ========== */
@font-face {
    font-family: 'SiemensSansPro';
    src: url('/fonts/SiemensSansPro_W_Rm.woff2') format('woff2');
    font-weight: 400;
}

@font-face {
    font-family: 'SiemensSansPro';
    src: url('/fonts/SiemensSansPro_W_SBd.woff2') format('woff2');
    font-weight: 600;
}

@font-face {
    font-family: 'SiemensSansPro';
    src: url('/fonts/SiemensSansPro_W_Bd.woff2') format('woff2');
    font-weight: 700;
}

/* Base */
body {
    margin: 0;
    background: #000028;
}

.wonw-modern {
    font-family: 'SiemensSansPro', sans-serif;
    --primary: #00C1B5;
    --text-light: #A5B4D6;
    color: #ffffff; /* ✅ 🔥 전체 기본 글씨 색 */
}


/* ===== Container 공통 ===== */
.container {
    max-width: 1300px; /* ✅ 1400 → 1200 */
    margin: 0 auto;
    padding: 0 32px; /* ✅ 40 → 32 */
}


/* ===== HEADER ===== */
.header {
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* 1단 */
.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 34px 28px 40px;
}

/* 로고 */


/* ===== LOGO WRAPPER ===== */
.xd-header-logo-text {
    display: flex;
    align-items: center;
    gap: 16px;
}



/* ===== Siemens Logo (핵심🔥) ===== */
.xd-header-logo {
    display: block;
    width: 126px;
    height: 20px;
    background-image: url('https://images.sw.cdn.siemens.com/logo/logo-white.svg');
    background-repeat: no-repeat;
    background-size: contain;
    text-indent: -9999px; /* 접근성 유지 */
}


/* util */
.header-util {
    display: flex;
    gap: 18px;
    font-size: 15px;
    color: #ffffff;
}

    .header-util a {
        color: #ffffff;
        text-decoration: none;
    }

        .header-util a:hover {
            color: white;
        }

/* 2단 */
.header-bottom {
    padding: 10px 34px 18px 40px;
}

/* menu */
.header-menu {
    display: flex;
    gap: 34px;
}

    .header-menu a {
        font-size: 16px;
        font-weight: 500;
        color: #ffffff;
        text-decoration: none;
    }

        .header-menu a:hover {
            color: white;
        }

/* ===== HERO ===== */

.hero-main {
    position: relative; /* ✅ 기준 (중요) */

    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 120px auto 120px auto;
}

/* left */

.hero-left {
    position: relative;
    z-index: 1; /* ✅ 항상 위에 */
    max-width: 600px;
}


.tag {
    font-size: 12px;
    color: var(--text-light);
    letter-spacing: 1.5px;
    margin-bottom: 14px;
}

h1 {
    font-size: 56px;
    line-height: 1.1;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
}

    h1 span {
        color: #4DA3FF;
    }

.hero-copy {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
}


.hero-right {
    position: absolute; /* ✅ flex에서 분리 */
    right: -100px; /* ✅ 오른쪽으로 밀기 */
    top: 50%;
    transform: translateY(-50%);
    z-index: 0; /* ✅ 뒤로 보냄 */
    pointer-events: none;
}

    .hero-right img {
        width: 90%;
        opacity: 0.9; /* ✅ 자연스럽게 (선택) */
        margin-left: 10%;
    }

/* ===== BUTTON ===== */
.btn {
    all: unset;
    padding: 16px 0;
    width: 180px;
    text-align: center;
    cursor: pointer;
    border-radius: 6px;
}

.btn-primary {
    background: linear-gradient(135deg, #00C1B5, #4DA3FF);
    color: #000028;
}

    .btn-primary:hover {
        box-shadow: 0 0 18px rgba(77,163,255,0.6);
    }



/* ===== BUTTON SECONDARY ===== */

.btn-secondary {
    background: linear-gradient(135deg, #000028, #009999);
    color: #ffffff; /* ✅ primary는 dark text, 이건 white */
    border: 1px solid rgba(255,255,255,0.2); /* ✅ 살짝 구분 */
}

    .btn-secondary:hover {
        box-shadow: 0 0 14px rgba(0,153,153,0.4);
    }


.hero-actions {
    display: flex;
    gap: 16px;
}

/* ===== FOOTER ===== */
.footer {
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 80px;
    padding: 24px 0;
    position: relative;
    z-index: 10; /* ✅ 이거 추가 */
}

/* 내부 정렬 */
.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* 왼쪽 */
.footer-left {
    font-size: 13px;
    color: #A5B4D6;
}

/* 오른쪽 */
.footer-right a {
    font-size: 13px;
    color: #A5B4D6;
    text-decoration: none;
}

    .footer-right a:hover {
        color: white;
    }

/* ===== CONTACT PAGE ===== */

.contact-container {
    margin: 60px auto 60px auto;
}

/* 헤더 영역 */
.contact-header {
    margin-bottom: 50px;
}

    .contact-header h1 {
        font-size: 48px;
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 16px;
    }

/* 설명 */
.contact-desc {
    font-size: 16px;
    color: #A5B4D6;
}

/* 카드 전체 */
.contact-card {
    background: rgba(255,255,255,0.04); /* ✅ 더 밝게 */
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 36px;
    max-width: 600px;
}

    /* 카드 제목 */
    .contact-card h3 {
        font-size: 20px;
        color: #ffffff;
        margin-bottom: 26px;
    }

/* 항목 */
.contact-item {
    margin-bottom: 22px;
}

    /* 라벨 (Office / Phone 등) */
    .contact-item .label {
        display: block;
        font-size: 12px;
        color: #7F8DB3; /* ✅ 너무 어둡지 않게 */
        margin-bottom: 6px;
        letter-spacing: 1px;
    }

    /* 본문 텍스트 */
    .contact-item p {
        margin: 0;
        color: #ffffff; /* ✅ 확실히 밝게 */
        line-height: 1.6;
    }

    /* 링크 */
    .contact-item a {
        color: #4DA3FF;
        text-decoration: none;
    }

        .contact-item a:hover {
            text-decoration: underline;
        }

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: white;
}

.section-desc {
    color: #A5B4D6;
    font-size: 16px;
}

.label {
    font-size: 12px;
    color: #7F8DB3;
    margin-bottom: 6px;
}

.text-white {
    color: white;
}

.text-danger {
    color: #FF5A5F; /* ✅ 부드러운 빨강 (Siemens UI에 어울림) */

}

/* ===== LOGIN ===== */

.login-top {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 30px;
}

/* 좌측 */
.login-id-area {
    display: flex;
    align-items: center;
    gap: 20px;
}

.login-id-icon {
    width: 80px;
    height: 80px;
}

.login-id-btn {
    height: 80px;
    padding: 0 30px;
    font-size: 18px;
}

/* 상태 텍스트 */
.login-status {
    display: block;
    font-size: 13px;
    color: #4DA3FF;
    margin-top: 8px;
}

/* 우측 안내 */
.login-info p {
    margin: 0;
    font-size: 16px;
    color: #ffffff;
}

/* ===== LOGIN FORM (Siemens 스타일) ===== */

.login-form-wrapper {
    max-width: 600px;
    margin-top: 40px;
}

/* 설명 */
.login-desc h4 {
    margin: 6px 0;
    color: #4DA3FF;
    font-weight: 400;
}

/* 입력 */
.login-field {
    margin-top: 18px;
}

    .login-field label {
        display: block;
        font-size: 13px;
        color: #A5B4D6;
        margin-bottom: 6px;
    }

.input {
    width: 100%;
    padding: 10px;
    border-radius: 4px;
    border: none;
    background: #ffffff;
    color: #000;
}

.inputSmall {
    width: 80%;
    padding: 10px;
    border-radius: 4px;
    border: none;
    background: #ffffff;
    color: #000;
}

/* 버튼 */
.login-action {
    margin-top: 20px;
}

/* 링크 */
.links {
    margin-top: 20px;
    display: flex;
    gap: 20px;
}

    .links a {
        color: #4DA3FF;
        text-decoration: none;
    }

        .links a:hover {
            text-decoration: underline;
        }



/* ===== WHITE PAGE ===== */

.page-white {
    background: #ffffff;
    color: #000000;
    padding: 40px;
}

    /* 안에 텍스트도 강제로 검정 */
    .page-white * {
        color: #000000;
    }

.email-cell {
    word-break: break-all; /* ✅ 핵심 */
}
/* ===== SIMPLE NOTICE ===== */


.notice-box-simple {
    position: absolute; /* ✅ 핵심 */
    top: 100px; /* ✅ navbar 아래 위치 */
    left: 50%;
    transform: translateX(-50%);
    background: #fff8e1;
    border: 1px solid #ffd54f;
    padding: 15px 20px;
    width: 500px;
    color: #000;
    border-radius: 6px;
    z-index: 999; /* ✅ 다른 요소 위로 */
}
