/* hero-assistant.css - Independent styles for hero with assistants component */

/* Hero Section with Assistants */
.hero-with-assistants {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.hero-with-assistants::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
                      linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 4rem 4rem;
    opacity: 0.3;
}

.hero-assistants-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.hero-assistants-content {
    text-align: center;
    color: white;
    flex: 1;
    max-width: 500px;
    margin: 0 2rem;
}

.hero-assistants-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-assistants-content p {
    font-size: 1.25rem;
    opacity: 0.9;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-assistant {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.assistant-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.assistant-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.assistant-card:hover .assistant-img {
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.assistant-info {
    text-align: center;
}

.assistant-name {
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    opacity: 0.9;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.assistant-card:hover .assistant-name {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Floating animation for assistants */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.assistant-img {
    animation: float 6s ease-in-out infinite;
}

.hero-assistant.right .assistant-img {
    animation-delay: 1s;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-assistants-container {
        padding: 0 2rem;
    }
    
    .assistant-img {
        width: 70px;
        height: 70px;
    }
    
    .hero-assistants-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-assistants-content p {
        font-size: 1.125rem;
    }
}

@media (max-width: 768px) {
    .hero-with-assistants {
        padding: 3rem 0;
    }
    
    .hero-assistants-container {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-assistants-content {
        margin: 0;
        order: -1;
    }
    
    .hero-assistants-content h1 {
        font-size: 2.25rem;
    }
    
    .assistant-card {
        flex-direction: row;
        gap: 1.5rem;
    }
    
    .assistant-img {
        width: 60px;
        height: 60px;
    }
    
    .assistant-name {
        font-size: 0.8rem;
    }
    
    /* Stop floating animation on mobile */
    .assistant-img {
        animation: none;
    }
}

@media (max-width: 480px) {
    .hero-with-assistants {
        padding: 2.5rem 0;
    }
    
    .hero-assistants-container {
        padding: 0 1rem;
        gap: 1.5rem;
    }
    
    .hero-assistants-content h1 {
        font-size: 2rem;
    }
    
    .hero-assistants-content p {
        font-size: 1rem;
    }
    
    .assistant-card {
        flex-direction: column;
        gap: 1rem;
    }
    
    .assistant-img {
        width: 50px;
        height: 50px;
    }
    
    .assistant-name {
        font-size: 0.75rem;
    }
}
