/* Hero Section - About Page */
.hero-about {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    padding: 8rem 0 6rem;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('../assets/images/about-hero.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    overflow: hidden;
}

.hero-about .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.hero-about .subtitle {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--mind-primary-light);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.hero-about .subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1rem;
    height: 2px;
    background: var(--mind-primary);
}

.hero-about h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-about .lead {
    font-size: 1.25rem;
    margin: 0 auto 2.5rem;
    opacity: 0.9;
    max-width: 700px;
    line-height: 1.7;
}

.hero-about .btn {
    margin: 0 0.5rem 1rem;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.7) 100%
    );
    z-index: 1;
}

/* Breadcrumb */
.breadcrumb {
    position: absolute;
    top: 2rem;
    left: 0;
    right: 0;
    z-index: 5;
    text-align: center;
}

.breadcrumb-list {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item:not(:last-child)::after {
    content: '/';
    margin: 0 0.5rem;
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: var(--mind-primary-light);
}

.breadcrumb-link.active {
    color: white;
    font-weight: 600;
}

/* Hero Animation */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.hero-about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M30,10L50,30L70,10L90,30L70,50L90,70L70,90L50,70L30,90L10,70L30,50L10,30L30,10Z" fill="white" fill-opacity="0.03"/></svg>');
    background-size: 120px;
    opacity: 0.5;
    z-index: 0;
    animation: float 15s ease-in-out infinite;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-about {
        min-height: 450px;
        padding: 7rem 0 5rem;
    }
    
    .hero-about h1 {
        font-size: 2.8rem;
    }
    
    .hero-about .lead {
        font-size: 1.15rem;
    }
    
    .breadcrumb {
        top: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-about {
        min-height: 400px;
        padding: 6rem 0 4rem;
    }
    
    .hero-about h1 {
        font-size: 2.4rem;
        margin-bottom: 1.25rem;
    }
    
    .hero-about .lead {
        font-size: 1.05rem;
        margin-bottom: 2rem;
    }
    
    .breadcrumb {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-about {
        min-height: 350px;
        padding: 5rem 0 3rem;
    }
    
    .hero-about h1 {
        font-size: 2rem;
    }
    
    .hero-about .lead {
        font-size: 1rem;
    }
    
    .hero-about .btn {
        display: block;
        width: 80%;
        margin: 0 auto 0.75rem;
    }
}
