/* about.css */

/* HERO */
.about-hero {
    height: 70vh;
    min-height: 550px;
    position: relative;
    display: flex;
    align-items: center;
    background: #000;
    overflow: hidden;
    margin-top: 0;
}
.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    animation: subtleZoom 20s ease-in-out infinite alternate;
}
@keyframes subtleZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}
.about-hero:hover .hero-bg {
    transform: scale(1.08);
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.7) 40%, rgba(0,0,0,0.3) 100%);
    z-index: 2;
    transition: background 0.5s ease;
}
.about-hero:hover .hero-overlay {
    background: linear-gradient(to right, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.6) 40%, rgba(0,0,0,0.25) 100%);
}
.hero-content { 
    position: relative; 
    z-index: 3; 
    color: #fff; 
    max-width: 800px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.8), 0 0 40px rgba(0,0,0,0.5);
}
.editorial-tag { 
    color: #ffcc33; 
    text-transform: uppercase; 
    letter-spacing: 4px; 
    font-weight: 700; 
    font-size: 0.8rem;
    display: inline-block;
    animation: fadeInDown 1s ease-out;
}
.about-hero h1 { 
    font-size: 5rem; 
    font-weight: 800; 
    margin: 20px 0; 
    line-height: 1;
    animation: fadeInDown 1s ease-out 0.2s both;
}
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.accent-text { 
    color: #ffcc33;
    text-shadow: 0 0 20px rgba(255, 204, 51, 0.5);
}
.lead-para { 
    font-size: 1.4rem; 
    color: #ddd; 
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.4s both;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* HERO BUTTONS */
.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn-primary {
    background: #ffcc33;
    color: #000;
    padding: 16px 40px;
    border-radius: 40px !important;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    display: inline-block;
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(255, 204, 51, 0.5), 0 0 30px rgba(255, 204, 51, 0.2);
    position: relative;
    overflow: hidden;
    letter-spacing: 1px;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    background: #fff;
    color: #000;
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 204, 51, 0.7), 0 0 40px rgba(255, 204, 51, 0.4);
}

.btn-primary:active {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 204, 51, 0.4);
}

.btn-secondary {
    background: rgba(255, 204, 51, 0.1);
    color: #ffcc33;
    padding: 16px 40px;
    border-radius: 40px !important;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    display: inline-block;
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #ffcc33;
    position: relative;
    overflow: hidden;
    letter-spacing: 1px;
    box-shadow: 0 4px 20px rgba(255, 204, 51, 0.2), 0 0 30px rgba(255, 204, 51, 0.1);
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 204, 51, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-secondary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-secondary:hover {
    background: rgba(255, 204, 51, 0.2);
    color: #ffcc33;
    border-color: #ffcc33;
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 204, 51, 0.5), 0 0 50px rgba(255, 204, 51, 0.3);
}

.btn-secondary:active {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 204, 51, 0.2);
}

.btn-secondary i {
    margin-right: 8px;
    transition: transform 0.3s ease;
}

.btn-secondary:hover i {
    transform: scale(1.2);
}

