/* ===== HERO VIDEO BACKGROUND ===== */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay for contrast */
.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0.35),
            rgba(255, 255, 255, 0.85));
}

/* ===== SEARCH EXPAND ===== */
.search-container {
    width: 56px;
    height: 56px;
    /* Explicit height */
    transition: width 0.35s ease;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border-radius: 9999px;
    /* rounded-full */
    border: 1px solid #d1d5db;
    /* border-gray-300 */
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    /* shadow-sm */
    display: flex;
    align-items: center;
}

.search-container.active {
    width: 300px;
}