/* 
   Ergänzende Styles für die verbesserte Businessplan-Website 
   Noventus Care GmbH
*/

/* Organigramm Styles */
.org-chart {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 30px 0;
    width: 100%;
}

.org-level {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    margin-bottom: 30px;
}

.org-box {
    background-color: #129a7e;
    color: white;
    border-radius: 8px;
    padding: 15px;
    margin: 0 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    min-width: 180px;
    position: relative;
}

.org-box.ceo {
    background-color: #005145;
}

.org-box.coo {
    background-color: #006d5b;
}

.org-box h4 {
    margin: 0 0 5px 0;
    font-size: 16px;
}

.org-box p {
    margin: 0;
    font-size: 14px;
}

.org-connector {
    width: 2px;
    height: 30px;
    background-color: #129a7e;
    margin: 0 auto -30px;
}

.org-level-connector {
    display: flex;
    justify-content: center;
    width: 100%;
    position: relative;
    height: 2px;
    background-color: #129a7e;
    margin-bottom: 30px;
}

.org-vertical-connector {
    width: 2px;
    height: 30px;
    background-color: #129a7e;
    position: absolute;
    top: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .org-level {
        flex-direction: column;
        align-items: center;
    }
    
    .org-box {
        margin: 10px 0;
        width: 80%;
    }
    
    .org-level-connector {
        display: none;
    }
}

/* Leadership team styles enhancement */
.leadership-team {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
}

.leader-card {
    background-color: #f5f5f5;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: center;
    transition: transform 0.3s ease;
}

.leader-card:hover {
    transform: translateY(-5px);
}

.leader-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
    border: 3px solid #129a7e;
}

.leader-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-card h4 {
    color: #005145;
    margin: 0 0 5px;
    font-size: 20px;
}

.leader-card .position {
    color: #129a7e;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Logo styles */
.logo {
    display: flex;
    align-items: center;
}

.main-logo {
    height: 60px;
    width: auto;
}

.footer-logo-img {
    height: 50px;
    width: auto;
}

/* Contact section enhancement */
.contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: 30px 0;
}

.contact-item {
    background-color: #f5f5f5;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 250px;
    text-align: center;
    margin: 10px;
}

.contact-item h3 {
    color: #005145;
    margin-top: 0;
}
