/* ===========================
   IFS-STYLE DIRECTOR LAYOUT
   High-End Premium Design
   =========================== */

/* ===========================
   COLOR PALETTE
   =========================== */
:root {
    --eventure-purple: #7B57FF;
    --eventure-purple-light: #9D7FFF;
    --eventure-pink: #E94BFF;
    --eventure-dark: #1a1a2e;
    --eventure-navy: #0a1128;
    --eventure-light-purple: #f8f7ff;
    --eventure-white: #ffffff;
    --eventure-text-gray: #666666;
    --eventure-text-dark: #2d3436;
}

/* ===========================
   HERO SECTION
   =========================== */
.about-hero {
    background:
        linear-gradient(135deg,
            rgba(123, 87, 255, 0.92),
            rgba(80, 60, 180, 0.88)),
        url('assets/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding: 8rem 0 6rem;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right,
            rgba(233, 75, 255, 0.15),
            transparent 50%);
    pointer-events: none;
}

.about-hero .container {
    position: relative;
    z-index: 1;
}

.about-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--eventure-white);
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
    animation: fadeInUp 0.8s ease;
}

.about-hero .hero-description {
    font-size: 1.375rem;
    color: var(--eventure-white);
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    animation: fadeInUp 1s ease 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===========================
   ABOUT CONTENT SECTIONS
   =========================== */
.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--eventure-text-gray);
    margin-bottom: 1.5rem;
}

/* ===========================
   LEADERSHIP SECTION
   Premium IFS-Style Layout
   =========================== */
#leadership {
    background: linear-gradient(180deg, #ffffff 0%, #f8f7ff 100%);
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

/* Decorative Gradient Elements (IFS-inspired) */
#leadership::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(123, 87, 255, 0.03),
            rgba(233, 75, 255, 0.05),
            transparent);
    clip-path: polygon(70% 0, 100% 0, 100% 100%, 40% 100%);
    pointer-events: none;
    z-index: 0;
}

#leadership::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 350px;
    height: 100%;
    background: linear-gradient(-135deg,
            rgba(123, 87, 255, 0.04),
            rgba(157, 127, 255, 0.03),
            transparent);
    clip-path: polygon(0 0, 30% 0, 60% 100%, 0 100%);
    pointer-events: none;
    z-index: 0;
}

/* Section Title */
#leadership .section-title {
    font-size: 2.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--eventure-dark);
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 1;
}

#leadership .section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--eventure-purple), var(--eventure-pink));
    margin: 1.5rem auto 0;
    border-radius: 2px;
}

/* ===========================
   DIRECTOR PROFILES CONTAINER
   =========================== */
.directors-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.director-profile {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    margin-bottom: 6rem;
    position: relative;
}

.director-profile:last-child {
    margin-bottom: 0;
}

/* Alternating Layout */
.director-left {
    flex-direction: row;
}

.director-right {
    flex-direction: row-reverse;
}

/* ===========================
   IMAGE WRAPPER & CONTAINER
   =========================== */
.director-image-wrapper {
    flex: 0 0 320px;
    min-width: 320px;
}

.director-image-container {
    position: relative;
    width: 220px;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.15),
        0 5px 15px rgba(123, 87, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.director-image-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            transparent 60%,
            rgba(123, 87, 255, 0.15));
    pointer-events: none;
    z-index: 1;
}

.director-image-container:hover {
    transform: translateY(-8px);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.2),
        0 10px 25px rgba(123, 87, 255, 0.2);
}

.director-portrait {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.4s ease;
}

.director-image-container:hover .director-portrait {
    transform: scale(1.05);
    filter: brightness(1.05);
}

/* ===========================
   DIRECTOR DETAILS
   =========================== */
.director-details {
    margin-top: 1.5rem;
    text-align: center;
}

.director-name {
    font-size: 1.375rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--eventure-dark);
    margin-bottom: 0.5rem;
}

.director-title {
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--eventure-purple);
    margin-bottom: 1.5rem;
}

/* ===========================
   SOCIAL ICONS
   =========================== */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg,
            rgba(123, 87, 255, 0.1),
            rgba(233, 75, 255, 0.05));
    border: 1.5px solid rgba(123, 87, 255, 0.3);
    color: var(--eventure-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.social-icons a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--eventure-purple), var(--eventure-pink));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-icons a:hover::before {
    opacity: 1;
}

.social-icons a i {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 20px rgba(123, 87, 255, 0.3);
    border-color: transparent;
}

.social-icons a:hover i {
    color: var(--eventure-white);
}

/* ===========================
   DIRECTOR MESSAGE
   =========================== */
.director-message {
    flex: 1;
    min-width: 0;
    padding: 2rem 0;
}

.director-message p {
    font-size: 1.0625rem;
    line-height: 1.9;
    color: var(--eventure-text-dark);
    margin-bottom: 1.5rem;
    text-align: justify;
    position: relative;
}

.director-message p:last-child {
    margin-bottom: 0;
}

.director-message p:first-child::first-letter {
    font-size: 3.5rem;
    font-weight: 700;
    float: left;
    line-height: 1;
    margin: 0.1rem 0.75rem 0 0;
    background: linear-gradient(135deg, var(--eventure-purple), var(--eventure-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===========================
   CTA SECTION
   =========================== */
#cta {
    background: linear-gradient(135deg, var(--eventure-purple), #503cb4);
    color: var(--eventure-white);
}

#cta .section-title,
#cta .section-description {
    color: var(--eventure-white);
}

#cta .btn-primary {
    background: var(--eventure-white);
    color: var(--eventure-purple);
    border-color: var(--eventure-white);
}

#cta .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

#cta .btn-outline {
    background: transparent;
    color: var(--eventure-white);
    border: 2px solid var(--eventure-white);
}

#cta .btn-outline:hover {
    background: var(--eventure-white);
    color: var(--eventure-purple);
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */
@media (max-width: 992px) {
    .director-profile {
        gap: 3rem;
    }

    .director-image-wrapper {
        flex: 0 0 280px;
        min-width: 280px;
    }

    .director-image-container {
        width: 200px;
        height: 280px;
    }

    .director-message p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 6rem 0 4rem;
        min-height: 50vh;
        background-attachment: scroll;
    }

    .about-hero .hero-title {
        font-size: 2.25rem;
    }

    .about-hero .hero-description {
        font-size: 1.125rem;
    }

    #leadership {
        padding: 4rem 0;
    }

    #leadership .section-title {
        font-size: 2.25rem;
        margin-bottom: 3rem;
    }

    .director-profile {
        flex-direction: column !important;
        align-items: center;
        gap: 2rem;
        margin-bottom: 4rem;
    }

    .director-image-wrapper {
        flex: 0 0 auto;
        min-width: auto;
        width: 100%;
        max-width: 280px;
    }

    .director-image-container {
        width: 100%;
        max-width: 240px;
        height: 320px;
        margin: 0 auto;
    }

    .director-message {
        padding: 0;
        text-align: left;
    }

    .director-message p {
        text-align: left;
    }

    #leadership::before,
    #leadership::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .about-hero .hero-title {
        font-size: 1.875rem;
    }

    .about-hero .hero-description {
        font-size: 1rem;
    }

    #leadership .section-title {
        font-size: 1.875rem;
    }

    .director-image-container {
        height: 300px;
    }

    .director-message p {
        font-size: 0.9375rem;
        line-height: 1.8;
    }

    .director-name {
        font-size: 1.25rem;
    }

    .social-icons a {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
}