/**
 * Hero Logo Component Styles
 */

.hero-logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.logo-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-wrapper {
    transition: transform 0.3s ease;
}

.logo-wrapper:hover {
    transform: translateY(-6px);
}

.dynamic-logo .logo-image {
    height: clamp(160px, 22vw, 240px);
    width: auto;
    filter: drop-shadow(0 18px 40px rgba(8, 15, 26, 0.35));
    transition: transform 0.3s ease;
}

.fallback-logo .logo-shape {
    width: clamp(180px, 26vw, 240px);
    aspect-ratio: 1 / 1;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(17, 24, 39, 0.82));
    border: 1px solid rgba(148, 163, 184, 0.25);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 22px 50px rgba(8, 15, 26, 0.35);
}

.logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(3.5rem, 10vw, 5.5rem);
    color: #f1f5f9;
    letter-spacing: -0.02em;
}

.logo-shine,
.logo-glow,
.logo-particles {
    display: none;
}
