/* About Us Page Specific Styles */

/* Inner Page Navbar Overrides */
.inner-page .navbar {
    /* background: rgba(255, 255, 255, 0.95); */
    background: rgba(0,0,0,0.95);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    padding: 0px 20px;
}

.inner-page .navbar .scrolled-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.inner-page .navbar-brand {
    color: var(--color-black);
}

.inner-page .navbar-brand img {
    max-height: 100px;
}

.inner-page .menu-trigger {
    color: var(--color-white);
}

.inner-page .menu-icon {
    /* border-color: rgba(0,0,0,0.2); */
    /* color: var(--color-black); */
}

/* Hero Section */
.about-hero {
    height: 30vh;
    /* min-height: 400px; */
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin-top: 80px; */
    background-color: var(--color-black);
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)), url('../images/about_us_bg.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 0 0 60px 60px;
    margin-bottom: 2rem;
}

.about-hero h1 {
    font-size: 5vw; /* Default for desktop */
    /* letter-spacing: -5px; */
    color: var(--color-white);
    font-weight: 700;
    /* text-transform: uppercase; */
    text-transform: none;
    font-family: var(--font-heading);
}

.highlight-band-section {
    background-color: var(--color-black);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 60px;
    margin: 0.2rem;
    padding: 2rem 2rem;
    position: relative;
    overflow: hidden;
}

.expert-intro {
    font-family: var(--font-body);
    font-size: 1.2rem;
    letter-spacing: 4px;
    /* text-transform: uppercase; */
    text-transform: none;
    opacity: 0.7;
}

.expert-marquee-container {
    display: flex;
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 1rem 0;
    mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
}

.expert-marquee {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 3rem;
    white-space: nowrap;
    animation: expert-scroll 40s linear infinite;
    padding-right: 3rem; /* Compensate for gap to ensure smooth loop */
}

.expert-word {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    /* text-transform: uppercase; */
    text-transform: none;
    transition: color 0.3s ease;
}

.expert-word:hover {
    color: var(--color-gold);
}

.expert-dot {
    font-size: 2rem;
    color: var(--color-gold);
    vertical-align: middle;
}

@keyframes expert-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
}

.expert-desc {
    font-family: var(--font-body);
    font-size: 1.2rem;
    /* max-width: 600px; */
    line-height: 1.6;
    font-weight: 300;
    opacity: 0.7;
    margin-top: 1rem;
}

/* Content Styles */
.about-img {
    height: 600px;
    object-fit: cover;
}

.about-intro-text {
    line-height: 1.8;
    font-weight: 300;
}

.about-details-text {
    line-height: 2;
}

/* Responsive */
@media (max-width: 768px) {
    .expert-word { font-size: 2.5rem; }
    .expert-marquee { gap: 1.5rem; padding-right: 1.5rem; }
    .expert-dot { font-size: 1rem; }
    
    .about-hero {
        /* border-radius: 0 0 30px 30px; */
    }

    .about-hero h1 {
        font-size: 10vw; 
    }
    
    .highlight-band-section {
        border-radius: 30px;
        margin: 1rem;
        padding: 3rem 1.5rem;
    }
}

/* -------------------------------------------------------------------------- */
/* Team Section - Gilded Arches                                               */
/* -------------------------------------------------------------------------- */

.team-arch {
    position: relative;
    width: 100%;
    min-height: 480px; /* Tall cards */
    border-radius: 150px 150px 0 0; /* The "Arch" Shape */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding-top: 4rem;
    transition: all 0.4s ease;
    overflow: hidden;
    /* Ensure border doesn't leak */
    -webkit-mask-image: -webkit-radial-gradient(white, black); 
    mask-image: radial-gradient(white, black);
}

.team-arch:hover {
    transform: translateY(-20px);
    z-index: 10;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* Staggered Offset for Desktop */
@media (min-width: 992px) {
    /* Target the 2nd and 4th columns */
    .team-staggered-row .col-lg-3:nth-child(even) .team-arch {
        margin-top: 8rem !important; /* Deep stagger */
    }
}

/* Color Variants */
.arch-gold {
    background-color: var(--color-gold);
}

.arch-charcoal {
    background-color: var(--color-black);
}

.arch-silver {
    background-color: #d1d1d1; /* Matte Silver */
}

.arch-gold-light {
    background-color: #f0e6cc; /* Champagne/Light Gold */
}

/* Content (Top) */
.arch-content {
    text-align: center;
    z-index: 2;
    padding: 0 1rem;
}

.team-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    /* text-transform: uppercase; */
    text-transform: none;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-black);
}

.arch-charcoal .team-name {
    color: var(--color-gold);
}

.team-role {
    font-family: var(--font-body);
    font-size: 0.9rem;
    /* text-transform: uppercase; */
    text-transform: none;
    letter-spacing: 2px;
    color: rgba(0,0,0,0.6);
    font-weight: 500;
}

/* Image Wrapper (Bottom) */
.arch-img-wrapper {
    width: 100%;
    height: 350px; /* Fixed height for image area */
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden; /* Clips the bottom of the image */
}

.arch-img {
    width: 90%;
    height: auto;
    object-fit: contain; /* Ensure full face is visible */
    transform-origin: bottom center;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    filter: grayscale(100%); /* Start B&W for luxury feel */
}

.team-arch:hover .arch-img {
    transform: scale(1.1); /* Slight pop out */
    filter: grayscale(0%); /* Reveal color on hover */
}

.un-bold{
    font-weight: normal;
    font-style: normal;
    font-family: var(--font-body) !important;
}

.arch-desc {
    font-size: 1.0rem;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 0.75rem;
    letter-spacing: 0.02em;
    line-height: 1.2;
    padding: 1rem;
    text-align: justify;
    height: 25vh;
}

.arch-desc-black{
    color: white;
}


@media (max-width: 768px) {
    .expert-marquee-container .expert-marquee:nth-child(2) {
        animation-delay: 0.9s; /* half of 40s */
    }
}