/* Hero Section Styling */
.hero-section {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem; /* Increased padding */
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

/* Add a subtle pattern or gradient overlay if desired */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 0;
}

.hero-section > * {
    position: relative;
    z-index: 1;
}

.hero-logo-wrapper {
    width: 120px; /* Increased size */
    height: 120px; /* Increased size */
    border-radius: 50%;
    background: white;
    padding: 8px; /* Slightly more padding */
    box-shadow: var(--shadow-lg); /* Stronger shadow */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.hero-logo-wrapper:hover {
    transform: scale(1.05); /* Subtle zoom on hover */
}

.hero-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.hero-logo-placeholder {
    width: 120px; /* Increased size */
    height: 120px; /* Increased size */
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem; /* Larger icon */
    box-shadow: var(--shadow-lg);
}

/* Mobile Adjustments for Hero */
@media (max-width: 768px) {
    .hero-section {
        text-align: center !important;
        padding: 2rem 1.5rem;
    }
    
    .hero-logo-wrapper, .hero-logo-placeholder {
        margin: 0 auto 1.5rem; /* More spacing below logo */
        width: 100px; /* Still large on mobile */
        height: 100px;
        font-size: 3rem;
    }
    
    .display-5 {
        font-size: 1.75rem;
    }
    
    .lead {
        font-size: 1rem;
    }
}
