/* File: public/css/company.css */

/* ==========================================
   PAGE BREADCRUMB (서브메뉴만)
   ========================================== */
   .page-breadcrumb-section {
    background: #fafafa;
    padding: 16px 0;
    border-bottom: 1px solid #e5e7eb;
}

.page-breadcrumb-section .container {
    text-align: center;
}

.page-breadcrumb {
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
}

.page-breadcrumb a {
    color: #6b7280;
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.page-breadcrumb a:hover {
    color: var(--primary-color);
}

.page-breadcrumb span {
    color: #d1d5db;
}

.page-breadcrumb .current {
    color: var(--primary-color);
    font-weight: 600;
}

/* ==========================================
   GREETING SECTION (초간소화)
   ========================================== */
.greeting-section {
    padding: 60px 0;
    background: var(--bg-white);
}

.greeting-container {
    max-width: 800px;
    margin: 0 auto;
}

.greeting-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--bg-light);
}

.greeting-title {
    font-family: var(--font-primary);
    font-size: 32px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.greeting-subtitle {
    font-size: 16px;
    color: var(--text-light);
}

/* CEO Info (간소화) */
.ceo-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 12px;
}

.ceo-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
}

.ceo-details {
    text-align: left;
}

.ceo-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.ceo-title {
    font-size: 14px;
    color: var(--text-light);
}

/* Greeting Content (간소화) */
.greeting-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.greeting-text p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-dark);
    margin: 0 0 20px 0;
    text-align: left;
    text-indent: 1.5em;
}

.greeting-text p:first-child {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary-color);
    text-indent: 0;
}

.greeting-closing {
    text-align: right;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--bg-light);
}

.greeting-closing p {
    font-size: 16px;
    margin-bottom: 8px;
}

.greeting-signature {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
}

/* ==========================================
   OVERVIEW SECTION (회사개요 - 트렌디 버전)
   ========================================== */
.overview-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.overview-header {
    text-align: center;
    margin-bottom: 30px;
}

.overview-title {
    font-family: var(--font-primary);
    font-size: 48px;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: -1px;
}

.overview-subtitle {
    font-size: 18px;
    color: var(--text-light);
    font-weight: 400;
}

/* Brand Intro */
.brand-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
    padding: 40px;
    background: var(--bg-light);
    border-radius: 16px;
}

.brand-intro p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-dark);
    margin: 0;
}

/* Values Section */
.values-section {
    margin-bottom: 80px;
}

.section-title {
    text-align: center;
    font-size: 32px;
    color: var(--secondary-color);
    margin-bottom: 50px;
    font-weight: 700;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.value-card {
    text-align: center;
    padding: 40px 20px;
    background: var(--bg-white);
    border-radius: 16px;
    transition: var(--transition);
    border: 2px solid var(--bg-light);
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 12px 30px rgba(245, 158, 11, 0.15);
}

.value-icon {
    font-size: 56px;
    margin-bottom: 20px;
    display: block;
}

.value-card h3 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 12px;
    font-weight: 700;
}

.value-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Business Areas */
.business-areas {
    max-width: 800px;
    margin: 0 auto;
}

.business-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.business-item {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 16px;
    transition: var(--transition);
}

.business-item:hover {
    background: var(--bg-white);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transform: translateX(10px);
}

.business-number {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    min-width: 60px;
    text-align: center;
}

.business-content h4 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 8px;
    font-weight: 700;
}

.business-content p {
    font-size: 15px;
    color: var(--text-light);
    margin: 0;
}

/* ==========================================
   LOCATION SECTION (찾아오시는길)
   ========================================== */
.location-section {
    padding: 60px 0;
    background: var(--bg-white);
}

.location-header {
    text-align: center;
    margin-bottom: 40px;
}

.location-title {
    font-family: var(--font-primary);
    font-size: 32px;
    color: var(--secondary-color);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.location-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 450px;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.location-card {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 12px;
    display: flex;
    gap: 15px;
}

.location-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--text-white);
}

.location-icon svg {
    width: 25px;
    height: 25px;
}

.location-details h4 {
    font-size: 16px;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.location-details p {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
}

.location-transport {
    margin-top: 40px;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 12px;
}

.location-transport h3 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.location-transport-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.location-transport strong {
    color: var(--primary-color);
    font-size: 16px;
}

.location-transport p {
    font-size: 15px;
    line-height: 1.6;
    margin-top: 8px;
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 1024px) {
    .page-breadcrumb-section {
        padding: 12px 0;
    }

    .greeting-section,
    .overview-section,
    .location-section {
        padding: 50px 0;
    }

    .greeting-title,
    .location-title {
        font-size: 28px;
    }

    .overview-title {
        font-size: 40px;
    }

    .greeting-subtitle {
        font-size: 15px;
    }

    .greeting-text p {
        font-size: 15px;
    }

    .greeting-text p:first-child {
        font-size: 17px;
    }

    /* Overview 반응형 */
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .value-card {
        padding: 35px 20px;
    }

    .location-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .location-map {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .page-breadcrumb-section {
        padding: 12px 0;
    }

    .page-breadcrumb {
        font-size: 12px;
        gap: 8px;
    }

    .greeting-section,
    .location-section {
        padding: 40px 0;
    }

    .overview-section {
        padding: 50px 0;
    }

    .greeting-title,
    .location-title {
        font-size: 24px;
    }

    .overview-title {
        font-size: 32px;
    }

    .overview-subtitle {
        font-size: 16px;
    }

    .greeting-subtitle {
        font-size: 14px;
    }

    .greeting-text p {
        font-size: 15px;
        text-indent: 1.5em;
        line-height: 1.8;
    }

    .greeting-text p:first-child {
        font-size: 16px;
        text-indent: 0;
    }

    .greeting-closing p {
        font-size: 15px;
    }

    .greeting-signature {
        font-size: 17px;
    }

    /* Overview 반응형 */
    .brand-intro {
        padding: 30px 20px;
        margin-bottom: 60px;
    }

    .brand-intro p {
        font-size: 15px;
    }

    .section-title {
        font-size: 26px;
        margin-bottom: 35px;
    }

    .values-section {
        margin-bottom: 60px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .value-card {
        padding: 30px 20px;
    }

    .value-icon {
        font-size: 48px;
    }

    .business-item {
        padding: 25px 20px;
    }

    .business-item:hover {
        transform: translateX(5px);
    }

    .business-number {
        font-size: 24px;
        min-width: 50px;
    }

    .business-content h4 {
        font-size: 18px;
    }

    .location-map {
        height: 300px;
    }

    .location-icon {
        width: 45px;
        height: 45px;
    }

    .location-icon svg {
        width: 22px;
        height: 22px;
    }

    .location-transport-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}