@charset "UTF-8";

/* ===================================
   Organization Section
=================================== */
.organization {
    padding: 100px 20px;
    background: #fff;
}

.organization__container {
    max-width: 1000px;
    margin: 0 auto;
}

.org-chart {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ===================================
   Org Card Styles
=================================== */
.org-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 40px;
    border-radius: 50px;
    background: #fff;
    border: 3px solid #ccc;
    transition: all 0.3s ease;
}

.org-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.org-card__title {
    font-size: 16px;
    font-weight: 700;
    color: #333;
}

.org-card__name {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

/* CEO Card */
.org-card--ceo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    padding: 30px;
    border: 4px solid #1e3a5f;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    box-shadow: 0 0 0 8px rgba(30, 58, 95, 0.1);
}

.org-card--ceo .org-card__title {
    font-size: 18px;
    color: #1e3a5f;
}

.org-card--ceo .org-card__name {
    font-size: 15px;
    color: #0066cc;
    font-weight: 500;
}

/* Vice Card */
.org-card--vice {
    padding: 18px 50px;
    border-color: #4da6ff;
    background: #fff;
}

.org-card--vice .org-card__title {
    color: #1e3a5f;
}

/* Dept Cards */
.org-card--dept,
.org-card--sub {
    padding: 15px 35px;
    min-width: 160px;
}

.org-card--blue {
    border-color: #1e3a5f;
    background: linear-gradient(135deg, #fff 0%, #e8f4ff 100%);
}

.org-card--blue .org-card__title {
    color: #1e3a5f;
}

.org-card--purple {
    border-color: #7b68ee;
    background: linear-gradient(135deg, #fff 0%, #f0edff 100%);
}

.org-card--purple .org-card__title {
    color: #5a4fcf;
}

.org-card--pink {
    border-color: #9370db;
    background: linear-gradient(135deg, #fff 0%, #f5f0ff 100%);
}

.org-card--pink .org-card__title {
    color: #7b5fbf;
}

/* ===================================
   Org Lines
=================================== */
.org-line--vertical {
    width: 2px;
    height: 40px;
    background: #ccc;
}

.org-line--vertical-sm {
    width: 2px;
    height: 25px;
    background: #ddd;
    margin: 0 auto;
}

.org-line--horizontal {
    width: 60%;
    height: 2px;
    background: #ccc;
    position: relative;
}

/* ===================================
   Org Levels
=================================== */
.org-level {
    display: flex;
    justify-content: center;
}

.org-level--dept {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    width: 100%;
}

.org-branch {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ===================================
   Responsive
=================================== */
@media (max-width: 900px) {
    .org-level--dept {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .org-line--horizontal {
        display: none;
    }
    
    .org-branch {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 600px) {
    .organization {
        padding: 60px 20px;
    }
    
    .org-card--ceo {
        width: 130px;
        height: 130px;
    }
    
    .org-card--ceo .org-card__title {
        font-size: 16px;
    }
    
    .org-card--dept,
    .org-card--sub {
        padding: 12px 25px;
        min-width: 140px;
    }
    
    .org-card__title {
        font-size: 14px;
    }
}