/* PROFILE SECTION */
.profile-section { 
    padding: 120px 0; 
    background: #0a0a0a; 
    color: #fff;
    position: relative;
}
.profile-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 204, 51, 0.3), transparent);
}
.profile-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 100px; 
    align-items: center; 
}
.profile-text h2 { 
    font-size: 3.5rem; 
    margin-bottom: 30px;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.profile-text p { 
    color: #aaa; 
    line-height: 1.8; 
    font-size: 1.1rem; 
    margin-bottom: 25px;
    transition: color 0.3s ease;
}
.profile-text p:hover {
    color: #ccc;
}
.profile-text strong { 
    color: #ffcc33;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 204, 51, 0.3);
}

.profile-image-frame { 
    position: relative;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.profile-image-frame:hover {
    transform: translateY(-8px);
}

/* PORTRAIT CROP - 3:4 Ratio */
.portrait { 
    width: 100%; 
    height: auto;
    aspect-ratio: 3 / 4; 
    object-fit: cover;
    object-position: center 10%; 
    border-radius: 8px; 
    border-left: 12px solid #ffcc33;
    filter: contrast(1.1) brightness(1.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
                0 0 0 0 rgba(255, 204, 51, 0);
    position: relative;
}
.portrait::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 8px;
    padding: 3px;
    background: linear-gradient(135deg, #ffcc33, #ffd966, #ffcc33);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}
.profile-image-frame:hover .portrait {
    filter: contrast(1.15) brightness(1.1);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6),
                0 0 40px rgba(255, 204, 51, 0.4);
    transform: scale(1.02);
    border-left-color: #ffd966;
}
.profile-image-frame:hover .portrait::before {
    opacity: 1;
}

.experience-card {
    position: absolute; 
    bottom: -30px; 
    left: -30px;
    background: linear-gradient(135deg, #ffcc33, #ffd966);
    color: #000; 
    padding: 30px;
    display: flex; 
    align-items: center; 
    gap: 15px; 
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4),
                0 0 0 0 rgba(255, 204, 51, 0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    cursor: pointer;
}
.experience-card:hover {
    opacity: 0.9;
}
.profile-image-frame:hover .experience-card {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5),
                0 0 30px rgba(255, 204, 51, 0.6);
}
.profile-image-frame:hover .experience-card:hover {
    opacity: 0.9;
}
.card-num { 
    font-size: 3.5rem; 
    font-weight: 800; 
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.card-text { 
    font-size: 0.85rem; 
    font-weight: 700; 
    text-transform: uppercase; 
    line-height: 1.2;
    letter-spacing: 1px;
}

/* GLOBAL NARRATIVES */
.global-narratives { 
    padding: 150px 0; 
    background-color: #050505; 
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff; 
    text-align: center;
    position: relative;
}
.global-narratives::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 204, 51, 0.3), transparent);
    z-index: 1;
}
.global-header { 
    max-width: 800px; 
    margin: 0 auto 60px; 
    position: relative; 
    z-index: 2;
}
.global-header h2 { 
    font-size: 3.5rem; 
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.8);
}
.global-header p { 
    color: #ddd; 
    font-size: 1.2rem; 
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.location-grid { 
    display: flex; 
    justify-content: center; 
    align-content: center;
    gap: 15px; 
    flex-wrap: wrap; 
    position: relative; 
    z-index: 2;
}
.loc-item span {
    display: inline-block; 
    padding: 12px 28px; 
    border: 2px solid rgba(255, 204, 51, 0.3);
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(12px);
    border-radius: 50px; 
    color: #ffcc33; 
    font-weight: 600; 
    text-transform: uppercase;
    letter-spacing: 1.5px; 
    font-size: 0.85rem; 
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.loc-item span::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 204, 51, 0.1), rgba(255, 217, 102, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
}
.loc-item span:hover {
    transform: translateY(-4px) scale(1.05);
    border-color: #ffcc33;
    background: rgba(255, 204, 51, 0.15);
    box-shadow: 0 8px 24px rgba(255, 204, 51, 0.4),
                0 0 20px rgba(255, 204, 51, 0.2);
    color: #ffd966;
}
.loc-item span:hover::before {
    opacity: 1;
}

/* MISSION STATEMENT */
.mission-statement { 
    padding: 180px 0; 
    background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)), url('../images/DKMS.webp') fixed center center;
    background-size: cover;
    position: relative;
}
.mission-statement::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 204, 51, 0.3), transparent);
}
.mission-flex { 
    display: flex; 
    justify-content: flex-end;
    position: relative;
    z-index: 2;
}
.mission-box { 
    background: rgba(10, 10, 10, 0.98); 
    padding: 70px; 
    max-width: 550px; 
    border-top: 6px solid #ffcc33;
    color: #fff;
    box-shadow: -20px 20px 60px rgba(0,0,0,0.5),
                0 0 0 0 rgba(255, 204, 51, 0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.mission-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #ffcc33, #ffd966, #ffcc33);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.mission-box:hover {
    transform: translateY(-8px);
    box-shadow: -25px 25px 80px rgba(0,0,0,0.6),
                0 0 40px rgba(255, 204, 51, 0.3);
}
.mission-box:hover::before {
    transform: scaleX(1);
}
.mission-box h3 { 
    font-size: 2.5rem; 
    margin-bottom: 25px; 
    line-height: 1.1;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.mission-box p { 
    color: #bbb; 
    line-height: 1.8; 
    margin-bottom: 40px; 
    font-size: 1.1rem;
    transition: color 0.3s ease;
}
.mission-box:hover p {
    color: #ddd;
}

/* GOLD CTA BUTTON */
.cta-blue-btn {
    display: inline-block;
    padding: 18px 35px;
    background: #ffcc33 !important;
    color: #000 !important;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #ffcc33;
    box-shadow: 0 4px 16px rgba(255, 204, 51, 0.4);
    position: relative;
    overflow: hidden;
}

.cta-blue-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.cta-blue-btn:hover::before {
    width: 300px;
    height: 300px;
}

.cta-blue-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-blue-btn:hover::after {
    opacity: 1;
}

.cta-blue-btn:hover {
    background: #fff !important;
    color: #000 !important;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 24px rgba(255, 204, 51, 0.6), 0 0 20px rgba(255, 204, 51, 0.4);
    border-color: #ffcc33;
}

.cta-blue-btn:active {
    transform: translateY(-2px) scale(1.01);
}

.mission-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.mission-showcase-btn {
    display: inline-block;
    padding: 18px 35px;
    background: rgba(255, 204, 51, 0.1);
    color: #ffcc33;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #ffcc33;
    box-shadow: 0 4px 16px rgba(255, 204, 51, 0.2);
    position: relative;
    overflow: hidden;
}

.mission-showcase-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 204, 51, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.mission-showcase-btn:hover::before {
    width: 300px;
    height: 300px;
}

.mission-showcase-btn:hover {
    background: rgba(255, 204, 51, 0.2);
    color: #ffcc33;
    border-color: #ffcc33;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 24px rgba(255, 204, 51, 0.5), 0 0 30px rgba(255, 204, 51, 0.3);
}

.mission-showcase-btn:active {
    transform: translateY(-2px) scale(1.01);
}

.mission-showcase-btn i {
    margin-right: 8px;
    transition: transform 0.3s ease;
}

.mission-showcase-btn:hover i {
    transform: scale(1.2);
}

/* MOBILE */
@media (max-width: 1024px) {
    .about-hero h1 { font-size: 3rem; }
    .profile-grid { grid-template-columns: 1fr; gap: 60px; }
    .mission-flex { justify-content: center; }
    .mission-box { padding: 40px; }
}

@media (max-width: 600px) {
    .hero-btns {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        text-align: center;
        font-size: 0.75rem;
        padding: 14px 24px;
        letter-spacing: 0.5px;
        white-space: nowrap;
    }
    
    .mission-btns {
        flex-direction: column;
    }
    
    .cta-blue-btn,
    .mission-showcase-btn {
        width: 100%;
        text-align: center;
        font-size: 0.75rem;
        padding: 14px 24px;
        letter-spacing: 0.5px;
        white-space: nowrap;
    }
}