/* ============================================
   About Page Styles - Zencia.AI
   ============================================ */

/* ===== ABOUT HERO SECTION ===== */
.about-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #2a2a2a 100%);
    overflow: hidden;
    padding: 120px 0 0 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    margin-bottom: 0;
}

/* Background Image Layer */
.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/static/images/zenciahero-background.svg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0.4;
    z-index: 1;
    pointer-events: none;
}

/* Gradient Overlay */
.about-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 217, 213, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 139, 139, 0.06) 0%, transparent 50%),
        rgba(0, 0, 0, 0.3);
    z-index: 2;
    pointer-events: none;
}

.about-hero .container {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    box-sizing: border-box;
}

/* ===== HERO CONTENT LAYOUT ===== */
.hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
    text-align: center;
}

/* ===== HERO TEXT CONTENT ===== */
.hero-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    width: 100%;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(0, 217, 213, 0.1);
    border: 1px solid rgba(0, 217, 213, 0.3);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #00D9D5;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
    transition: all 0.3s ease;
}

.hero-badge:hover {
    background: rgba(0, 217, 213, 0.15);
    border-color: rgba(0, 217, 213, 0.5);
}

.hero-title {
    font-size: clamp(2.5rem, 4.5vw, 4rem);
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.1;
    letter-spacing: -2px;
    margin: 0;
}

.hero-title .highlight {
    background: linear-gradient(135deg, #00D9D5 0%, #40E0D0 50%, #00CED1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-description {
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin: 0 auto;
    max-width: 800px;
    text-align: center;
}

/* ===== HERO STATS ===== */
.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 1rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-number {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 800;
    color: #00D9D5;
    line-height: 1;
    display: block;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* ===== HERO ACTIONS ===== */
.hero-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    border: none;
}

.hero-btn-primary {
    background: linear-gradient(135deg, #00D9D5 0%, #40E0D0 100%);
    color: #FFFFFF;
    box-shadow: 0 10px 30px rgba(0, 217, 213, 0.3);
}

.hero-btn-primary:hover {
    background: linear-gradient(135deg, #40E0D0 0%, #00D9D5 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 217, 213, 0.5);
}

.hero-btn-secondary {
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    color: #FFFFFF;
    transform: translateY(-2px);
}

.btn-icon {
    width: 18px;
    height: 18px;
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 4;
}

.scroll-text {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ===== ANIMATIONS ===== */
.hero-text {
    animation: fadeInUp 1s ease-out;
}

.hero-actions {
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.scroll-indicator {
    animation: fadeInUp 1s ease-out 1s backwards, bounce 2s infinite 1s;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .hero-content {
        gap: 3rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
}

@media (max-width: 1024px) {
    .about-hero {
        padding: 100px 0;
    }
    
    .about-hero .container {
        padding: 0 1.5rem;
    }
    
    .hero-content {
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 80px 0;
        min-height: auto;
    }
    
    .about-hero .container {
        padding: 0 1rem;
    }
    
    .hero-content {
        gap: 3rem;
    }
    
    .hero-text {
        gap: 1.5rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .about-hero .container {
        padding: 0 0.5rem;
    }
    
    .hero-content {
        gap: 2rem;
    }
    
    .hero-text {
        gap: 1.25rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .hero-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .scroll-indicator {
        bottom: 1rem;
    }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    .hero-text,
    .hero-actions,
    .scroll-indicator {
        animation: none !important;
    }
    
    .hero-btn:hover {
        transform: none;
    }
}

/* Focus states */
.hero-btn:focus-visible {
    outline: 2px solid #00D9D5;
    outline-offset: 4px;
}

.scroll-indicator:focus-visible {
    outline: 2px solid #00D9D5;
    outline-offset: 4px;
    border-radius: 4px;
}

/* ===== HIGH CONTRAST SUPPORT ===== */
@media (prefers-contrast: high) {
    .hero-badge {
        border-width: 2px;
        border-color: #00D9D5;
    }
    
    .hero-image-container {
        border-width: 2px;
        border-color: #00D9D5;
    }
    
    .hero-btn {
        border-width: 2px;
    }
    
    .hero-btn-primary {
        border: 2px solid #00D9D5;
    }
    
    .hero-btn-secondary {
        border-width: 2px;
        border-color: #FFFFFF;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .about-hero {
        background: white !important;
        color: #333 !important;
        padding: 2rem 0;
        min-height: auto;
    }
    
    .about-hero::before,
    .about-hero::after {
        display: none !important;
    }
    
    .hero-title,
    .stat-number {
        color: #333 !important;
    }
    
    .hero-description,
    .stat-label {
        color: #666 !important;
    }
    
    .hero-badge {
        color: #00D9D5 !important;
        border-color: #00D9D5 !important;
    }
    
    .hero-btn {
        background: #00D9D5 !important;
        color: white !important;
        box-shadow: none !important;
    }
    
    .floating-elements,
    .scroll-indicator {
        display: none !important;
    }
}