/* ============================================
   ZIEL - About Us Page Styles
   Premium Dark Theme Design
   ============================================ */

/* ---------- Page Banner (Hero) ---------- */
.about-hero {
    position: relative;
    padding: 180px 0 100px;
    background: linear-gradient(rgba(15, 29, 53, 0.8), rgba(15, 29, 53, 0.8)), 
                url('../images/img-register-now-bg.png');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: var(--white);
    border-top: 1px solid rgba(255, 255, 255, 0.3); /* Sharper line as in reference */
}

.about-hero .breadcrumb {
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    display: inline-flex;
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: var(--space-xl);
}

.about-hero .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--fs-sm);
}

.about-hero .breadcrumb-item.active {
    color: var(--ziel-yellow);
    font-weight: var(--fw-medium);
}

.about-hero .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

.about-hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: var(--space-lg);
    color: var(--white);
    letter-spacing: -0.5px;
}

.about-hero p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-weight: 300;
}

/* ---------- About Content Section ---------- */
.about-content-section {
    padding: 100px 0;
    background-color: var(--white);
}

.about-img-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-img-wrapper img {
    width: 100%;
    transition: transform 0.5s ease;
}

.about-img-wrapper:hover img {
    transform: scale(1.05);
}

.about-text-content {
    padding-left: 30px;
}

.about-text-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-700);
}

/* ---------- Vision & Mission ---------- */
.vision-mission-section {
    padding-bottom: 100px;
    background-color: var(--white);
}

.vm-card {
    padding: 30px 0;
}

.vm-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.vm-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.vm-card:hover .vm-icon {
    transform: rotate(15deg);
}

.vm-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.vm-card p {
    color: var(--gray-600);
    line-height: 1.7;
}

/* ---------- Career Support ---------- */
.career-support-section {
    padding: 100px 0;
    background-color: #F8FAFC;
}

.career-support-header {
    margin-bottom: 60px;
}

.career-support-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.career-support-header h2 span {
    color: var(--accent);
}

.career-support-header p {
    color: var(--gray-500);
    font-size: var(--fs-md);
}

.support-card {
    text-align: left;
    padding: 40px;
    background: var(--white);
    border-radius: 20px;
    height: 100%;
    border: 1px solid var(--gray-100);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.support-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(15, 29, 53, 0.08);
    border-color: var(--accent-light);
}

.support-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.support-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.support-card:hover .support-icon {
    transform: scale(1.1);
}

.support-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary);
}

.support-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ---------- Team Section ---------- */
.about-team {
    padding: 100px 0;
    background-color: var(--white);
}

.team-card {
    border: none;
    background: transparent;
    text-align: center;
    padding: 20px;
    transition: all 0.3s ease;
}

.team-avatar-wrapper {
    width: 180px;
    height: 180px;
    margin: 0 auto 25px;
    position: relative;
    z-index: 1;
}

.team-avatar-wrapper::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    width: 100%;
    height: 100%;
    background-color: var(--ziel-yellow);
    border-radius: 20px;
    z-index: -1;
    transition: all 0.3s ease;
}

.team-card:hover .team-avatar-wrapper::after {
    transform: translate(-10px, -10px);
}

.team-avatar {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    background-color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-avatar i {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.2);
}

.team-card h5 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.team-role {
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 15px;
}

.team-socials {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.team-socials a {
    color: var(--gray-400);
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.team-socials a:hover {
    color: var(--accent);
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
    .about-hero h1 { font-size: 2.8rem; }
    .about-text-content { padding-left: 0; margin-top: 40px; }
    .team-avatar-wrapper { width: 150px; height: 150px; }
}

@media (max-width: 767px) {
    .about-hero { padding: 120px 0 60px; }
    .about-hero h1 { font-size: 2.2rem; }
    .career-support-header h2 { font-size: 2rem; }
}
