/* ================================
   시설 소개 & 평생교육사 페이지 스타일
   ================================ */

/* Page Hero Section */
.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 120px 0 80px;
    color: white;
    margin-top: 80px;
}

.hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 14px;
    opacity: 0.9;
}

.hero-breadcrumb a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.hero-breadcrumb a:hover {
    opacity: 0.7;
    text-decoration: underline;
}

.hero-breadcrumb i {
    font-size: 12px;
}

.page-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-description {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.95;
    max-width: 800px;
}

/* Facility Section */
.facility-section {
    padding: 80px 0;
    background: #f8f9fa;
}

/* Info Cards */
.info-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.main-info {
    border-left: 5px solid #667eea;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
}

.card-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.card-body {
    line-height: 1.8;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.info-label {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 18px;
    font-weight: 500;
    color: #1a1a1a;
}

.notice-text {
    color: #ff6b35;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.notice-text i {
    font-size: 14px;
}

/* Badge */
.badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.badge-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

/* Contact Info */
.contact-info {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    margin-top: 30px;
}

.contact-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info h3 i {
    color: #667eea;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-item i {
    font-size: 20px;
    color: #667eea;
    margin-top: 5px;
}

.contact-item strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    margin-bottom: 5px;
}

.contact-item p {
    font-size: 16px;
    color: #1a1a1a;
    margin: 0;
}

.contact-item a {
    color: #667eea;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Legal List */
.legal-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.legal-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 15px;
    transition: background 0.3s;
}

.legal-list li:hover {
    background: #e9ecef;
}

.legal-list i {
    font-size: 20px;
    color: #28a745;
    margin-top: 3px;
    flex-shrink: 0;
}

.legal-list strong {
    display: block;
    font-size: 18px;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.legal-list p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Facilities Grid */
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.facility-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.facility-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 36px;
    margin: 0 auto 20px;
}

.facility-item h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.facility-item > p {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
}

.facility-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.facility-item ul li {
    font-size: 14px;
    color: #1a1a1a;
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
}

.facility-item ul li:last-child {
    border-bottom: none;
}

.facility-item ul li::before {
    content: '✓';
    color: #667eea;
    font-weight: bold;
    margin-right: 10px;
}

/* Equipment Grid */
.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.equipment-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    transition: background 0.3s;
}

.equipment-item:hover {
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.equipment-item i {
    font-size: 40px;
    color: #667eea;
    margin-bottom: 15px;
}

.equipment-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.equipment-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Related Links */
.related-links {
    margin-top: 60px;
    padding: 40px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.related-links h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
    text-align: center;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.link-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 20px 25px;
    background: #f8f9fa;
    border-radius: 10px;
    text-decoration: none;
    color: #1a1a1a;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.link-card:hover {
    background: white;
    border-color: #667eea;
    transform: translateX(5px);
}

.link-card i:first-child {
    font-size: 24px;
    color: #667eea;
}

.link-card span {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
}

.link-card i:last-child {
    font-size: 18px;
    color: #999;
    transition: color 0.3s;
}

.link-card:hover i:last-child {
    color: #667eea;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-hero {
        padding: 100px 0 60px;
    }

    .page-title {
        font-size: 32px;
    }

    .page-description {
        font-size: 16px;
    }

    .facility-section {
        padding: 60px 0;
    }

    .info-card {
        padding: 25px;
        margin-bottom: 25px;
    }

    .card-title {
        font-size: 24px;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .facilities-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .equipment-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .links-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 28px;
    }

    .info-card {
        padding: 20px;
    }

    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .card-title {
        font-size: 20px;
    }
}

/* ================================
   평생교육사 페이지 추가 스타일
   ================================ */

/* Educator Profile */
.educator-profile {
    border-left: 5px solid #667eea;
}

.educator-photo-container {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.educator-photo {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #667eea;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    margin: 0 auto;
    display: block;
}

.educator-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.educator-badge i {
    font-size: 20px;
}

.educator-basic-info {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 2px solid #f0f0f0;
}

.educator-name {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.educator-title {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.educator-credentials {
    max-width: 800px;
    margin: 0 auto;
}

.educator-credentials .info-item.highlight {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-left: 4px solid #667eea;
}

/* Educator Sections */
.educator-section {
    margin-bottom: 50px;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-title i {
    color: #667eea;
    font-size: 26px;
}

/* Timeline List (학력) */
.timeline-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    padding-left: 40px;
}

.timeline-list::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: linear-gradient(to bottom, #667eea, #764ba2);
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.timeline-marker {
    position: absolute;
    left: -34px;
    top: 5px;
    width: 14px;
    height: 14px;
    background: white;
    border: 3px solid #667eea;
    border-radius: 50%;
    z-index: 1;
}

.timeline-content {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    border-left: 3px solid #667eea;
}

.timeline-content strong {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.timeline-content p {
    color: #666;
    margin: 0;
    font-size: 15px;
}

/* Career List */
.career-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.career-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

.career-item:hover {
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-left-color: #667eea;
}

.career-item i {
    font-size: 24px;
    color: #667eea;
}

.career-item.current {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-left-color: #667eea;
}

.career-item.current i {
    color: #764ba2;
}

/* Expertise Grid */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.expertise-item {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
}

.expertise-item:hover {
    border-color: #667eea;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
    transform: translateY(-5px);
}

.expertise-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 32px;
}

.expertise-item h5 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.expertise-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Certification Grid */
.certification-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.cert-badge {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border: 2px solid #667eea;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s;
}

.cert-badge:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: scale(1.05);
}

.cert-badge:hover i,
.cert-badge:hover small {
    color: white;
}

.cert-badge i {
    font-size: 36px;
    color: #667eea;
    margin-bottom: 15px;
    display: block;
}

.cert-badge span {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.cert-badge small {
    display: block;
    font-size: 13px;
    color: #666;
}

/* Philosophy Section */
.philosophy {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    padding: 40px;
    border-radius: 12px;
}

.philosophy-quote {
    background: white;
    border-left: 5px solid #667eea;
    padding: 30px;
    margin: 0 0 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.philosophy-quote p {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    font-style: italic;
    margin-bottom: 20px;
}

.philosophy-quote cite {
    display: block;
    text-align: right;
    font-size: 16px;
    color: #667eea;
    font-weight: 600;
    font-style: normal;
}

.philosophy-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.point-item {
    background: white;
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.point-item i {
    color: #48bb78;
    font-size: 20px;
}

.point-item span {
    font-size: 15px;
    color: #333;
}

/* Legal Notice */
.legal-notice {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    border-left: 5px solid #667eea;
}

.notice-text {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 25px;
}

.legal-references {
    background: white;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.legal-references h5 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.legal-references ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.legal-references li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #555;
}

.legal-references li:last-child {
    border-bottom: none;
}

.legal-references li i {
    color: #667eea;
    font-size: 18px;
}

/* Contact Section */
.contact-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.contact-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s;
}

.contact-card:hover {
    border-color: #667eea;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
    transform: translateY(-5px);
}

.contact-card i {
    font-size: 48px;
    color: #667eea;
    margin-bottom: 20px;
}

.contact-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.contact-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.btn-contact {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 14px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .educator-photo {
        width: 200px;
        height: 200px;
    }

    .educator-name {
        font-size: 28px;
    }

    .educator-title {
        font-size: 16px;
    }

    .section-title {
        font-size: 20px;
    }

    .expertise-grid,
    .career-list,
    .certification-grid,
    .philosophy-points,
    .contact-section {
        grid-template-columns: 1fr;
    }

    .timeline-list {
        padding-left: 30px;
    }

    .timeline-marker {
        left: -24px;
    }
}

