/* about.css - Styling for About Us page */

/* Hero Section — Override global .hero visibility:hidden */
#about-hero .hero-tagline,
#about-hero .hero-content h1,
#about-hero .hero-content p {
    visibility: visible;
}

.about-hero {
    min-height: 80vh;
    background-color: #111111;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    padding-top: 100px;
}

.about-hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-hero-content .eyebrow {
    color: #D5AF36;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: inline-block;
}

.about-hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.about-hero-content p {
    color: #D9D9D9;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-hero-image img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    aspect-ratio: 4/5;
}

/* Brand Story Section */
.story-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.story-block {
    padding: 2rem;
    border-left: 2px solid #D5AF36;
    background-color: #FFFFFF;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-radius: 0 8px 8px 0;
}

.story-block h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: #111;
}

.story-block p {
    color: #555;
    line-height: 1.6;
}

/* Team Profile Section */
.team-section {
    background-color: #1A1A1A;
    color: #FFF;
}

.team-section .section-header h2 {
    color: #FFF;
}

/* Team List Layout */
.team-list {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 3rem;
}

.team-card {
    display: flex;
    align-items: center;
    gap: 4rem;
    background: #111111;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 1px solid rgba(213, 175, 54, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    border-color: rgba(213, 175, 54, 0.3);
}

.team-card.variant-right {
    flex-direction: row-reverse;
}

.team-card__image {
    flex: 1;
    width: 100%;
    max-width: 50%;
}

.team-card__image img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    display: block;
}

.team-card__text {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-card.variant-left .team-card__text {
    text-align: left;
}

.team-card.variant-right .team-card__text {
    text-align: right;
}

.team-card__text h3 {
    font-size: 2rem;
    color: #FFF;
    margin-bottom: 0.5rem;
}

.team-card__text h4 {
    font-size: 1.1rem;
    color: #D5AF36;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.team-card__text p {
    font-size: 1.05rem;
    color: #D9D9D9;
    line-height: 1.8;
    margin-bottom: 0;
}

.team-social {
    margin-top: 1.5rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
    color: #FFF;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
}

.social-link .bi {
    font-size: 1.15em;
    transform: translateY(-0.5px);
}

.social-link:hover {
    background: #D5AF36;
    color: #111;
    border-color: #D5AF36;
    transform: translateY(-3px);
}

/* Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.value-card {
    background: #FFF;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.value-accent {
    width: 40px;
    height: 3px;
    background: #D5AF36;
    margin-bottom: 1.5rem;
}

.value-card h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: #111;
}

.value-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Workflow Section */
.workflow-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 3rem;
}

.step-card {
    text-align: center;
    position: relative;
    z-index: 2;
    background: transparent;
    padding: 1rem;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #111111;
    color: #D5AF36;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 auto 1rem;
}

.step-card h4 {
    font-size: 1.1rem;
    color: #FFF;
}

.step-line {
    flex-grow: 1;
    height: 2px;
    background: #E0E0E0;
    margin: 0 -20px;
    z-index: 1;
    transform: translateY(-20px);
}



/* Responsive Styles */
@media (max-width: 1024px) {
    .about-hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .story-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr 1fr;
    }

    .team-card {
        gap: 2rem;
    }

    .team-card__text {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .workflow-steps {
        flex-direction: column;
        gap: 2rem;
    }
    
    .step-line {
        width: 2px;
        height: 50px;
        margin: -10px 0;
        transform: none;
    }
    
    .about-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .about-hero {
        padding-top: 120px;
    }

    /* Mobile Alternating Cards Override */
    .team-list {
        gap: 2.5rem;
    }
    
    .team-card, 
    .team-card.variant-right {
        flex-direction: column;
        gap: 0;
    }

    .team-card__image {
        max-width: 100%;
        width: 100%;
    }

    .team-card__image img {
        aspect-ratio: 4/5; /* Better portrait for mobile */
    }

    .team-card__text,
    .team-card.variant-left .team-card__text,
    .team-card.variant-right .team-card__text {
        text-align: center;
        padding: 2rem 1.5rem;
    }
}
